|
|
| version 1.21, 2017/05/22 16:48:31 | version 1.23, 2017/05/25 12:26:46 |
|---|---|
| Line 18 options="$options --with-gc=$project_dir | Line 18 options="$options --with-gc=$project_dir |
| options="$options --with-pcre=$project_dir/pcre" | options="$options --with-pcre=$project_dir/pcre" |
| #options="$options --disable-stringstream" | #options="$options --disable-stringstream" |
| echo "Building statically linked parser3\c" | echo -n "Building statically linked parser3" |
| for PARAM in "$@"; do | for PARAM in "$@"; do |
| case "$PARAM" in | case "$PARAM" in |
| "--without-xml") | "--without-xml") |
| echo ", without xml\c" | echo -n ", without xml" |
| build_xml="" | build_xml="" |
| ;; | ;; |
| "--with-apache") | "--with-apache") |
| echo ", with apache module\c" | echo -n ", with apache module" |
| options="$options --with-apache" | options="$options --with-apache" |
| build_apache="yes" | build_apache="yes" |
| ;; | ;; |
| "--with-mailreceive") | "--with-mailreceive") |
| echo ", with mail receiving\c" | echo -n ", with mail receiving" |
| options="$options --with-mailreceive=$project_dir/gnome" | options="$options --with-mailreceive=$project_dir/gnome" |
| build_gmime="yes" | build_gmime="yes" |
| ;; | ;; |
| "--strip") | "--strip") |
| echo ", without debug information\c" | echo -n ", without debug information" |
| build_stripped="yes" | build_stripped="yes" |
| ;; | ;; |
| "--help") | "--help") |
| Line 121 if test ! -f "$project_dir/gc/lib/libgc. | Line 121 if test ! -f "$project_dir/gc/lib/libgc. |
| mv ../libatomic_ops-7.4.4 libatomic_ops | mv ../libatomic_ops-7.4.4 libatomic_ops |
| echo "Configuring $lib..." | echo "Configuring $lib..." |
| CPPFLAGS="-DUSE_LIBC_PRIVATES -DUSE_MMAP -DDONT_ADD_BYTE_AT_END" \ | CPPFLAGS="-DUSE_MMAP -DDONT_ADD_BYTE_AT_END" \ |
| ./configure --prefix=$project_dir/gc \ | ./configure --prefix=$project_dir/gc \ |
| --disable-threads \ | --disable-threads \ |
| --disable-shared \ | --disable-shared \ |