[ darkhttpd-1.2 release ]

This commit is contained in:
Emil Mikulic 2004-12-27 12:54:54 +00:00
parent 666d9b3355
commit 2ca3cef4a3
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
# #
CC?=cc CC?=cc
CFLAGS?=-pipe -O2 CFLAGS?=-O
TARGETS = bsd linux solaris TARGETS = bsd linux solaris
.PHONY: all $(TARGETS) .PHONY: all $(TARGETS)

View File

@ -16,7 +16,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
static const char pkgname[] = "darkhttpd/1.1"; static const char pkgname[] = "darkhttpd/1.2";
static const char copyright[] = "copyright (c) 2003, 2004 Emil Mikulic"; static const char copyright[] = "copyright (c) 2003, 2004 Emil Mikulic";
static const char rcsid[] = static const char rcsid[] =
"$Id$"; "$Id$";
@ -25,7 +25,7 @@ static const char rcsid[] =
#define NDEBUG #define NDEBUG
static const int debug = 0; static const int debug = 0;
#else #else
static const int debug = 0; static const int debug = 1;
#endif #endif
#ifdef __linux #ifdef __linux