diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2008-02-10 23:30:04 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2008-02-10 23:30:04 -0500 |
commit | acdfec8f90ac4aa21cfc20b6b7ad3ecb7e56ea90 (patch) | |
tree | 86c9e3563afd079f3dde28d94be992c75627c8fa /configure.in | |
parent | 92e120361baf8d55566015fe7bf09ac91f06a6e6 (diff) | |
download | lynx-snapshots-acdfec8f90ac4aa21cfc20b6b7ad3ecb7e56ea90.tar.gz |
snapshot of project "lynx", label v2-8-7dev_c-pbm
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 8014c750..e1148b0b 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $LynxId: configure.in,v 1.160 2007/08/03 00:21:48 tom Exp $ +dnl $LynxId: configure.in,v 1.161 2008/02/10 20:07:42 tom Exp $ dnl dnl Process this file with autoconf to produce a configure script. dnl @@ -750,6 +750,8 @@ CF_SYS_ERRLIST CF_UTMP CF_CHECK_EXTERN_DATA(h_errno,int) +AC_SUBST(EXTRA_OBJS) + dnl -------------------------------------------------------------------------- dnl Experimental options that don't need to test system features dnl -------------------------------------------------------------------------- @@ -871,6 +873,15 @@ AC_MSG_RESULT($use_nested_tables) test $use_nested_tables != no && AC_DEFINE(EXP_NESTED_TABLES) dnl -------------------------------------------------------------------------- +AC_MSG_CHECKING(if progress-bar code should be used) +CF_ARG_ENABLE(progressbar, +[ --enable-progressbar use experimental progress-bar], + [use_progressbar=$enableval], + [use_progressbar=no]) +AC_MSG_RESULT($use_progressbar) +test $use_progressbar != no && AC_DEFINE(USE_PROGRESSBAR) + +dnl -------------------------------------------------------------------------- AC_MSG_CHECKING(if scrollbar code should be used) CF_ARG_ENABLE(scrollbar, [ --enable-scrollbar use experimental scrollbar, with mouse], @@ -879,6 +890,19 @@ CF_ARG_ENABLE(scrollbar, AC_MSG_RESULT($use_scrollbar) dnl -------------------------------------------------------------------------- +AC_MSG_CHECKING(if session-caching code should be used) +CF_ARG_ENABLE(session-cache, +[ --enable-session-cache use experimental session-caching code], + [use_session_cache=$enableval], + [use_session_cache=no]) +AC_MSG_RESULT($use_session_cache) +if test $use_session_cache != no ; then + AC_DEFINE(USE_CACHEJAR) + AC_DEFINE(USE_SESSIONS) + EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" +fi + +dnl -------------------------------------------------------------------------- dnl Miscellaneous options that don't need to test system features dnl -------------------------------------------------------------------------- @@ -966,8 +990,6 @@ CF_ARG_DISABLE(source-cache, AC_MSG_RESULT($use_source_cache) test $use_source_cache != no && AC_DEFINE(USE_SOURCE_CACHE) -AC_SUBST(EXTRA_OBJS) - dnl -------------------------------------------------------------------------- AC_MSG_CHECKING(if you want to use external commands) CF_ARG_ENABLE(externs, |