svn commit: r553181 - branches/2020Q4/x11-wm/wmakerconf

Piotr Kubaj pkubaj at FreeBSD.org
Sat Oct 24 11:06:31 UTC 2020


Author: pkubaj
Date: Sat Oct 24 11:06:30 2020
New Revision: 553181
URL: https://svnweb.freebsd.org/changeset/ports/553181

Log:
  MFH: r552877
  
  x11-wm/wmakerconf: fix build on GCC architectures
  
  Explicitly link to libintl to fix linking.
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q4/x11-wm/wmakerconf/Makefile
Directory Properties:
  branches/2020Q4/   (props changed)

Modified: branches/2020Q4/x11-wm/wmakerconf/Makefile
==============================================================================
--- branches/2020Q4/x11-wm/wmakerconf/Makefile	Sat Oct 24 10:50:25 2020	(r553180)
+++ branches/2020Q4/x11-wm/wmakerconf/Makefile	Sat Oct 24 11:06:30 2020	(r553181)
@@ -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