svn commit: r448652 - in head/print/gl2ps: . files

Marcelo Araujo araujo at FreeBSD.org
Thu Aug 24 09:01:12 UTC 2017


Author: araujo
Date: Thu Aug 24 09:01:11 2017
New Revision: 448652
URL: https://svnweb.freebsd.org/changeset/ports/448652

Log:
  The LLD linker does not include default search paths,
  so /usr/lib has to be explicitly specified also bump PORTREVISION.
  
  PR:		ports/218399
  Submitted by:	emaste

Modified:
  head/print/gl2ps/Makefile
  head/print/gl2ps/files/Makefile.lib

Modified: head/print/gl2ps/Makefile
==============================================================================
--- head/print/gl2ps/Makefile	Thu Aug 24 08:25:20 2017	(r448651)
+++ head/print/gl2ps/Makefile	Thu Aug 24 09:01:11 2017	(r448652)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gl2ps
 PORTVERSION=	1.3.9
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	print graphics
 MASTER_SITES=	http://www.geuz.org/gl2ps/src/
 EXTRACT_SUFX=	.tgz

Modified: head/print/gl2ps/files/Makefile.lib
==============================================================================
--- head/print/gl2ps/files/Makefile.lib	Thu Aug 24 08:25:20 2017	(r448651)
+++ head/print/gl2ps/files/Makefile.lib	Thu Aug 24 09:01:11 2017	(r448652)
@@ -1,5 +1,5 @@
 CFLAGS+=	-DHAVE_ZLIB -O3 -fPIC -I${LOCALBASE}/include
-LDFLAGS=	-shared -E -lGL -L${LOCALBASE}/lib -lX11 -lXi -lXmu -lm -lz
+LDFLAGS=	-shared -E -lGL -L${LOCALBASE}/lib -L/usr/lib -lX11 -lXi -lXmu -lm -lz
 
 all: libgl2ps.so libgl2ps.a
 


More information about the svn-ports-head mailing list