diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1999-03-30 17:24:31 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1999-03-30 17:24:31 -0500 |
commit | 327b7c16889c9d95ec076d695c970da11dc32a2b (patch) | |
tree | 91a9c864c60dfff69efe63d4cca7aab0b4754d6d /configure.in | |
parent | 79de405977ac0d7820576b353dde07ce09cedba9 (diff) | |
download | lynx-snapshots-327b7c16889c9d95ec076d695c970da11dc32a2b.tar.gz |
snapshot of project "lynx", label v2-8-2dev_21
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 57300f45..df98b507 100644 --- a/configure.in +++ b/configure.in @@ -181,6 +181,7 @@ CF_ARG_DISABLE(full-paths, [with_full_paths=no], [with_full_paths=yes]) AC_MSG_RESULT($with_full_paths) +test $with_full_paths = no && AC_DEFINE(USE_EXECVP) CF_DEFINE_PROG(system mailer, SYSTEM_MAIL, /usr/mmdf/bin/submit \ @@ -761,7 +762,7 @@ fi AC_MSG_CHECKING(if you want to exclude FINGER code) CF_ARG_DISABLE(finger, -[ --disable-finger disable FINGER logic], +[ --disable-finger disable FINGER logic], [use_finger=yes], [use_finger=no]) AC_MSG_RESULT($use_finger) @@ -769,7 +770,7 @@ test $use_finger != "no" && AC_DEFINE(DISABLE_FINGER) AC_MSG_CHECKING(if you want to exclude GOPHER code) CF_ARG_DISABLE(gopher, -[ --disable-gopher disable GOPHER logic], +[ --disable-gopher disable GOPHER logic], [use_gopher=yes], [use_gopher=no]) AC_MSG_RESULT($use_gopher) @@ -777,12 +778,20 @@ test $use_gopher != "no" && AC_DEFINE(DISABLE_GOPHER) AC_MSG_CHECKING(if you want to exclude NEWS code) CF_ARG_DISABLE(news, -[ --disable-news disable NEWS logic], +[ --disable-news disable NEWS logic], [use_news=yes], [use_news=no]) AC_MSG_RESULT($use_news) test $use_news != "no" && AC_DEFINE(DISABLE_NEWS) +AC_MSG_CHECKING(if you want to exclude FTP code) +CF_ARG_DISABLE(ftp, +[ --disable-ftp disable FTP logic], + [use_ftp=yes], + [use_ftp=no]) +AC_MSG_RESULT($use_ftp) +test $use_ftp != "no" && AC_DEFINE(DISABLE_FTP) + dnl -------------------------------------------------------------------------- dnl DirEd (directory-editor) options dnl -------------------------------------------------------------------------- |