pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/php71



Module Name:    pkgsrc
Committed By:   maya
Date:           Tue Dec 20 07:24:04 UTC 2016

Modified Files:
        pkgsrc/lang/php71: distinfo
        pkgsrc/lang/php71/patches: patch-ext_standard_php__dns.h

Log Message:
call _php_dns_free_res the same way the original code does in the glibc
case.

should fix/help ubuntu builds.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 pkgsrc/lang/php71/distinfo
cvs rdiff -u -r1.1 -r1.2 \
    pkgsrc/lang/php71/patches/patch-ext_standard_php__dns.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/php71/distinfo
diff -u pkgsrc/lang/php71/distinfo:1.10 pkgsrc/lang/php71/distinfo:1.11
--- pkgsrc/lang/php71/distinfo:1.10     Sat Dec 10 07:10:53 2016
+++ pkgsrc/lang/php71/distinfo  Tue Dec 20 07:24:04 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.10 2016/12/10 07:10:53 taca Exp $
+$NetBSD: distinfo,v 1.11 2016/12/20 07:24:04 maya Exp $
 
 SHA1 (php-7.1.0.tar.bz2) = 06e08b5cbbd84497b281f4902a853a978ece0b48
 RMD160 (php-7.1.0.tar.bz2) = ba2ece4ade6b74238e60e5ca57e7cba83f7f3e29
@@ -16,7 +16,7 @@ SHA1 (patch-ext_phar_phar_phar.php) = f6
 SHA1 (patch-ext_recode_recode.c) = a97a1815d6a41410f68c289debbb9396128a2159
 SHA1 (patch-ext_sqlite3_libsqlite_sqlite3.c) = 8a529a1b3f7c97731f2e719d006f67c3a7259bb5
 SHA1 (patch-ext_standard_basic__functions.c) = f97a2748c7b15fbd9a2d3c21e56079088cc05d56
-SHA1 (patch-ext_standard_php__dns.h) = 3687ceac4dff4605263b53acb761b071f7446ccb
+SHA1 (patch-ext_standard_php__dns.h) = 8f89b4bb3553d922b1395c1c66bf5feccf0c4000
 SHA1 (patch-makedist) = 2ac0e0391c031c4fcf4993e2269cde4c6bfddfd5
 SHA1 (patch-php.ini-development) = dd65962000ec06439fae3c9bf252fa46be4e33fd
 SHA1 (patch-php.ini-production) = ae61dffedf574b688fe576b0b2af748b7a28cd89

Index: pkgsrc/lang/php71/patches/patch-ext_standard_php__dns.h
diff -u pkgsrc/lang/php71/patches/patch-ext_standard_php__dns.h:1.1 pkgsrc/lang/php71/patches/patch-ext_standard_php__dns.h:1.2
--- pkgsrc/lang/php71/patches/patch-ext_standard_php__dns.h:1.1 Thu Aug  4 14:09:03 2016
+++ pkgsrc/lang/php71/patches/patch-ext_standard_php__dns.h     Tue Dec 20 07:24:04 2016
@@ -1,4 +1,4 @@
-$NetBSD: patch-ext_standard_php__dns.h,v 1.1 2016/08/04 14:09:03 jdolecek Exp $
+$NetBSD: patch-ext_standard_php__dns.h,v 1.2 2016/12/20 07:24:04 maya Exp $
 
 Fix memory leak.
 
@@ -12,7 +12,7 @@ Fix memory leak.
  #define php_dns_free_handle(res) \
 -                      res_nclose(res); \
 +                        res_nclose(res); \
-+                        php_dns_free_res(*res)
++                        php_dns_free_res(res)
 +#else
 +#define php_dns_free_handle(res) \
 +                      res_ndestroy(res); \



Home | Main Index | Thread Index | Old Index