mirror of
https://github.com/AdaCore/xmlada.git
synced 2026-02-12 12:30:28 -08:00
The email address we use for AdaCore's support services has changed, so this commit updates all references to the old email address and replaces them with the current email address.
35 lines
520 B
Plaintext
35 lines
520 B
Plaintext
AC_INIT(XML/Ada,18.0w,support@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)
|