pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/php73



Module Name:    pkgsrc
Committed By:   taca
Date:           Thu Nov 28 14:54:50 UTC 2019

Modified Files:
        pkgsrc/lang/php73: Makefile.common

Log Message:
lang/php73: avoid to use ifunc

Avoid to use ifunc on NetBSD.  Fix build problem on NetBSD current, 9.99.x.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/php73/Makefile.common

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

Modified files:

Index: pkgsrc/lang/php73/Makefile.common
diff -u pkgsrc/lang/php73/Makefile.common:1.1 pkgsrc/lang/php73/Makefile.common:1.2
--- pkgsrc/lang/php73/Makefile.common:1.1       Sat Dec 15 17:12:44 2018
+++ pkgsrc/lang/php73/Makefile.common   Thu Nov 28 14:54:50 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.1 2018/12/15 17:12:44 taca Exp $
+# $NetBSD: Makefile.common,v 1.2 2019/11/28 14:54:50 taca Exp $
 # used by lang/php73/Makefile.php
 # used by lang/php/ext.mk
 # used by meta-pkgs/php73-extensions/Makefile
@@ -13,6 +13,11 @@ MAINTAINER?=         pkgsrc-users%NetBSD.org@localhost
 # needed due to (broken?) configure checks in php-xmlrpc and php5-dom
 CONFIGURE_ENV+=                PHP_LIBXML_SHARED="1"
 
+# avoid to use ifunc on NetBSD
+.if ${OPSYS} == "NetBSD"
+CONFIGURE_ARGS+=       ax_cv_have_func_attribute_ifunc=no
+.endif
+
 .include "../../mk/compiler.mk"
 .if !empty(PKGSRC_COMPILER:Mclang)
 # configure test gets confused by wrappers dropping -R /usr/lib



Home | Main Index | Thread Index | Old Index