diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-11-14 07:50:02 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2021-11-14 07:50:02 +0000 |
commit | 1d7b58bcf718f17e3dc8141cce748be756bbc526 (patch) | |
tree | 075574027548f13f63b4665eaf9dfabb0160c7c3 | |
parent | b62fdebf66a9200ea7849b664abe6619216bd33c (diff) | |
download | ports-1d7b58bcf718f17e3dc8141cce748be756bbc526.tar.gz ports-1d7b58bcf718f17e3dc8141cce748be756bbc526.zip |
emulators/wine: Configure without Core Audio support
Core Audio is Apple-specific and should never trigger on FreeBSD.
Still explicitly configure --without-coreaudio in the spirit of
deterministic builds, independent of packages that happen to be
installed on the build system.
This back ports bd28318975c42f2b4469ff27e211c8f8f8a56ac2 from the
wine-devel port.
-rw-r--r-- | emulators/wine/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index b2c719e9b89f..bfcc847a37aa 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -36,6 +36,7 @@ CONFIGURE_ARGS+=--verbose \ --disable-tests \ --without-alsa \ --without-capi \ + --without-coreaudio \ --without-dbus \ --without-gettext --without-gettextpo \ --without-gphoto \ |