diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-02-11 16:25:24 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-02-11 16:25:24 +0000 |
commit | 5cbbdd62a030ac787d785b161e2d59f60ad1c573 (patch) | |
tree | d9229bd1df8af123c88ac95fd4931a3546feffe1 /sysutils/logtool-devel/files/patch-logtool::Makefile.in | |
parent | New port: biology/fasta, the FASTA2 suite of DNA and protein sequence (diff) |
upgrade to 1.0.5
Diffstat (limited to '')
-rw-r--r-- | sysutils/logtool-devel/files/patch-logtool::Makefile.in | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sysutils/logtool-devel/files/patch-logtool::Makefile.in b/sysutils/logtool-devel/files/patch-logtool::Makefile.in new file mode 100644 index 000000000000..0f0dbffba0c4 --- /dev/null +++ b/sysutils/logtool-devel/files/patch-logtool::Makefile.in @@ -0,0 +1,19 @@ +--- logtool/Makefile.in.orig Sun Feb 11 23:50:38 2001 ++++ logtool/Makefile.in Sun Feb 11 23:54:02 2001 +@@ -16,6 +16,7 @@ + CC = @CC@ + INSTALL = @installprog@ + CFLAGS= @CFLAGS@ @DEFS@ @LIBS@ ++LIBS= -L/usr/local/lib -lgnugetopt + + ### The stuff below is (I hope) no longer needed now that we us autoconf/configure and friends + # Solaris users should probably use the following instead (thanks Christoph Krempe <ck@ub.fu-berlin.de>) +@@ -30,7 +31,7 @@ + + ### The main build stuff + logtool: logtool.o $(OBJS) +- $(CC) $(ADDCFLAGS) -o $(PROG) $(OBJS) ++ $(CC) $(ADDCFLAGS) -o $(PROG) $(OBJS) ${LIBS} + @echo "strip $(PROG)" + @strip $(PROG) + |