summaryrefslogtreecommitdiff
path: root/scan_makefile_in.awk
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2003-08-27 17:57:32 +0000
committerfoobar <sniper@php.net>2003-08-27 17:57:32 +0000
commitb21f1582dd33b99ec6c44244a61b71ddb51cc91b (patch)
tree547766f8559ebe44088eff5d9b1a5bec29e4ce2f /scan_makefile_in.awk
parentf8f72bd52e02268b9c87015633c204c79909313f (diff)
downloadphp-git-b21f1582dd33b99ec6c44244a61b71ddb51cc91b.tar.gz
- Backported several improvements/cleanups for the build/configure stuff.
. PEAR dependancies checked during configure . OpenSSL config moved from configure.in to ext/openssl/config0.m4 (and also improved the PHP_OPENSSL_SETUP macro a bit) + Some other minor issues
Diffstat (limited to 'scan_makefile_in.awk')
-rw-r--r--scan_makefile_in.awk32
1 files changed, 0 insertions, 32 deletions
diff --git a/scan_makefile_in.awk b/scan_makefile_in.awk
deleted file mode 100644
index 0c6d20398f..0000000000
--- a/scan_makefile_in.awk
+++ /dev/null
@@ -1,32 +0,0 @@
-BEGIN {
- mode=0
- sources=""
-}
-
-mode == 0 && /^LTLIBRARY_SOURCES.*\\$/ {
- if (match($0, "[^=]*$")) {
- sources=substr($0, RSTART, RLENGTH-1)
- }
- mode=1
- next
-}
-
-mode == 0 && /^LTLIBRARY_SOURCES.*/ {
- if (match($0, "[^=]*$")) {
- sources=substr($0, RSTART, RLENGTH)
- }
-}
-
-mode == 1 && /.*\\$/ {
- sources=sources substr($0, 0, length - 1)
- next
-}
-
-mode == 1 {
- sources=sources $0
- mode=0
-}
-
-END {
- print sources
-}