|
|
| version 1.15, 2009/04/10 12:54:31 | version 1.22, 2009/12/04 04:20:45 |
|---|---|
| Line 17 mkdir src >/dev/null 2>&1 | Line 17 mkdir src >/dev/null 2>&1 |
| if test ! -f "$project_directory/gc/lib/libgc.a"; then | if test ! -f "$project_directory/gc/lib/libgc.a"; then |
| cd $project_directory/src | cd $project_directory/src |
| libgc="gc6.8" | # libgc="gc6.8" # FreeBSD 4.X is not supported in newer gc version |
| libgc="gc-7.1" | |
| if test ! -f "$libgc.tar.gz"; then | if test ! -f "$libgc.tar.gz"; then |
| echo "Downloading libgc [1 lib of 2]..." | echo "Downloading libgc [1 lib of 2]..." |
| wget -c http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/$libgc.tar.gz | wget -c http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/$libgc.tar.gz |
| Line 27 if test ! -f "$project_directory/gc/lib/ | Line 28 if test ! -f "$project_directory/gc/lib/ |
| gunzip -c $libgc.tar.gz | tar vxf - >/dev/null | gunzip -c $libgc.tar.gz | tar vxf - >/dev/null |
| cd $libgc | cd $libgc |
| echo "Configuring libgc..." | echo "Configuring libgc..." |
| CPPFLAGS="-DUSE_LIBC_PRIVATES -DUSE_MMAP -DUSE_MUNMAP" \ | CPPFLAGS="-DUSE_LIBC_PRIVATES -DUSE_MMAP -DDONT_ADD_BYTE_AT_END" \ |
| ./configure --prefix=$project_directory/gc \ | ./configure --prefix=$project_directory/gc \ |
| --disable-threads \ | --disable-threads \ |
| --disable-shared \ | --disable-shared \ |
| Line 42 fi | Line 43 fi |
| if test ! -f "$project_directory/pcre/lib/libpcre.a"; then | if test ! -f "$project_directory/pcre/lib/libpcre.a"; then |
| cd $project_directory/src | cd $project_directory/src |
| libpcre="pcre-7.8" | libpcre="pcre-7.9" |
| if test ! -f "$libpcre.tar.gz"; then | if test ! -f "$libpcre.tar.gz"; then |
| echo "Downloading pcre [2 lib of 2]..." | echo "Downloading pcre [2 lib of 2]..." |
| wget -c ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$libpcre.tar.gz | wget -c --passive-ftp ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$libpcre.tar.gz |
| fi | fi |
| echo "Unpacking pcre..." | echo "Unpacking pcre..." |
| rm -rf $libpcre | rm -rf $libpcre |
| Line 77 if test ! -f "Makefile"; then | Line 78 if test ! -f "Makefile"; then |
| options="" | options="" |
| options="$options --with-static-gc=$project_directory/gc/lib" | options="$options --with-static-gc=$project_directory/gc/lib" |
| options="$options --with-static-pcre=$project_directory/pcre" | options="$options --with-static-pcre=$project_directory/pcre" |
| # options="$options --with-curl=/usr/include/curl" | |
| # options="$options --disable-safe-mode" | # options="$options --disable-safe-mode" |
| # options="$options --with-dynamic-stdcpp" | # options="$options --with-dynamic-stdcpp" |
| # options="$options --disable-stringstream" | # options="$options --disable-stringstream" |