Nouvelle option de configuration: --enable-system64 permet de definir

la variable SYSTEM64 du preprocesseur C. Utilise pour la compilation
sur des architectures 64 bits.

Activation  :  ./configure --enable-system64

Exploitation: #ifdef SYSTEM64
                 /* Code specifique 64 bits */
              #else
                 /* Code 32 bits */
              #endif
This commit is contained in:
Pierre Nguyen Tuong 2002-09-18 18:07:18 +00:00
parent 5a710cdf78
commit c5204ea360
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,9 @@ AC_DEFUN(AM_ALLIANCE,[
[ --with-alliance-top=ALLIANCE_TOP Prefix where alliance is installed (optional)],
alliance_top="$withval", alliance_top="")
AC_ARG_ENABLE(system64,
--enable-system64 enable compilation on 64 bits systems (default is 32 bits),
AC_DEFINE(SYSTEM64))
AC_MSG_CHECKING(for alliance)
if test x$alliance_top != x ; then
@ -56,4 +59,5 @@ AC_SUBST(INSTALL_PROGRAM)
AC_DEFINE_UNQUOTED(ALLIANCE_VERSION, "5.0")
AC_DEFINE_UNQUOTED(ALLIANCE_TOP, "$ALLIANCE_TOP")
])