diff options
author | araujo <araujo@FreeBSD.org> | 2017-08-24 17:01:11 +0800 |
---|---|---|
committer | araujo <araujo@FreeBSD.org> | 2017-08-24 17:01:11 +0800 |
commit | e5725be25d7226455e71a706d83d777a9ffeceb7 (patch) | |
tree | f6359371f206aca2373f7ab4e242635e1194b686 /print/gl2ps | |
parent | c3f175e5f822c87dc4a46ff9f316fa3563d55e88 (diff) | |
download | freebsd-ports-gnome-e5725be25d7226455e71a706d83d777a9ffeceb7.tar.gz freebsd-ports-gnome-e5725be25d7226455e71a706d83d777a9ffeceb7.tar.zst freebsd-ports-gnome-e5725be25d7226455e71a706d83d777a9ffeceb7.zip |
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
Diffstat (limited to 'print/gl2ps')
-rw-r--r-- | print/gl2ps/Makefile | 2 | ||||
-rw-r--r-- | print/gl2ps/files/Makefile.lib | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/print/gl2ps/Makefile b/print/gl2ps/Makefile index 9435e0a5d852..54e17dc56b9a 100644 --- a/print/gl2ps/Makefile +++ b/print/gl2ps/Makefile @@ -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 diff --git a/print/gl2ps/files/Makefile.lib b/print/gl2ps/files/Makefile.lib index 2d806cb17de4..546b4a2666f0 100644 --- a/print/gl2ps/files/Makefile.lib +++ b/print/gl2ps/files/Makefile.lib @@ -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 |