Changeset 24773
- Timestamp:
- 2010-12-22T02:50:46+01:00 (7 years ago)
- Location:
- packages/lang/php4
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
packages/lang/php4/Makefile
r19714 r24773 9 9 10 10 PKG_NAME:=php4 11 PKG_VERSION:=4.4. 712 PKG_RELEASE:= 311 PKG_VERSION:=4.4.9 12 PKG_RELEASE:=1 13 13 14 14 PKG_SOURCE:=php-$(PKG_VERSION).tar.bz2 15 PKG_SOURCE_URL:=http:// fr.php.net/distributions/16 PKG_MD5SUM:= 3f21b44d37a57ca3876d3aea713c700d15 PKG_SOURCE_URL:=http://www.php.net/distributions/ 16 PKG_MD5SUM:=2e3b2a0e27f10cb84fd00e5ecd7a1880 17 17 PKG_BUILD_DIR:=$(BUILD_DIR)/php-$(PKG_VERSION) 18 18 -
packages/lang/php4/patches/002-configure.patch
r15247 r24773 1 --- a/configure .orig 2008-09-24 16:00:23.000000000 +09002 +++ a/configure 2008-09-24 16:00:45.000000000 +09003 @@ -12503,7 +12503,7 @@ 1 --- a/configure 2 +++ b/configure 3 @@ -12503,7 +12503,7 @@ fi 4 4 ac_libs=$LIBS 5 5 LIBS="$LIBS -ldl" … … 10 10 cat > conftest.$ac_ext <<EOF 11 11 #line 12510 "configure" 12 @@ -14373,7 +14373,7 @@ 12 @@ -14373,7 +14373,7 @@ rm -f conftest* 13 13 14 14 … … 19 19 cat > conftest.$ac_ext <<EOF 20 20 #line 14380 "configure" 21 @@ -15622,7 +15622,7 @@ 21 @@ -15622,7 +15622,7 @@ EOF 22 22 if { (eval echo configure:15623: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 23 23 rm -rf conftest* … … 28 28 cat > conftest.$ac_ext <<EOF 29 29 #line 15629 "configure" 30 @@ -16119,7 +16119,7 @@ 30 @@ -16119,7 +16119,7 @@ else 31 31 rm -fr conftest* 32 32 … … 37 37 cat > conftest.$ac_ext <<EOF 38 38 #line 16126 "configure" 39 @@ -438 84,7 +43884,7 @@39 @@ -43891,7 +43891,7 @@ EOF 40 40 echo $ac_n "checking if iconv supports errno""... $ac_c" 1>&6 41 echo "configure:438 86: checking if iconv supports errno" >&541 echo "configure:43893: checking if iconv supports errno" >&5 42 42 if test "$cross_compiling" = yes; then 43 43 - { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } … … 45 45 else 46 46 cat > conftest.$ac_ext <<EOF 47 #line 4389 1"configure"48 @@ -4634 2,7 +46342,7 @@47 #line 43898 "configure" 48 @@ -46349,7 +46349,7 @@ rm -f conftest* 49 49 old_LIBS=$LIBS 50 50 LIBS="$TST_LIBS $LIBS" … … 54 54 else 55 55 cat > conftest.$ac_ext <<EOF 56 #line 463 49"configure"57 @@ -4640 1,7 +46401,7 @@56 #line 46356 "configure" 57 @@ -46408,7 +46408,7 @@ echo "configure:46407: checking whether 58 58 old_LIBS=$LIBS 59 59 LIBS="$TST_LIBS $LIBS" … … 63 63 else 64 64 cat > conftest.$ac_ext <<EOF 65 #line 464 08"configure"66 @@ -9362 1,7 +93621,7 @@65 #line 46415 "configure" 66 @@ -93628,7 +93628,7 @@ echo "configure:93628: checking for Sabl 67 67 old_CPPFLAGS=$CPPFLAGS 68 68 CPPFLAGS="$CPPFLAGS -I$XSLT_DIR/include" … … 72 72 else 73 73 cat > conftest.$ac_ext <<EOF 74 #line 936 28"configure"75 @@ -10281 2,7 +102812,7 @@74 #line 93635 "configure" 75 @@ -102819,7 +102819,7 @@ variables_saved_for_relink="$variables_s 76 76 link_all_deplibs=$link_all_deplibs 77 77 -
packages/lang/php4/patches/003-dns_skipname.patch
r15247 r24773 1 --- php-4.3.9.orig/ext/standard/dns.c 2003-09-01 16:37:46.000000000 -0600 2 +++ php-4.3.9/ext/standard/dns.c 2004-11-30 23:53:55.000000000 -0700 3 @@ -207,7 +207,7 @@ 1 --- a/ext/standard/basic_functions.c 2 +++ b/ext/standard/basic_functions.c 3 @@ -436,7 +436,7 @@ function_entry basic_functions[] = { 4 PHP_FE(gethostbyname, NULL) 5 PHP_FE(gethostbynamel, NULL) 6 7 -#if HAVE_RES_SEARCH && !(defined(__BEOS__) || defined(PHP_WIN32) || defined(NETWARE)) 8 +#if HAVE_RES_SEARCH && HAVE_DN_SKIPNAME && !(defined(__BEOS__)||defined(PHP_WIN32) || defined(NETWARE)) 9 PHP_FE(checkdnsrr, NULL) 10 PHP_FE(getmxrr,second_and_third_args_force_ref) 11 #endif 12 --- a/ext/standard/dns.c 13 +++ b/ext/standard/dns.c 14 @@ -207,7 +207,7 @@ static char *php_gethostbyname(char *nam 4 15 } 5 16 /* }}} */ … … 10 21 /* {{{ proto int checkdnsrr(string host [, string type]) 11 22 Check DNS records corresponding to a given Internet host name or IP address */ 12 13 --- php-4.3.9.orig/ext/standard/basic_functions.c 2004-07-30 10:52:35.000000000 -060014 +++ php-4.3.9/ext/standard/basic_functions.c 2004-11-30 23:56:42.000000000 -070015 @@ -447,7 +447,7 @@16 PHP_FE(gethostbyname, NULL)17 PHP_FE(gethostbynamel, NULL)18 19 -#if HAVE_RES_SEARCH && !(defined(__BEOS__) || defined(PHP_WIN32) || defined(NETWARE))20 +#if HAVE_RES_SEARCH && HAVE_DN_SKIPNAME && !(defined(__BEOS__)||defined(PHP_WIN32) || defined(NETWARE))21 PHP_FE(checkdnsrr, NULL)22 PHP_FE(getmxrr,second_and_third_args_force_ref)23 #endif -
packages/lang/php4/patches/004-uts_domainname.patch
r6526 r24773 1 diff -urN php-4.3.11/ext/posix/posix.c php-4.3.11.new/ext/posix/posix.c 2 --- php-4.3.11/ext/posix/posix.c 2005-01-28 02:39:42.000000000 +0100 3 +++ php-4.3.11.new/ext/posix/posix.c 2007-02-28 17:11:34.000000000 +0100 4 @@ -533,7 +533,7 @@ 1 --- a/ext/posix/posix.c 2 +++ b/ext/posix/posix.c 3 @@ -541,7 +541,7 @@ PHP_FUNCTION(posix_uname) 5 4 add_assoc_string(return_value, "version", u.version, 1); 6 5 add_assoc_string(return_value, "machine", u.machine, 1); -
packages/lang/php4/patches/100-compile_fix.patch
r12265 r24773 1 1 --- a/Zend/zend_strtod.c 2 2 +++ b/Zend/zend_strtod.c 3 @@ -117,6 +117,7 @@ 3 @@ -117,6 +117,7 @@ typedef unsigned long int uint32_t; 4 4 # endif 5 5 #endif … … 9 9 #define IEEE_BIG_ENDIAN 10 10 #else 11 @@ -141,6 +142,7 @@ 11 @@ -141,6 +142,7 @@ typedef unsigned long int uint32_t; 12 12 #define uint32_t unsigned __int32 13 13 #define IEEE_LITTLE_ENDIAN
Note: See TracChangeset
for help on using the changeset viewer.