summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-06-02 03:33:17 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-06-02 03:33:17 +0000
commit118f4fd9dd78f9360d5baf4d7a2a798ccdf1df02 (patch)
tree3a3390c727d4e1707e716e68f79c6c290f5e4541
parent164717b336e4e133390e4811cfaee4b9e50e058a (diff)
downloadtinyproxy-118f4fd9dd78f9360d5baf4d7a2a798ccdf1df02.tar.gz
tinyproxy-118f4fd9dd78f9360d5baf4d7a2a798ccdf1df02.zip
Fixed a problem with --with-port= configuration option.
Diffstat (limited to '')
-rw-r--r--ChangeLog2
-rw-r--r--configure.in4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index da0d3b3..0d03934 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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"))