Files
xmlada/configure.in
Fabien Chouteau 512a7fc92d Rename shared.gpr into xmlada_shared.gpr
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
2020-08-07 19:30:24 +02:00

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)