svn commit: r478690 - head/emulators/wine

Gerald Pfeifer gerald at FreeBSD.org
Sat Sep 1 13:18:22 UTC 2018


Author: gerald
Date: Sat Sep  1 13:18:21 2018
New Revision: 478690
URL: https://svnweb.freebsd.org/changeset/ports/478690

Log:
  Backport r464959 | gerald | 2018-03-18 22:24:42 from emulators/wine-devel:
  
  Fully disable building Kerberos components.
  
  We already had --without-krb5, alas when someone had krb5 installed
  in their build environment, the build still failed.  This takes care
  using a bigger hammer.
  
  PR:		226396
  Analyzed by:	John Hein <z7dr6ut7gs at snkmail.com>

Modified:
  head/emulators/wine/Makefile
  head/emulators/wine/pkg-plist

Modified: head/emulators/wine/Makefile
==============================================================================
--- head/emulators/wine/Makefile	Sat Sep  1 13:12:37 2018	(r478689)
+++ head/emulators/wine/Makefile	Sat Sep  1 13:18:21 2018	(r478690)
@@ -25,7 +25,9 @@ CONFLICTS_INSTALL=	wine-staging-[0-9]* wine-devel-[0-9
 			i386-wine-staging-[0-9]* i386-wine-devel-[0-9]*
 
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS+=--verbose --disable-tests \
+CONFIGURE_ARGS+=--verbose \
+		--disable-kerberos \
+		--disable-tests \
 		--without-alsa --without-capi --without-dbus \
 		--without-gettext --without-gettextpo \
 		--without-gphoto --without-gsm --without-gstreamer \

Modified: head/emulators/wine/pkg-plist
==============================================================================
--- head/emulators/wine/pkg-plist	Sat Sep  1 13:12:37 2018	(r478689)
+++ head/emulators/wine/pkg-plist	Sat Sep  1 13:18:21 2018	(r478690)
@@ -1772,7 +1772,6 @@ lib/wine/fakedlls/itss.dll
 lib/wine/fakedlls/joy.cpl
 lib/wine/fakedlls/jscript.dll
 lib/wine/fakedlls/jsproxy.dll
-lib/wine/fakedlls/kerberos.dll
 lib/wine/fakedlls/kernel32.dll
 lib/wine/fakedlls/kernelbase.dll
 %%WINE32%%lib/wine/fakedlls/keyboard.drv16
@@ -2235,7 +2234,6 @@ lib/wine/itss.dll.so
 lib/wine/joy.cpl.so
 lib/wine/jscript.dll.so
 lib/wine/jsproxy.dll.so
-lib/wine/kerberos.dll.so
 lib/wine/kernel32.dll.so
 lib/wine/kernelbase.dll.so
 %%WINE32%%lib/wine/keyboard.drv16.so


More information about the svn-ports-all mailing list