Ignore:
Timestamp:
2011-12-14T19:20:29+13:00 (12 years ago)
Author:
ak19
Message:

GSDLARCH used in Linux makefiles when working out the cgi-bin path (now cgi-bin\GSDL_OS_ARCH) to install the binaries into.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/common-src/configure.in

    r24874 r24901  
    226226  if test -z "$COMPAT32BITFLAGS" ; then
    227227    COMPAT32BITFLAGS="-m32"
     228    gsdlarch='64'
    228229  fi
    229230else
     
    231232  if test -z "$COMPAT32BITFLAGS" ; then
    232233    COMPAT32BITFLAGS=
     234    gsdlarch='32'
    233235  fi
    234236fi
     
    426428 fi
    427429AC_SUBST(gsdlos)
     430
     431# Make gsdlarch empty if the OS bit value (32 or 64) is not used in naming
     432# directories already or if common-src is compiled up on its own.
     433# E.g. 32/64 bit won't be used in the SVN version if only bin/linux exists.
     434if test -d "../bin/$gsdlos" -o ! -f "../setup.bash" ; then
     435   gsdlarch=""
     436fi
     437AC_SUBST(gsdlarch)
    428438
    429439# check for endianness
Note: See TracChangeset for help on using the changeset viewer.