diff options
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,7 @@ 2001-06-01 Robert James Kaes <rjkaes@flarenet.com> + * configure.in: Fixed a problem when using the --with-port= config + * src/tinyproxy.c (main): Change the logging level from LOG_EMERG (which doesn't exist anymore) to LOG_CRIT. diff --git a/configure.in b/configure.in index 0b1f09f..63b9a88 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $Id: configure.in,v 1.8 2001-06-02 02:12:47 rjkaes Exp $ +dnl $Id: configure.in,v 1.9 2001-06-02 03:33:17 rjkaes Exp $ AC_INIT() AM_INIT_AUTOMAKE(tinyproxy,1.4.0pre4) @@ -62,7 +62,7 @@ AC_ARG_WITH(log-file, [ --with-log-file=FILE Default logfile name], AC_DEFINE_UNQUOTED(DEFAULT_LOG, "$withval")) AC_ARG_WITH(port, [ --with-port=PORT Default server port], - AC_DEFINE_UNQUOTED(DEFAULT_PORT, "$withval")) + AC_DEFINE_UNQUOTED(DEFAULT_PORT, $withval)) AC_ARG_WITH(user, [ --with-user=USER Default user], AC_DEFINE_UNQUOTED(DEFAULT_USER, "$withval")) |