Make the default TEMP_STORE=1 (TEMP tables stored on disk) in the configure

script. (CVS 2748)

FossilOrigin-Name: 9753af53494a14f7300f92f3d94e4ceb55619529
This commit is contained in:
drh
2005-10-10 00:05:50 +00:00
parent ec7429ae27
commit 54414bb449
4 changed files with 23 additions and 14 deletions
Vendored
+8 -3
View File
@@ -1496,7 +1496,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# The following RCS revision string applies to configure.in
# $Revision: 1.33 $
# $Revision: 1.34 $
#########
# Programs needed
@@ -19530,7 +19530,7 @@ if test "${enable_tempstore+set}" = set; then
enableval="$enable_tempstore"
else
enable_tempstore=yes
enable_tempstore=no
fi;
echo "$as_me:$LINENO: checking whether to use an in-ram database for temporary tables" >&5
echo $ECHO_N "checking whether to use an in-ram database for temporary tables... $ECHO_C" >&6
@@ -19548,10 +19548,15 @@ echo "${ECHO_T}no" >&6
always )
TEMP_STORE=3
echo "$as_me:$LINENO: result: always" >&5
echo "${ECHO_T}always" >&6
;;
yes )
TEMP_STORE=3
echo "$as_me:$LINENO: result: always" >&5
echo "${ECHO_T}always" >&6
;;
* )
TEMP_STORE=2
TEMP_STORE=1
echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6
;;