mirror of
https://github.com/AdaCore/xmlada.git
synced 2026-02-12 12:30:28 -08:00
For the same reason as the external variables, shared.gpr can be a source of conflict between different projects. For instance with AWS. This change has no impact on the installation since shared.gpr is not provided in the installation. Part of T715-030. Change-Id: Ie0ac01a23c34981b75055fbe8a45db9cc50a581f
35 lines
519 B
Plaintext
35 lines
519 B
Plaintext
AC_INIT(XML/Ada,18.0w,report@adacore.com,xmlada)
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
# Also update in AC_INIT above
|
|
XMLADA_VERSION=AC_PACKAGE_VERSION()
|
|
|
|
AM_GNAT_BUILDS_SHARED
|
|
CHECK_BUILD_TYPE
|
|
AM_SO_SUFFIX
|
|
|
|
# Defaults
|
|
AC_PROG_INSTALL
|
|
AC_PROG_LN_S
|
|
MKDIR="mkdir -p"
|
|
|
|
# Overrides
|
|
case "${host_os}" in
|
|
lynxos*)
|
|
CP="cp -p"
|
|
MKDIR="mkdir -p -f"
|
|
;;
|
|
|
|
cygwin*|mingw32*)
|
|
LN="cp -p -f"
|
|
;;
|
|
esac
|
|
|
|
AC_SUBST(MKDIR)
|
|
AC_SUBST(CC)
|
|
|
|
LIB=`basename $libdir`
|
|
AC_SUBST(LIB)
|
|
|
|
AC_OUTPUT(xmlada_shared.gpr Makefile tests/dom/default.gpr)
|