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/bcmath/libbcmath | |
parent | a71b0e1bfb95435c56cb2c090f5c19707cf309ac (diff) | |
download | php-git-cb71c4c2d0553cc2a93c5ddba873e150b6be6fa5.tar.gz |
Separate CPPFLAGS from CFLAGS.
Diffstat (limited to 'ext/bcmath/libbcmath')
-rw-r--r-- | ext/bcmath/libbcmath/src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/bcmath/libbcmath/src/Makefile.am b/ext/bcmath/libbcmath/src/Makefile.am index a0928a2264..fab37d785e 100644 --- a/ext/bcmath/libbcmath/src/Makefile.am +++ b/ext/bcmath/libbcmath/src/Makefile.am @@ -11,7 +11,8 @@ libbcmath_a_SOURCES= add.c compare.c debug.c div.c divmod.c doaddsub.c \ INCLUDES = -I$(srcdir) -I.. -CFLAGS = @CFLAGS@ $(INCLUDES) -Wall +CFLAGS = @CFLAGS@ +CPPFLAGS = $(INCLUDES) -Wall MAINTAINERCLEANFILES= Makefile.in $(libbcmath_a_SOURCES) private.h bcmath.h |