|
5194 | 5194 |
|
5195 | 5195 | for pgac_option in `$LLVM_CONFIG --ldflags`; do |
5196 | 5196 | case $pgac_option in |
5197 | | - -L*)LDFLAGS="$LDFLAGS $pgac_option";; |
| 5197 | + -L*)LLVM_LIBS="$LLVM_LIBS $pgac_option";; |
5198 | 5198 | esac |
5199 | 5199 | done |
5200 | 5200 |
|
@@ -9436,12 +9436,12 @@ fi |
9436 | 9436 | # Note the user could also set XML2_CFLAGS/XML2_LIBS directly |
9437 | 9437 | for pgac_option in $XML2_CFLAGS; do |
9438 | 9438 | case $pgac_option in |
9439 | | - -I*|-D*)CPPFLAGS="$CPPFLAGS $pgac_option";; |
| 9439 | + -I*|-D*)INCLUDES="$INCLUDES $pgac_option";; |
9440 | 9440 | esac |
9441 | 9441 | done |
9442 | 9442 | for pgac_option in $XML2_LIBS; do |
9443 | 9443 | case $pgac_option in |
9444 | | - -L*)LDFLAGS="$LDFLAGS $pgac_option";; |
| 9444 | + -L*)LIBDIRS="$LIBDIRS $pgac_option";; |
9445 | 9445 | esac |
9446 | 9446 | done |
9447 | 9447 | fi |
@@ -9666,12 +9666,12 @@ fi |
9666 | 9666 | # note that -llz4 will be added by AC_CHECK_LIB below. |
9667 | 9667 | for pgac_option in $LZ4_CFLAGS; do |
9668 | 9668 | case $pgac_option in |
9669 | | - -I*|-D*)CPPFLAGS="$CPPFLAGS $pgac_option";; |
| 9669 | + -I*|-D*)INCLUDES="$INCLUDES $pgac_option";; |
9670 | 9670 | esac |
9671 | 9671 | done |
9672 | 9672 | for pgac_option in $LZ4_LIBS; do |
9673 | 9673 | case $pgac_option in |
9674 | | - -L*)LDFLAGS="$LDFLAGS $pgac_option";; |
| 9674 | + -L*)LIBDIRS="$LIBDIRS $pgac_option";; |
9675 | 9675 | esac |
9676 | 9676 | done |
9677 | 9677 | fi |
@@ -9807,12 +9807,12 @@ fi |
9807 | 9807 | # note that -lzstd will be added by AC_CHECK_LIB below. |
9808 | 9808 | for pgac_option in $ZSTD_CFLAGS; do |
9809 | 9809 | case $pgac_option in |
9810 | | - -I*|-D*)CPPFLAGS="$CPPFLAGS $pgac_option";; |
| 9810 | + -I*|-D*)INCLUDES="$INCLUDES $pgac_option";; |
9811 | 9811 | esac |
9812 | 9812 | done |
9813 | 9813 | for pgac_option in $ZSTD_LIBS; do |
9814 | 9814 | case $pgac_option in |
9815 | | - -L*)LDFLAGS="$LDFLAGS $pgac_option";; |
| 9815 | + -L*)LIBDIRS="$LIBDIRS $pgac_option";; |
9816 | 9816 | esac |
9817 | 9817 | done |
9818 | 9818 | fi |
@@ -12723,8 +12723,8 @@ if test "$with_libcurl" = yes ; then |
12723 | 12723 | pgac_save_LDFLAGS=$LDFLAGS |
12724 | 12724 | pgac_save_LIBS=$LIBS |
12725 | 12725 |
|
12726 | | - CPPFLAGS="$LIBCURL_CPPFLAGS $CPPFLAGS" |
12727 | | - LDFLAGS="$LIBCURL_LDFLAGS $LDFLAGS" |
| 12726 | + CPPFLAGS="$CPPFLAGS $LIBCURL_CPPFLAGS" |
| 12727 | + LDFLAGS="$LDFLAGS $LIBCURL_LDFLAGS" |
12728 | 12728 |
|
12729 | 12729 | ac_fn_c_check_header_mongrel "$LINENO" "curl/curl.h" "ac_cv_header_curl_curl_h" "$ac_includes_default" |
12730 | 12730 | if test "x$ac_cv_header_curl_curl_h" = xyes; then : |
@@ -16658,7 +16658,7 @@ fi |
16658 | 16658 |
|
16659 | 16659 | if test "$with_icu" = yes; then |
16660 | 16660 | ac_save_CPPFLAGS=$CPPFLAGS |
16661 | | - CPPFLAGS="$ICU_CFLAGS $CPPFLAGS" |
| 16661 | + CPPFLAGS="$CPPFLAGS $ICU_CFLAGS" |
16662 | 16662 |
|
16663 | 16663 | # Verify we have ICU's header files |
16664 | 16664 | 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 |
|
|