diff options
author | dbn <dbn@FreeBSD.org> | 2015-04-24 23:56:19 +0800 |
---|---|---|
committer | dbn <dbn@FreeBSD.org> | 2015-04-24 23:56:19 +0800 |
commit | c94bd396f66335c8a92e36848d0d7d1a75c66967 (patch) | |
tree | 41c9558bf8a4e5e76e6fc4afd31db1da7f6f5b75 /emulators/wine-devel | |
parent | ef89067cfc987036170dd03a39dc9aad13651a51 (diff) | |
download | freebsd-ports-gnome-c94bd396f66335c8a92e36848d0d7d1a75c66967.tar.gz freebsd-ports-gnome-c94bd396f66335c8a92e36848d0d7d1a75c66967.tar.zst freebsd-ports-gnome-c94bd396f66335c8a92e36848d0d7d1a75c66967.zip |
emulators/wine-compholio: fix build.
* Autoconf is required during the extract stage, so add it to the
EXTRACT_DEPENDS list (it defaults to BUILD_DEPENDS only)
* For an unknown reason autoconf creates a configure script that looks
for and detects powl on FreeBSD 8 and 9. powl does not actually exist
and causes a build failure.
Approved by: gerald@ (maintainer, implicit)
Diffstat (limited to 'emulators/wine-devel')
-rw-r--r-- | emulators/wine-devel/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index 8746b45e2f11..289c8c7b60dc 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -141,8 +141,11 @@ COMP_DIST= v${DISTVERSION}.tar.gz DISTFILES+= ${COMP_DIST}:cho EXTRACT_DEPENDS=bash:${PORTSDIR}/shells/bash \ - git:${PORTSDIR}/devel/git + git:${PORTSDIR}/devel/git \ + ${AUTOCONF_DEPENDS} +# Fix build on FreeBSD 8.4 and 9.3 (false positive: powl) +CONFIGURE_ENV+= ac_cv_have_powl=no CONFIGURE_ARGS+=--without-pulse USE_AUTOTOOLS= autoconf |