diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-06-23 12:29:14 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-06-23 12:29:14 +0000 |
commit | 6b8ef2e0b4f979b9d5fe4e51edf780897a8c0dd7 (patch) | |
tree | c34139fb7f37a22ad6e54b25c57d16d223fd85ff /usr.bin/bzip2 | |
parent | 0a170022469cb414eaf2fe65a3f07b5b0874d123 (diff) | |
download | FreeBSD-src-6b8ef2e0b4f979b9d5fe4e51edf780897a8c0dd7.zip FreeBSD-src-6b8ef2e0b4f979b9d5fe4e51edf780897a8c0dd7.tar.gz |
By default link statically (like we did in the port) - it provides 8-10%
faster comperssion, which in the bzip2's case could be a big win.
Diffstat (limited to 'usr.bin/bzip2')
-rw-r--r-- | usr.bin/bzip2/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/bzip2/Makefile b/usr.bin/bzip2/Makefile index 4a3ad59..3fb5d67 100644 --- a/usr.bin/bzip2/Makefile +++ b/usr.bin/bzip2/Makefile @@ -12,6 +12,8 @@ CFLAGS= -D_FILE_OFFSET_BITS=64 DPADD= ${LIBBZ2} LDADD= -lbz2 +NOSHARED?= YES + LINKS= ${BINDIR}/bzip2 ${BINDIR}/bunzip2 LINKS+= ${BINDIR}/bzip2 ${BINDIR}/bzcat MLINKS= bzip2.1 bunzip2.1 bzip2.1 bzcat.1 |