blob: a4b617f09d5cf12a552d3bca81ef1bcde3c81625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile.common,v 1.1 2016/08/04 14:09:03 jdolecek Exp $
# used by lang/php71/Makefile.php
# used by lang/php/ext.mk
# used by meta-pkgs/php71-extensions/Makefile
PHP_VERSION_REQD= 71
.include "../../lang/php/common.mk"
CATEGORIES+= www
MAINTAINER?= pkgsrc-users@NetBSD.org
# needed due to (broken?) configure checks in php-xmlrpc and php5-dom
CONFIGURE_ENV+= PHP_LIBXML_SHARED="1"
EXTRACT_USING= gtar
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Mclang)
# configure test gets confused by wrappers dropping -R /usr/lib
CONFIGURE_ARGS+= php_cv_cc_dashr=no
.endif
|