Changeset 23376 for gs2-extensions


Ignore:
Timestamp:
2010-12-02T13:26:33+13:00 (13 years ago)
Author:
sjm84
Message:

Added openssl to the packages for SVN, this is mainly due to difficulty compiling on x86-64 linux where several of the libraries needed to be compiled with -fPIC including libcrypto (part of openssl)

Location:
gs2-extensions/subversion/trunk/src/packages
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/subversion/trunk/src/packages/CASCADE-MAKE.sh

    r23043 r23376  
    22
    33
    4 for d in APR APRUTIL SERF NEON SQLITE ZLIB SUBVERSION ; do
     4for d in APR SQLITE APRUTIL OPENSSL SERF NEON ZLIB SUBVERSION ; do
    55  echo "    Running CASCADE-MAKE/$d.sh $*"
    66
  • gs2-extensions/subversion/trunk/src/packages/CASCADE-MAKE/NEON.sh

    r23094 r23376  
    1010prefix=$GEXTSVN_INSTALLED
    1111
     12export CFLAGS="-fPIC $CFLAGS"
     13export CPPFLAGS="-fPIC $CPPFLAGS"
     14export CXXFLAGS="-fPIC $CXXFLAGS"
     15
    1216opt_run_untar $force_untar $auto_untar $package $version
    13 opt_run_configure $force_config $auto_config $package $version $prefix
     17opt_run_configure $force_config $auto_config $package $version $prefix --disable-static --enable-shared
    1418
    1519opt_run_make $compile   $package $version
  • gs2-extensions/subversion/trunk/src/packages/CASCADE-MAKE/SERF.sh

    r23094 r23376  
    99
    1010prefix=$GEXTSVN_INSTALLED
     11
     12export CFLAGS="-fPIC -I$prefix/include $CFLAGS"
     13export CXXFLAGS="-fPIC -I$prefix/include $CXXFLAGS"
     14export CPPFLAGS="-fPIC -I$prefix/include $CPPFLAGS"
     15export LDFLAGS="-L$prefix/lib $LDFLAGS"
    1116
    1217opt_run_untar $force_untar $auto_untar $package $version
  • gs2-extensions/subversion/trunk/src/packages/CASCADE-MAKE/SUBVERSION.sh

    r23094 r23376  
    99
    1010prefix=$GEXTSVN_INSTALLED
     11
     12export CFLAGS="-I$prefix/include $CFLAGS"
     13export CXXFLAGS="-I$prefix/include $CXXFLAGS"
     14export CPPFLAGS="-I$prefix/include $CPPFLAGS"
     15export LDFLAGS="-L$prefix/lib $LDFLAGS"
    1116
    1217opt_run_untar $force_untar $auto_untar $package $version
Note: See TracChangeset for help on using the changeset viewer.