|
|
| version 1.8, 2007/08/07 16:56:20 | version 1.13, 2008/04/07 15:11:07 |
|---|---|
| Line 35 if test ! -f "$project_directory/gc/lib/ | Line 35 if test ! -f "$project_directory/gc/lib/ |
| echo "Building libgc..." | echo "Building libgc..." |
| make | make |
| make install | make install |
| # rm -rf $libgc | cd .. |
| rm -rf $libgc | |
| fi | fi |
| cd $parser3_directory | cd $parser3_directory |
| if test ! -f "Makefile"; then | if test ! -f "Makefile"; then |
| options="" | |
| options="$options --with-static-gc=$project_directory/gc/lib" | |
| # options="$options --disable-safe-mode" | |
| # options="$options --with-dynamic-stdcpp" | |
| # options="$options --disable-stringstream" | |
| options="$options --silent" | |
| echo "Configuring parser3..." | echo "Configuring parser3..." |
| ./configure --prefix=$install_directory \ | ./configure --prefix=$install_directory "--with-sendmail=$sendmail_command" $options |
| "--with-sendmail=$sendmail_command" \ | |
| --with-static-gc=$project_directory/gc/lib \ | |
| # --disable-safe-mode \ | |
| # --with-dynamic-stdcpp \ | |
| --silent | |
| fi | fi |
| echo "Building parser3..." | echo "Building parser3..." |
| make install | make install |
| # remove debug info | |
| # strip ${install_directory}/bin/parser3 | |
| echo "DONE" | echo "DONE" |
| echo | echo |