diff options
author | John Marino <marino@FreeBSD.org> | 2013-10-07 23:03:12 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2013-10-07 23:03:12 +0000 |
commit | cc27f63556a7861245cf4e44357bd1c194879b10 (patch) | |
tree | b6680e968fa0ce8ffab8f44a0ea5e363cad1422f /editors | |
parent | 37cf9a7ce363733cfb78661c70c68c9fe1b0885b (diff) | |
download | ports-cc27f63556a7861245cf4e44357bd1c194879b10.tar.gz ports-cc27f63556a7861245cf4e44357bd1c194879b10.zip |
Explicitly link libraries on 10 unmaintained ports
The following ports will not build with a binutils 2.22+ linker built
with standard options. This has been obvious with DPorts, but difficult
to see on FreeBSD. However, setting the ports compiler as a recent gcc
(e.g lang/gcc48) is an excellent way to detect the unspecified but needed
libraries as these recent GCC compilers use the latest binutils linkers.
These patches were tested on FreeBSD 8.4 and DragonFly 3.5
Notes
Notes:
svn path=/head/; revision=329743
Diffstat (limited to 'editors')
-rw-r--r-- | editors/gmanedit/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/gmanedit/Makefile b/editors/gmanedit/Makefile index 65c0971d29a9..2e0f5f5a81ad 100644 --- a/editors/gmanedit/Makefile +++ b/editors/gmanedit/Makefile @@ -14,7 +14,7 @@ USES= pathfix gettext gmake pkgconfig USE_GNOME= gtk20 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib -lz MAN1= gmanedit.1 |