Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Aug 2017 09:01:11 +0000 (UTC)
From:      Marcelo Araujo <araujo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r448652 - in head/print/gl2ps: . files
Message-ID:  <201708240901.v7O91Bdd083302@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708240901.v7O91Bdd083302>