1.16b - Fixed index.html typo and CFLAG/LIBS/LDFLAGS changes

- Fixed a typo introduced in 1.16 to index.html (d'oh).
  - Further refinements to Makefile CFLAGS / LIBS / LDFLAGS.
This commit is contained in:
Steve Pinkham 2010-03-23 19:54:33 -04:00
parent 662a6138f4
commit 68eb5bab19
4 changed files with 18 additions and 7 deletions

View File

@ -1,3 +1,10 @@
Version 1.16b:
--------------
- Fixed a typo introduced in 1.16 to index.html (d'oh).
- Further refinements to Makefile CFLAGS / LIBS / LDFLAGS.
Version 1.15b:
--------------

View File

@ -27,14 +27,17 @@ INCFILES = alloc-inl.h string-inl.h debug.h types.h http_client.h \
CFLAGS_GEN = -Wall -funsigned-char -g -ggdb -D_FORTIFY_SOURCE=0 \
-I/usr/local/include/ -I/opt/local/include/ $(CFLAGS)
CFLAGS_DBG = $(CFLAGS_GEN) -DLOG_STDERR=1 -DDEBUG_ALLOCATOR=1
CFLAGS_OPT = $(CFLAGS_GEN) -O3 -Wno-format
LDFLAGS += -lcrypto -lssl -lidn -lz -L/usr/local/lib/ -L/opt/local/lib
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
LIBS += -lcrypto -lssl -lidn -lz
all: $(PROGNAME)
$(PROGNAME): $(PROGNAME).c $(OBJFILES) $(INCFILES)
$(CC) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_OPT) $(OBJFILES) $(LDFLAGS)
$(CC) $(LDFLAGS) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_OPT) \
$(OBJFILES) $(LIBS)
@echo
@echo "See dictionaries/README-FIRST to pick a dictionary for the tool."
@echo
@ -43,7 +46,8 @@ $(PROGNAME): $(PROGNAME).c $(OBJFILES) $(INCFILES)
@echo
debug: $(PROGNAME).c $(OBJFILES) $(INCFILES)
$(CC) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_DBG) $(OBJFILES) $(LDFLAGS)
$(CC) $(LDFLAGS) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS_DBG) \
$(OBJFILES) $(LIBS)
clean:
rm -f $(PROGNAME) *.exe *.o *~ a.out core core.[1-9][0-9]* *.stackdump \

View File

@ -285,7 +285,7 @@ var issue_desc= {
"50103": "SQL injection vector",
"50104": "Format string vector",
"50105": "Integer overflow vector",
"50201": "SQL query or similar syntax in parameters"
"50201": "SQL query or similar syntax in parameters",
"50301": "PUT request accepted"
};

View File

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