diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-05-22 21:59:54 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-05-22 21:59:54 +0000 |
commit | 8cc16c9d9e0668931fecdb4a8f4d41559a8e2584 (patch) | |
tree | d058f97c4ab47be37d8db8e6f3936dbf2967485c /configure.in | |
parent | eaa13998126d1cf23e2a42969bb5b8bb149b355a (diff) | |
download | strongswan-8cc16c9d9e0668931fecdb4a8f4d41559a8e2584.tar.bz2 strongswan-8cc16c9d9e0668931fecdb4a8f4d41559a8e2584.tar.xz |
fixed the strongswan.conf path
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 3d1263fc7..4c5c5b645 100644 --- a/configure.in +++ b/configure.in @@ -48,15 +48,15 @@ AC_ARG_WITH( AC_ARG_WITH( [resolv-conf], AS_HELP_STRING([--with-resolv-conf=file],[set the file to store DNS server information other than "sysconfdir/resolv.conf"]), - [AC_DEFINE_UNQUOTED(RESOLV_CONF, "$withval")], - [AC_DEFINE_UNQUOTED(RESOLV_CONF, "${sysconfdir}/resolv.conf")] + [AC_SUBST(resolv_conf, "$withval")], + [AC_SUBST(resolv_conf, "${sysconfdir}/resolv.conf")] ) AC_ARG_WITH( [strongswan-conf], AS_HELP_STRING([--with-strongswan-conf=file],[strongswan.conf file other than "sysconfdir/strongswan.conf"]), - [AC_DEFINE_UNQUOTED(STRONGSWAN_CONF, "$withval")], - [AC_DEFINE_UNQUOTED(STRONGSWAN_CONF, "${sysconfdir}/strongswan.conf")] + [AC_SUBST(strongswan_conf, "$withval")], + [AC_SUBST(strongswan_conf, "${sysconfdir}/strongswan.conf")] ) AC_ARG_WITH( |