summaryrefslogtreecommitdiff
path: root/config
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 /config
parent164717b336e4e133390e4811cfaee4b9e50e058a (diff)
downloadtinyproxy-118f4fd9dd78f9360d5baf4d7a2a798ccdf1df02.tar.gz
tinyproxy-118f4fd9dd78f9360d5baf4d7a2a798ccdf1df02.zip
Fixed a problem with --with-port= configuration option.
Diffstat (limited to '')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
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"))