diff options
| author | Wilfredo Sanchez <wsanchez@php.net> | 2001-04-03 23:30:49 +0000 |
|---|---|---|
| committer | Wilfredo Sanchez <wsanchez@php.net> | 2001-04-03 23:30:49 +0000 |
| commit | cb71c4c2d0553cc2a93c5ddba873e150b6be6fa5 (patch) | |
| tree | 00f22a4527c10c2e42f24fef6c86599e28ca16ec /ext/msql | |
| parent | a71b0e1bfb95435c56cb2c090f5c19707cf309ac (diff) | |
| download | php-git-cb71c4c2d0553cc2a93c5ddba873e150b6be6fa5.tar.gz | |
Separate CPPFLAGS from CFLAGS.
Diffstat (limited to 'ext/msql')
| -rw-r--r-- | ext/msql/config.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/msql/config.m4 b/ext/msql/config.m4 index a2b046d404..3241b89399 100644 --- a/ext/msql/config.m4 +++ b/ext/msql/config.m4 @@ -5,8 +5,8 @@ dnl Test mSQL version by checking if msql.h has "IDX_TYPE" defined. dnl AC_DEFUN(PHP_MSQL_VERSION,[ AC_MSG_CHECKING([mSQL version]) - ac_php_oldcflags=$CFLAGS - CFLAGS="$INCLUDES $CFLAGS" + ac_php_oldcppflags=$CPPFLAGS + CPPFLAGS="$INCLUDES $CPPFLAGS" AC_TRY_COMPILE([#include <sys/types.h> #include "msql.h"],[int i = IDX_TYPE],[ AC_DEFINE(MSQL1,0,[ ]) @@ -15,7 +15,7 @@ AC_DEFUN(PHP_MSQL_VERSION,[ AC_DEFINE(MSQL1,1,[ ]) MSQL_VERSION="1.0" ]) - CFLAGS=$ac_php_oldcflags + CPPFLAGS=$ac_php_oldcppflags AC_MSG_RESULT($MSQL_VERSION) ]) |
