head	1.4;
access;
symbols
	RELEASE_8_3_0:1.3
	RELEASE_9_0_0:1.3
	RELEASE_7_4_0:1.2
	RELEASE_8_2_0:1.2
	RELEASE_6_EOL:1.1
	RELEASE_8_1_0:1.1;
locks; strict;
comment	@# @;


1.4
date	2012.12.15.03.12.54;	author svnexp;	state Exp;
branches;
next	1.3;

1.3
date	2011.06.30.02.27.43;	author wxs;	state Exp;
branches;
next	1.2;

1.2
date	2010.12.13.00.37.58;	author wxs;	state Exp;
branches;
next	1.1;

1.1
date	2010.04.11.21.16.27;	author niels;	state Exp;
branches;
next	;


desc
@@


1.4
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/308931
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ## r308931 | zi | 2012-12-15 03:08:12 +0000 (Sat, 15 Dec 2012) | 2 lines
## SVN ##
## SVN ## - Update to 2.10b
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ##
@
text
@--- ./Makefile.orig	2012-12-07 10:14:00.000000000 -0500
+++ ./Makefile	2012-12-07 10:15:06.000000000 -0500
@@@@ -33,13 +33,14 @@@@
 OBJFILES   = $(patsubst %,$(SRCDIR)/%,$(SFILES))
 INCFILES   = $(patsubst %,$(SRCDIR)/%,$(IFILES))
 
-CFLAGS_GEN = -Wall -funsigned-char -g -ggdb -I/usr/local/include/ \
-             -I/opt/local/include/ $(CFLAGS) -DVERSION=\"$(VERSION)\"
+_LOCALBASE ?= ${LOCALBASE}
+CFLAGS_GEN = -Wall -funsigned-char -g -ggdb -I$(LOCALBASE)/include/ \
+             $(CFLAGS) -DVERSION=\"$(VERSION)\"
 CFLAGS_DBG = -DLOG_STDERR=1 -DDEBUG_ALLOCATOR=1 \
              $(CFLAGS_GEN)
 CFLAGS_OPT =  -O3 -Wno-format $(CFLAGS_GEN)
 
-LDFLAGS   += -L/usr/local/lib/ -L/opt/local/lib
+LDFLAGS   += -L$(LOCALBASE)/lib
 LIBS      += -lcrypto -lssl -lidn -lz -lpcre
 
 all: $(PROGNAME)
@@@@ -47,12 +48,6 @@@@
 $(PROGNAME): $(SRCDIR)/$(PROGNAME).c $(OBJFILES) $(INCFILES)
 	$(CC) $(LDFLAGS) $(SRCDIR)/$(PROGNAME).c -o $(PROGNAME) \
         $(CFLAGS_OPT) $(OBJFILES) $(LIBS)
-	@@echo
-	@@echo "See doc/dictionaries.txt to pick a dictionary for the tool."
-	@@echo
-	@@echo "Having problems with your scans? Be sure to visit:"
-	@@echo "http://code.google.com/p/skipfish/wiki/KnownIssues"
-	@@echo
 
 debug: $(SRCDIR)/$(PROGNAME).c $(OBJFILES) $(INCFILES)
 	$(CC) $(LDFLAGS) $(SRCDIR)/$(PROGNAME).c -o $(PROGNAME) \
@


1.3
log
@- Update to 2.00b

PR:		ports/158519
Submitted by:	Ryan Steinmetz <rpsfa@@rit.edu> (maintainer)
@
text
@d1 5
a5 5
--- ./Makefile.orig	2011-06-29 20:02:06.000000000 -0400
+++ ./Makefile	2011-06-29 20:02:49.000000000 -0400
@@@@ -26,12 +26,13 @@@@
 INCFILES   = alloc-inl.h string-inl.h debug.h types.h http_client.h \
              database.h crawler.h analysis.h config.h report.h
d8 1
d11 4
a14 3
              -I/opt/local/include/ $(CFLAGS) -DVERSION=\"$(VERSION)\"
 CFLAGS_DBG = -DLOG_STDERR=1 -DDEBUG_ALLOCATOR=1 $(CFLAGS_GEN)
 CFLAGS_OPT = -O3 -Wno-format $(CFLAGS_GEN)
d17 2
a18 2
+LDFLAGS   += -L$(LOCALBASE)/lib/
 LIBS      += -lcrypto -lssl -lidn -lz
d21 4
a24 4
@@@@ -39,12 +40,6 @@@@
 $(PROGNAME): $(PROGNAME).c $(OBJFILES) $(INCFILES)
 	$(CC) $(LDFLAGS) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_OPT) \
 	      $(OBJFILES) $(LIBS)
d26 1
a26 1
-	@@echo "See dictionaries/README-FIRST to pick a dictionary for the tool."
d32 2
a33 2
 debug: $(PROGNAME).c $(OBJFILES) $(INCFILES)
 	$(CC) $(LDFLAGS) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_DBG) \
@


1.2
log
@Update to 1.81b.
Whitespace fix.
Respect PREFIX != LOCALBASE.

PR:		ports/152763
Submitted by:	Ryan Steinmetz <rpsfa@@rit.edu> (maintainer)
@
text
@d1 2
a2 2
--- Makefile.orig	2010-11-29 16:59:49.000000000 -0500
+++ Makefile	2010-12-12 19:24:29.000000000 -0500
d11 1
a11 1
 CFLAGS_DBG = -DLOG_STDERR=1 -DDEBUG_ALLOCATOR=1 $(CFLAGS_GEN) 
d15 1
a15 1
+LDFLAGS   += -L$(LOCALBASE)/lib/ 
d19 1
a19 1
@@@@ -39,12 +40,12 @@@@
a28 6
+#	@@echo
+#	@@echo "See dictionaries/README-FIRST to pick a dictionary for the tool."
+#	@@echo
+#	@@echo "Having problems with your scans? Be sure to visit:"
+#	@@echo "http://code.google.com/p/skipfish/wiki/KnownIssues"
+#	@@echo
@


1.1
log
@Upgraded to version 1.30b

Submitted by:	Ryan Steinmetz (maintainer)
Approved by:	itetcu (mentor)
@
text
@d1 10
a10 3
--- ./Makefile.orig	2010-03-30 17:53:01.000000000 +0200
+++ ./Makefile	2010-04-11 19:05:39.000000000 +0200
@@@@ -30,7 +30,7 @@@@
d19 1
a19 1
@@@@ -38,12 +38,12 @@@@
@

