mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
3d169fb97f
* Fixed a very important bug that occurred when SYN scanning localhost. * Fixed "-vv" to mean "-v -v" as it did in previous versions.
26 lines
608 B
Plaintext
26 lines
608 B
Plaintext
--- nmapfe/Makefile.in.orig Thu Apr 6 01:51:39 2000
|
|
+++ nmapfe/Makefile.in Thu Apr 6 14:53:11 2000
|
|
@@ -70,7 +70,7 @@
|
|
PROGRAMS = $(bin_PROGRAMS)
|
|
|
|
|
|
-DEFS = @DEFS@ -DVERSION=\"$(VERSION)\" -I. -I$(srcdir)
|
|
+DEFS = @DEFS@ -DVERSION=\"$(VERSION)\" -DNMAP_PATH=\"$(bindir)/\" -I. -I$(srcdir)
|
|
CPPFLAGS = @CPPFLAGS@
|
|
STATIC =
|
|
LDFLAGS = @LDFLAGS@ $(STATIC)
|
|
@@ -231,11 +231,11 @@
|
|
maintainer-clean-depend:
|
|
-rm -rf .deps
|
|
|
|
-%.o: %.c
|
|
+.c.o:
|
|
@echo '$(COMPILE) -c $<'; \
|
|
$(COMPILE) -c $<
|
|
|
|
-%.lo: %.c
|
|
+.c.lo:
|
|
@echo '$(LTCOMPILE) -c $<'; \
|
|
$(LTCOMPILE) -c $<
|
|
@-sed -e 's/^\([^:]*\)\.o:/\1.lo \1.o:/' \
|