diff options
author | ale <ale@FreeBSD.org> | 2006-01-31 16:36:02 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2006-01-31 16:36:02 +0800 |
commit | 469baefbe117bbed26b3915dee9b4ce280c52f61 (patch) | |
tree | f1e549b5d5e1bc30330981da29ab87f45b37993f | |
parent | e827640b1aa78e5e1edcd95278c614d6506930fe (diff) | |
download | freebsd-ports-gnome-469baefbe117bbed26b3915dee9b4ce280c52f61.tar.gz freebsd-ports-gnome-469baefbe117bbed26b3915dee9b4ce280c52f61.tar.zst freebsd-ports-gnome-469baefbe117bbed26b3915dee9b4ce280c52f61.zip |
Fix linking on 4.x (yes, this is another PHP configure bug).
While I'm here, replace a '=' with '+='.
-rw-r--r-- | lang/php4/Makefile | 4 | ||||
-rw-r--r-- | lang/php5/Makefile | 4 | ||||
-rw-r--r-- | lang/php53/Makefile | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/lang/php4/Makefile b/lang/php4/Makefile index a32ca430af68..f0f8d5adad77 100644 --- a/lang/php4/Makefile +++ b/lang/php4/Makefile @@ -104,9 +104,11 @@ CONFIGURE_ARGS+=--disable-cgi .include <bsd.port.pre.mk> -CONFIGURE_ENV= ac_cv_pthreads_lib=${PTHREAD_LIBS} \ +CONFIGURE_ENV+= ac_cv_pthreads_lib=${PTHREAD_LIBS} \ ac_cv_pthreads_cflags=${PTHREAD_CFLAGS} +MAKE_ENV+= LDFLAGS="${LDFLAGS}" + .if defined(WITH_OPENSSL) .include "${PORTSDIR}/Mk/bsd.openssl.mk" CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} \ diff --git a/lang/php5/Makefile b/lang/php5/Makefile index 4e33af8a9dca..fd677ae1c48e 100644 --- a/lang/php5/Makefile +++ b/lang/php5/Makefile @@ -109,9 +109,11 @@ CONFIGURE_ARGS+=--disable-cgi .include <bsd.port.pre.mk> -CONFIGURE_ENV= ac_cv_pthreads_lib=${PTHREAD_LIBS} \ +CONFIGURE_ENV+= ac_cv_pthreads_lib=${PTHREAD_LIBS} \ ac_cv_pthreads_cflags=${PTHREAD_CFLAGS} +MAKE_ENV+= LDFLAGS="${LDFLAGS}" + .if defined(WITH_APACHE) .if ${APACHE_VERSION} > 13 CONFIGURE_ARGS+=--with-apxs2=${APXS} diff --git a/lang/php53/Makefile b/lang/php53/Makefile index 4e33af8a9dca..fd677ae1c48e 100644 --- a/lang/php53/Makefile +++ b/lang/php53/Makefile @@ -109,9 +109,11 @@ CONFIGURE_ARGS+=--disable-cgi .include <bsd.port.pre.mk> -CONFIGURE_ENV= ac_cv_pthreads_lib=${PTHREAD_LIBS} \ +CONFIGURE_ENV+= ac_cv_pthreads_lib=${PTHREAD_LIBS} \ ac_cv_pthreads_cflags=${PTHREAD_CFLAGS} +MAKE_ENV+= LDFLAGS="${LDFLAGS}" + .if defined(WITH_APACHE) .if ${APACHE_VERSION} > 13 CONFIGURE_ARGS+=--with-apxs2=${APXS} |