diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2020-07-16 11:18:52 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2020-07-16 11:18:52 +0000 |
commit | fad449e143232e3009d61629aa52e54a2af4223d (patch) | |
tree | a7158430dd2b3792b601db3978aaabbd2f111658 /emulators/wine | |
parent | 1dc9087e41b395b14580ce8aeb8bce89fd4f7829 (diff) | |
download | ports-fad449e143232e3009d61629aa52e54a2af4223d.tar.gz ports-fad449e143232e3009d61629aa52e54a2af4223d.zip |
Backport r540756 | gerald | 2020-06-29 from emulators/wine-devel:
Explicitly configure --without-usb. There does not appear to be a way
for the configure test to pass on FreeBSD right now (even with extra
ports available), so this simply makes this explicit and avoids a
warning from configure.
MFH: 2020Q3 (blanket: missing dependency)
Notes
Notes:
svn path=/head/; revision=542350
Diffstat (limited to 'emulators/wine')
-rw-r--r-- | emulators/wine/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index 1a16abe12449..d04039422d58 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -43,7 +43,8 @@ CONFIGURE_ARGS+=--verbose \ --without-sdl \ --without-tiff \ --without-udev \ - --without-unwind + --without-unwind \ + --without-usb CONFIGURE_ENV= CPPBIN="${CPP}" FLEX="${LOCALBASE}/bin/flex" WINELIBDIR?= ${PREFIX}/lib .if !defined(USE_LDCONFIG32) |