Changeset 43 for trunk/prepare.devel
- Timestamp:
- 2006-05-28T06:39:57+02:00 (7 years ago)
- Location:
- trunk
- Files:
-
- 1 edited
- 1 moved
-
. (modified) (1 prop)
-
prepare.devel (moved) (moved from trunk/make.devel) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 34 34 tags 35 35 36 make.inc36 prepare.devel.inc 37 37 opcode_spec_def.h
-
- Property svn:ignore
-
trunk/prepare.devel
r24 r43 2 2 SELF="$0" 3 3 4 if test -e make.inc ; then5 . make.inc4 if test -e prepare.devel.inc ; then 5 . prepare.devel.inc 6 6 else 7 echo make.inc is required, see make.inc.example >&27 echo prepare.devel.inc is required, see prepare.devel.inc.example >&2 8 8 exit 9 9 fi … … 32 32 33 33 make_clean_const_string() { 34 echo "*" rm -f const_string_opcodes_php*.h 34 echo "*" rm -f const_string_opcodes_php*.h{,.tmp} 35 35 rm -f const_string_opcodes_php*.h 36 36 } 37 37 38 38 make_const_string_opcodes_php4.x.h() { 39 precheck const_string_opcodes_php4.x.h "${PHP4_x_DIR}/Zend/zend_compile.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O "39 precheck const_string_opcodes_php4.x.h "${PHP4_x_DIR}/Zend/zend_compile.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O.tmp" && mv "$O.tmp" "$O" 40 40 } 41 41 42 42 make_const_string_opcodes_php5.0.h() { 43 precheck const_string_opcodes_php5.0.h "${PHP5_0_DIR}/Zend/zend_vm_def.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O "43 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" 44 44 } 45 45 46 46 make_const_string_opcodes_php5.1.h() { 47 precheck const_string_opcodes_php5.1.h "${PHP5_1_DIR}/Zend/zend_vm_def.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O "47 precheck const_string_opcodes_php5.1.h "${PHP5_1_DIR}/Zend/zend_vm_def.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O.tmp" && mv "$O.tmp" "$O" 48 48 } 49 49 50 50 make_const_string_opcodes_php6.x.h() { 51 precheck const_string_opcodes_php6.x.h "${PHP6_x_DIR}/Zend/zend_vm_def.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O "51 precheck const_string_opcodes_php6.x.h "${PHP6_x_DIR}/Zend/zend_vm_def.h" && "$AWK" -f ./mkopcode.awk < "$I" > "$O.tmp" && mv "$O.tmp" "$O" 52 52 } 53 53
Note: See TracChangeset
for help on using the changeset viewer.

