[Refdb-cvs] CVS: refdb configure.in,1.49.2.10,1.49.2.11
Status: Beta
Brought to you by:
mhoenicka
|
From: Markus H. <mho...@us...> - 2005-02-10 20:18:46
|
Update of /cvsroot/refdb/refdb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29026 Modified Files: Tag: Release_0_9_5_stable configure.in Log Message: sqlite is now the default database engine Index: configure.in =================================================================== RCS file: /cvsroot/refdb/refdb/configure.in,v retrieving revision 1.49.2.10 retrieving revision 1.49.2.11 diff -u -U2 -r1.49.2.10 -r1.49.2.11 --- configure.in 4 Feb 2005 00:22:49 -0000 1.49.2.10 +++ configure.in 10 Feb 2005 20:18:29 -0000 1.49.2.11 @@ -83,18 +83,17 @@ dnl which database server are we supposed to use? AC_ARG_WITH(db_server, - [ --with-db-server=DBS Preconfigure for mysql (default), pgsql, or sqlite], + [ --with-db-server=DBS Preconfigure for sqlite (default), pgsql, or mysql], [if test $withval = "pgsql" || test $withval = "PGSQL"; then db_server=pgsql dbs_port=5432 -elif test $withval = "sqlite" || test $withval = "SQLITE"; then -db_server=sqlite -else +elif test $withval = "mysql" || test $withval = "MYSQL"; then db_server=mysql dbs_port=3306 +else +db_server=sqlite fi echo "Configuration files will assume "$withval" as database engine"], - [db_server="mysql" -dbs_port=3306 -echo "Configuration files will assume mysql as database engine"], + [db_server="sqlite" +echo "Configuration files will assume sqlite as database engine"], ]) |