svn commit: r552877 - head/x11-wm/wmakerconf

Piotr Kubaj pkubaj at FreeBSD.org
Wed Oct 21 18:22:33 UTC 2020


Author: pkubaj
Date: Wed Oct 21 18:22:32 2020
New Revision: 552877
URL: https://svnweb.freebsd.org/changeset/ports/552877

Log:
  x11-wm/wmakerconf: fix build on GCC architectures
  
  Explicitly link to libintl to fix linking.

Modified:
  head/x11-wm/wmakerconf/Makefile

Modified: head/x11-wm/wmakerconf/Makefile
==============================================================================
--- head/x11-wm/wmakerconf/Makefile	Wed Oct 21 17:52:19 2020	(r552876)
+++ head/x11-wm/wmakerconf/Makefile	Wed Oct 21 18:22:32 2020	(r552877)
@@ -26,7 +26,7 @@ GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-wmakerdataprefix="${LOCALBASE}/share" \
 		--with-wmakeretcprefix="${LOCALBASE}/share"
 USE_XORG=	x11
-LIBS=		-L${LOCALBASE}/lib -lX11 -lWUtil
+LIBS=		-L${LOCALBASE}/lib -lintl -lX11 -lWUtil
 
 post-extract:
 	@${FIND} ${WRKSRC} -name "*.gmo" -delete


More information about the svn-ports-all mailing list