bc with old bsd for devel
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@52 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
parent
8c8c7aa0f0
commit
1622685da7
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/awk -f
|
||||
#! /usr/bin/awk -f
|
||||
# vim:ts=4:sw=4
|
||||
# process zend_vm_def.h or zend_compile.h
|
||||
BEGIN {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/awk -f
|
||||
#! /usr/bin/awk -f
|
||||
# vim:ts=4:sw=4
|
||||
# process eaccelerator/opcodes.c
|
||||
BEGIN {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/awk -f
|
||||
#! /usr/bin/awk -f
|
||||
# vim:ts=4:sw=4
|
||||
BEGIN {
|
||||
brace = 0;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/php -dopen_basedir=
|
||||
#! /usr/bin/php -dopen_basedir=
|
||||
<?php
|
||||
|
||||
$srcdir = dirname(__FILE__);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/php
|
||||
#! /usr/bin/php
|
||||
<?php
|
||||
|
||||
$srcdir = dirname(__FILE__);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#! /bin/bash
|
||||
SELF="$0"
|
||||
|
||||
if test -e prepare.devel.inc ; then
|
||||
|
@ -40,7 +40,7 @@ make_const_string_opcodes_php4.x.h() {
|
|||
}
|
||||
|
||||
make_const_string_opcodes_php5.0.h() {
|
||||
precheck const_string_opcodes_php5.0.h "${PHP5_0_DIR}/Zend/zend_vm_def.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O.tmp" && mv "$O.tmp" "$O"
|
||||
precheck const_string_opcodes_php5.0.h "${PHP5_0_DIR}/Zend/zend_compile.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O.tmp" && mv "$O.tmp" "$O"
|
||||
}
|
||||
|
||||
make_const_string_opcodes_php5.1.h() {
|
||||
|
@ -75,11 +75,11 @@ error() {
|
|||
}
|
||||
|
||||
precheck() {
|
||||
if ! test -e "$2" ; then
|
||||
if test -e "$2" ; then :; else
|
||||
error X skipping "$1" because "$2" not found
|
||||
return 1
|
||||
fi
|
||||
if ! test "$1" -ot "$2" ; then
|
||||
if test "$1" -ot "$2" ; then :; else
|
||||
echo O "$1" is up to date.
|
||||
return 1
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue