diff options
author | joerg <joerg@pkgsrc.org> | 2005-10-03 20:31:26 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-10-03 20:31:26 +0000 |
commit | 45b86e47245f1f517f52dd1176a17ade4851a855 (patch) | |
tree | a5305e91cc6a4474b3fec99b547bd4bbb8750087 /archivers/szip | |
parent | 1afc549234c70025c77c1c27096cceaa47689644 (diff) | |
download | pkgsrc-45b86e47245f1f517f52dd1176a17ade4851a855.tar.gz |
On DragonFly at least, -lm is needed for brust_szip. It doesn't hurt on
other platforms, so just add it.
Diffstat (limited to 'archivers/szip')
-rw-r--r-- | archivers/szip/distinfo | 3 | ||||
-rw-r--r-- | archivers/szip/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/archivers/szip/distinfo b/archivers/szip/distinfo index 47e75f5ee9c..ead56cb317f 100644 --- a/archivers/szip/distinfo +++ b/archivers/szip/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/02/24 16:20:25 adam Exp $ +$NetBSD: distinfo,v 1.4 2005/10/03 20:31:26 joerg Exp $ SHA1 (szip-2.0.tar) = 164d90ffe1f79e12062c1b13c43d93878f9faa96 RMD160 (szip-2.0.tar) = 56b3b5ec6bc1bb6d31421354e9e093c17820e59c Size (szip-2.0.tar) = 1636352 bytes +SHA1 (patch-aa) = c1a2a539bc2da6d19e0e338796c9ffae4e360de9 diff --git a/archivers/szip/patches/patch-aa b/archivers/szip/patches/patch-aa new file mode 100644 index 00000000000..d62fc6545ca --- /dev/null +++ b/archivers/szip/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2005/10/03 20:31:26 joerg Exp $ + +--- examples/Makefile.in.orig 2005-07-22 15:00:42.000000000 +0000 ++++ examples/Makefile.in +@@ -144,7 +144,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/src -I$(t + noinst_PROGRAMS = burst_szip example + + burst_szip_SOURCES = burst_szip.c +-burst_szip_LDADD = ../test/libmcgill.la ../src/libsz.la ++burst_szip_LDADD = ../test/libmcgill.la ../src/libsz.la -lm + burst_szip_DEPENDENCIES = ../test/libmcgill.la ../src/libsz.la + + example_SOURCES = example.c |