diff options
author | gerald <gerald@FreeBSD.org> | 2010-09-06 19:23:34 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2010-09-06 19:23:34 +0800 |
commit | 5e7dee24cec59092a870c588448448fd13e29e0c (patch) | |
tree | 42b4389530d9c9e84fece191e20e758ae33f9216 /emulators/wine | |
parent | 635f35d8b21953709a648bc1f5ecd99b3ff84c56 (diff) | |
download | freebsd-ports-gnome-5e7dee24cec59092a870c588448448fd13e29e0c.tar.gz freebsd-ports-gnome-5e7dee24cec59092a870c588448448fd13e29e0c.tar.zst freebsd-ports-gnome-5e7dee24cec59092a870c588448448fd13e29e0c.zip |
Explicitly configure using --without-xcomposite, --without-xinerama and
--without-xrandr so that builds are more reproduciable and we avoi hidden
dependencies when building outside of a minimal build environment, thus
making packages more portable.
Diffstat (limited to 'emulators/wine')
-rw-r--r-- | emulators/wine/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index 8725bd34850d..b50af8ed3474 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -28,9 +28,9 @@ LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \ GNU_CONFIGURE= yes CONFIGURE_ARGS= --datadir=${DATADIR} --verbose --disable-tests \ --with-opengl --with-glu \ - --without-capi --without-gphoto \ - --without-gsm --without-mpg123 --without-openal \ - --without-sane + --without-capi --without-gphoto --without-gsm \ + --without-mpg123 --without-openal --without-sane \ + --without-xcomposite --without-xinerama --without-xrandr CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" \ FLEX="${LOCALBASE}/bin/flex" |