diff options
author | marino <marino@FreeBSD.org> | 2013-10-08 08:15:34 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-10-08 08:15:34 +0800 |
commit | ad2e6d9cbccd260dd87a0b628896acf13b94a652 (patch) | |
tree | 39be84d6997d264d9ca2a8ab4f521d044421e824 /sysutils/wmfire | |
parent | 2cdc7a8011d68e815fb70ceef695ab41675a6ca2 (diff) | |
download | freebsd-ports-gnome-ad2e6d9cbccd260dd87a0b628896acf13b94a652.tar.gz freebsd-ports-gnome-ad2e6d9cbccd260dd87a0b628896acf13b94a652.tar.zst freebsd-ports-gnome-ad2e6d9cbccd260dd87a0b628896acf13b94a652.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
Diffstat (limited to 'sysutils/wmfire')
-rw-r--r-- | sysutils/wmfire/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/wmfire/Makefile b/sysutils/wmfire/Makefile index 2c1401e8cc10..13c5bf413a90 100644 --- a/sysutils/wmfire/Makefile +++ b/sysutils/wmfire/Makefile @@ -17,7 +17,7 @@ USE_GNOME= gtk20 GNU_CONFIGURE= yes USE_CSTD= gnu89 CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib -lm MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOHEADER="${TRUE}" \ AUTOMAKE="${TRUE}" |