|
5207 | 5207 |
|
5208 | 5208 | for pgac_option in `$LLVM_CONFIG --ldflags`; do |
5209 | 5209 | case $pgac_option in |
5210 | | - -L*)LDFLAGS="$LDFLAGS $pgac_option";; |
| 5210 | + -L*)LLVM_LIBS="$LLVM_LIBS $pgac_option";; |
5211 | 5211 | esac |
5212 | 5212 | done |
5213 | 5213 |
|
@@ -9332,12 +9332,12 @@ fi |
9332 | 9332 | # Note the user could also set XML2_CFLAGS/XML2_LIBS directly |
9333 | 9333 | for pgac_option in $XML2_CFLAGS; do |
9334 | 9334 | case $pgac_option in |
9335 | | - -I*|-D*)CPPFLAGS="$CPPFLAGS $pgac_option";; |
| 9335 | + -I*|-D*)INCLUDES="$INCLUDES $pgac_option";; |
9336 | 9336 | esac |
9337 | 9337 | done |
9338 | 9338 | for pgac_option in $XML2_LIBS; do |
9339 | 9339 | case $pgac_option in |
9340 | | - -L*)LDFLAGS="$LDFLAGS $pgac_option";; |
| 9340 | + -L*)LIBDIRS="$LIBDIRS $pgac_option";; |
9341 | 9341 | esac |
9342 | 9342 | done |
9343 | 9343 | fi |
@@ -9562,12 +9562,12 @@ fi |
9562 | 9562 | # note that -llz4 will be added by AC_CHECK_LIB below. |
9563 | 9563 | for pgac_option in $LZ4_CFLAGS; do |
9564 | 9564 | case $pgac_option in |
9565 | | - -I*|-D*)CPPFLAGS="$CPPFLAGS $pgac_option";; |
| 9565 | + -I*|-D*)INCLUDES="$INCLUDES $pgac_option";; |
9566 | 9566 | esac |
9567 | 9567 | done |
9568 | 9568 | for pgac_option in $LZ4_LIBS; do |
9569 | 9569 | case $pgac_option in |
9570 | | - -L*)LDFLAGS="$LDFLAGS $pgac_option";; |
| 9570 | + -L*)LIBDIRS="$LIBDIRS $pgac_option";; |
9571 | 9571 | esac |
9572 | 9572 | done |
9573 | 9573 | fi |
@@ -9703,12 +9703,12 @@ fi |
9703 | 9703 | # note that -lzstd will be added by AC_CHECK_LIB below. |
9704 | 9704 | for pgac_option in $ZSTD_CFLAGS; do |
9705 | 9705 | case $pgac_option in |
9706 | | - -I*|-D*)CPPFLAGS="$CPPFLAGS $pgac_option";; |
| 9706 | + -I*|-D*)INCLUDES="$INCLUDES $pgac_option";; |
9707 | 9707 | esac |
9708 | 9708 | done |
9709 | 9709 | for pgac_option in $ZSTD_LIBS; do |
9710 | 9710 | case $pgac_option in |
9711 | | - -L*)LDFLAGS="$LDFLAGS $pgac_option";; |
| 9711 | + -L*)LIBDIRS="$LIBDIRS $pgac_option";; |
9712 | 9712 | esac |
9713 | 9713 | done |
9714 | 9714 | fi |
@@ -16721,7 +16721,7 @@ fi |
16721 | 16721 |
|
16722 | 16722 | if test "$with_icu" = yes; then |
16723 | 16723 | ac_save_CPPFLAGS=$CPPFLAGS |
16724 | | - CPPFLAGS="$ICU_CFLAGS $CPPFLAGS" |
| 16724 | + CPPFLAGS="$CPPFLAGS $ICU_CFLAGS" |
16725 | 16725 |
|
16726 | 16726 | # Verify we have ICU's header files |
16727 | 16727 | ac_fn_c_check_header_mongrel "$LINENO" "unicode/ucol.h" "ac_cv_header_unicode_ucol_h" "$ac_includes_default" |
@@ -18876,7 +18876,7 @@ Use --without-tcl to disable building PL/Tcl." "$LINENO" 5 |
18876 | 18876 | fi |
18877 | 18877 | # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h> |
18878 | 18878 | ac_save_CPPFLAGS=$CPPFLAGS |
18879 | | - CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS" |
| 18879 | + CPPFLAGS="$CPPFLAGS $TCL_INCLUDE_SPEC" |
18880 | 18880 | ac_fn_c_check_header_mongrel "$LINENO" "tcl.h" "ac_cv_header_tcl_h" "$ac_includes_default" |
18881 | 18881 | if test "x$ac_cv_header_tcl_h" = xyes; then : |
18882 | 18882 |
|
@@ -18945,7 +18945,7 @@ fi |
18945 | 18945 | # check for <Python.h> |
18946 | 18946 | if test "$with_python" = yes; then |
18947 | 18947 | ac_save_CPPFLAGS=$CPPFLAGS |
18948 | | - CPPFLAGS="$python_includespec $CPPFLAGS" |
| 18948 | + CPPFLAGS="$CPPFLAGS $python_includespec" |
18949 | 18949 | ac_fn_c_check_header_mongrel "$LINENO" "Python.h" "ac_cv_header_Python_h" "$ac_includes_default" |
18950 | 18950 | if test "x$ac_cv_header_Python_h" = xyes; then : |
18951 | 18951 |
|
|