From: Sascha Schumann Date: Fri, 30 Mar 2001 14:02:20 +0000 (+0000) Subject: Replace the incomprehensible newline escaping with @NEWLINE@ X-Git-Tag: php-4.0.6RC1~530 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d5af8cb464f690190805d2058bb0472dcc3e843;p=php Replace the incomprehensible newline escaping with @NEWLINE@ Fixes the build on Darwin 1.2 --- diff --git a/build/genif.sh b/build/genif.sh index 96cf2b162b..947ec2ffaa 100644 --- a/build/genif.sh +++ b/build/genif.sh @@ -1,6 +1,6 @@ #! /bin/sh -# $Id: genif.sh,v 1.1 2000-12-20 17:21:37 sas Exp $ +# $Id: genif.sh,v 1.2 2001-03-30 14:02:20 sas Exp $ # replacement for genif.pl infile="$1" @@ -23,7 +23,7 @@ olddir=`pwd` cd $srcdir for ext in ${1+"$@"} ; do - module_ptrs=" phpext_${ext}_ptr,\\\n$module_ptrs" + module_ptrs=" phpext_${ext}_ptr,@NEWLINE@$module_ptrs" header_list="$header_list ext/$ext/*.h" done @@ -35,7 +35,7 @@ cat $infile | \ sed \ -e "s'@EXT_INCLUDE_CODE@'$includes'" \ -e "s'@EXT_MODULE_PTRS@'$module_ptrs'" \ - -e 's/[\]n/\ + -e 's/@NEWLINE@/\ /g' diff --git a/build/print_include.awk b/build/print_include.awk index 508ed4c6ad..a4919fae87 100644 --- a/build/print_include.awk +++ b/build/print_include.awk @@ -1,6 +1,6 @@ /phpext_/ { if (old_filename != FILENAME) { - printf "#include \"" FILENAME "\"\\\\n" + printf "#include \"" FILENAME "\"@NEWLINE@" old_filename = FILENAME } }