Ignore:
Timestamp:
2012-02-28T14:18:52+13:00 (12 years ago)
Author:
kjdon
Message:

getting greenstone to work properly on 64 bit machines. COMPAT32BITFLAGS is no more. Don't need -m32 option. Instead, have ARCH_DEP_FLAGS, which gets -fPIC on 64 bit machines. Note that I have used version 2.63 of autoconf. SOme configure files had previously been generated with v 2.65. Have also got rid of lib64 for compiling expat and iconv - only need one version now, not 32 bit version for greenstone and 64 bit version for apache

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/build-src/packages/configure

    r24815 r25149  
    182182gzip -dc wget.tar.gz | tar -xf -
    183183cd "$PACKAGES/wget/wget-1.13.4" && \
    184 ./configure $CACHE_FILE --prefix=$PACKAGES/wget --with-ssl=openssl --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS
    185 
     184#./configure $CACHE_FILE --prefix=$PACKAGES/wget --with-ssl=openssl --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS
     185./configure $CACHE_FILE --prefix=$PACKAGES/wget --without-ssl --bindir="$bindir" -disable-nls $HOSTTARGETFLAGS
    186186
    187187# configure XML::Parser perl module
     
    197197
    198198#Use 64-bit expat library on 64-bit machines, otherwise use 32-bit
    199 if test ! -z "$COMPAT32BITFLAGS" ; then
     199if test ! -z "$ARCH_DEP_FLAGS" ; then
    200200perl Makefile.PL \
    201201  PREFIX="$GSDLHOME/perllib/cpan/XML" \
Note: See TracChangeset for help on using the changeset viewer.