1.05b - Final workaround for FORTIFY_SOURCE on MacOS X.

This commit is contained in:
Steve Pinkham 2010-03-20 11:57:35 -04:00
parent 908118790d
commit 3720b4840a
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Version 1.05b:
--------------
- Final workaround for FORTIFY_SOURCE on MacOS X.
Version 1.04b:
--------------

View File

@ -25,7 +25,7 @@ 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 -U_FORTIFY_SOURCE
CFLAGS_GEN = -Wall -funsigned-char -g -ggdb -D_FORTIFY_SOURCE=0
CFLAGS_DBG = $(CFLAGS_GEN) -DLOG_STDERR=1 -DDEBUG_ALLOCATOR=1
CFLAGS_OPT = $(CFLAGS_GEN) -O3 -Wno-format
LDFLAGS = -lcrypto -lssl -lidn -lz

View File

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