diff options
author | jlam <jlam> | 2004-08-27 07:29:24 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-08-27 07:29:24 +0000 |
commit | 8444a1734e3b393569d393a87cade98ffa9b59e2 (patch) | |
tree | 1417841d2db422d75e610920ab3b3247a797f217 /net/freeradius | |
parent | 542f79f2570a534453975a45b9655e00f54c7ce3 (diff) | |
download | pkgsrc-8444a1734e3b393569d393a87cade98ffa9b59e2.tar.gz |
libtool uses $(CC) to link objects, not $(LD).
Diffstat (limited to 'net/freeradius')
-rw-r--r-- | net/freeradius/distinfo | 3 | ||||
-rw-r--r-- | net/freeradius/patches/patch-af | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/net/freeradius/distinfo b/net/freeradius/distinfo index 1cd1b59049a..58bd04ca457 100644 --- a/net/freeradius/distinfo +++ b/net/freeradius/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2004/01/30 21:44:39 david Exp $ +$NetBSD: distinfo,v 1.6 2004/08/27 07:29:24 jlam Exp $ SHA1 (freeradius-0.9.3.tar.gz) = 794a332a9abe1ec6e1d3d6ccdcc35f926680b33d Size (freeradius-0.9.3.tar.gz) = 1819922 bytes SHA1 (patch-ab) = 26092b974a27151d69ab87ae7ba42e67aeef448b SHA1 (patch-ae) = e01ea7624ba9b789f88cb08dc0055ef0809f6acc +SHA1 (patch-af) = 3ef13ce1159e33bcb886dcac732807107eb45ed1 diff --git a/net/freeradius/patches/patch-af b/net/freeradius/patches/patch-af new file mode 100644 index 00000000000..bae2b17188f --- /dev/null +++ b/net/freeradius/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.1 2004/08/27 07:29:24 jlam Exp $ + +--- src/lib/Makefile.orig Tue Jun 24 10:22:19 2003 ++++ src/lib/Makefile Fri Aug 27 03:27:01 2004 +@@ -33,7 +33,7 @@ + + + $(TARGET).a: $(STATIC_OBJS) +- $(LIBTOOL) --mode=link $(LD) \ ++ $(LIBTOOL) --mode=link $(CC) \ + -module -static $(CFLAGS) $^ -o $@ + + |