1.07b - Several build fixes for FreeBSD, MacOS X.

This commit is contained in:
Steve Pinkham 2010-03-21 20:07:06 -04:00
parent a7f9000161
commit 5658c2c310
6 changed files with 14 additions and 5 deletions

View File

@ -1,3 +1,8 @@
Version 1.07b:
--------------
- Several build fixes for FreeBSD, MacOS X.
Version 1.06b:
--------------

View File

@ -25,10 +25,11 @@ OBJFILES = http_client.c database.c crawler.c analysis.c report.c
INCFILES = alloc-inl.h string-inl.h debug.h types.h http_client.h \
database.h crawler.h analysis.h config.h report.h
CFLAGS_GEN = -Wall -funsigned-char -g -ggdb -D_FORTIFY_SOURCE=0
CFLAGS_GEN = -Wall -funsigned-char -g -ggdb -D_FORTIFY_SOURCE=0 \
-I/usr/local/include/ -I/opt/local/include/
CFLAGS_DBG = $(CFLAGS_GEN) -DLOG_STDERR=1 -DDEBUG_ALLOCATOR=1
CFLAGS_OPT = $(CFLAGS_GEN) -O3 -Wno-format
LDFLAGS = -lcrypto -lssl -lidn -lz
LDFLAGS = -lcrypto -lssl -lidn -lz -L/usr/local/lib/ -L/opt/local/lib
all: $(PROGNAME)

View File

@ -34,7 +34,9 @@
#else
#include <malloc.h>
#endif /* __APPLE__ */
#endif /* !__FreeBSD__ */
#else
#include <malloc_np.h>
#endif /* ^__FreeBSD__ */
#include <string.h>

View File

@ -23,7 +23,7 @@
#ifndef _HAVE_CONFIG_H
#define _HAVE_CONFIG_H
#define VERSION "1.06b"
#define VERSION "1.07b"
#define USE_COLOR 1 /* Use terminal colors */

View File

@ -116,7 +116,7 @@ Supplied dictionaries:
these are best learned on the fly.
** This dictionary is strongly recommended for your first experiments with
** Jellyfish, as it's reasonably lightweight.
** skipfish, as it's reasonably lightweight.
You can also use this dictionary with -Y option enabled, approximating the
behavior of most other security scanners; in this case, it will send only

View File

@ -22,6 +22,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <ctype.h>
#include <string.h>
#include <netdb.h>