diff options
author | marino <marino@FreeBSD.org> | 2014-07-20 16:15:16 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-07-20 16:15:16 +0800 |
commit | d3abbed849ba480dee4bfd43557b6f677026b416 (patch) | |
tree | aaaece019275fb2d457460c3a579585905bca47a /x11-toolkits | |
parent | 9618bc99d1702b5f97e81173d01097cac40916d4 (diff) | |
download | freebsd-ports-gnome-d3abbed849ba480dee4bfd43557b6f677026b416.tar.gz freebsd-ports-gnome-d3abbed849ba480dee4bfd43557b6f677026b416.tar.zst freebsd-ports-gnome-d3abbed849ba480dee4bfd43557b6f677026b416.zip |
x11-toolkits/pango: require explicit linking
This new configure argument will list all required libraries in the
generated pkgconf files. Before any library indirectly pulled in, such
as libm, was not listed.
This fixes numerous regression in dports and it's more correct anyway.
phabric: D411
Approved by: gnome (kwm)
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/pango/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11-toolkits/pango/Makefile b/x11-toolkits/pango/Makefile index 049136070ee8..e6564d2cf6d8 100644 --- a/x11-toolkits/pango/Makefile +++ b/x11-toolkits/pango/Makefile @@ -4,7 +4,7 @@ PORTNAME= pango PORTVERSION= 1.34.1 -PORTREVISION?= 5 +PORTREVISION?= 6 CATEGORIES= x11-toolkits MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -30,6 +30,7 @@ USE_GNOME= cairo glib20 gnomehier introspection:build referencehack CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip +CONFIGURE_ARGS= --enable-explicit-deps=yes PLIST_SUB= VERSION="1.8.0" |