Fixed a problem with --with-port= configuration option.

This commit is contained in:
Robert James Kaes 2001-06-02 03:33:17 +00:00
parent 164717b336
commit 118f4fd9dd
2 changed files with 4 additions and 2 deletions

View File

@ -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.

View File

@ -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"))