1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-23 00:16:03 +02:00

27236: use $CPPFLAGS with $CPP in configure.ac

This commit is contained in:
Peter Stephenson 2009-09-07 08:53:46 +00:00
parent c88fd11377
commit 0974744f43
2 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2009-09-07 Peter Stephenson <pws@csr.com>
* 27236 (somewhat late): configure.ac: use $CPPFLAGS
after all occurrences of $CPP and see what happens.
2009-09-06 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Holger Weiss <holger@CIS.FU-Berlin.DE>: 27248:
@ -12129,5 +12134,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.4770 $
* $Revision: 1.4771 $
*****************************************************

View File

@ -1345,7 +1345,7 @@ dnl but then you can get a rather long list of files to test.
dnl The backslash substitution is to persuade cygwin to cough up
dnl slashes rather than doubled backslashes in the path.
echo "#include <signal.h>" > nametmp.c
sigfile_list="`$CPP nametmp.c |
sigfile_list="`$CPP $CPPFLAGS nametmp.c |
sed -n -e 's/^#line[ ].*\"\(.*\)\"/\1/p' \
-e 's/^#[ ].*\"\(.*\)\"/\1/p' |
sed 's/\\\\\\\\/\//g' |
@ -1393,7 +1393,7 @@ dnl but then you can get a rather long list of files to test.
dnl The backslash substitution is to persuade cygwin to cough up
dnl slashes rather than doubled backslashes in the path.
echo "#include <errno.h>" > nametmp.c
errfile_list="`$CPP nametmp.c |
errfile_list="`$CPP $CPPFLAGS nametmp.c |
sed -n -e 's/^#line[ ].*\"\(.*\)\"/\1/p' \
-e 's/^#[ 0-9].*\"\(.*\)\"/\1/p' |
sed 's/\\\\\\\\/\//g' |
@ -1462,7 +1462,7 @@ else
echo "#include <$zsh_cv_path_curses_header>" >nametmp.c
fi
curses_list="`$CPP nametmp.c |
curses_list="`$CPP $CPPFLAGS nametmp.c |
sed -n -e 's/^#line[ ].*\"\(.*\)\"/\1/p' \
-e 's/^#[ 0-9].*\"\(.*\)\"/\1/p' |
sed 's/\\\\\\\\/\//g' |
@ -1584,7 +1584,7 @@ AC_CACHE_CHECK(where the RLIMIT macros are located,zsh_cv_path_rlimit_h,
[dnl Look at the output from the preprocessor.
dnl Copied from the search for the signal names above.
echo "#include <sys/resource.h>" >restmp.c
resourcefile_list="`$CPP restmp.c |
resourcefile_list="`$CPP $CPPFLAGS restmp.c |
sed -n -e 's/^#line[ ].*\"\(.*\)\"/\1/p' \
-e 's/^#[ ].*\"\(.*\)\"/\1/p' |
sed 's/\\\\\\\\/\//g' |