[Refdb-cvs] CVS: refdb configure.in,1.49.2.5,1.49.2.6
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2004-10-25 21:13:26
|
Update of /cvsroot/refdb/refdb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28925 Modified Files: Tag: Release_0_9_5_stable configure.in Log Message: added an option to specify the main database Index: configure.in =================================================================== RCS file: /cvsroot/refdb/refdb/configure.in,v retrieving revision 1.49.2.5 retrieving revision 1.49.2.6 diff -u -U2 -r1.49.2.5 -r1.49.2.6 --- configure.in 17 Oct 2004 00:32:17 -0000 1.49.2.5 +++ configure.in 25 Oct 2004 21:13:16 -0000 1.49.2.6 @@ -75,4 +75,10 @@ [log_dir="/var/log"]) +dnl the main database +AC_ARG_WITH(main_db, + [ --with-main-db=name The name of the RefDB system database], + [main_db=$withval], + [main_db="refdb"]) + dnl which database server are we supposed to use? AC_ARG_WITH(db_server, @@ -268,4 +274,5 @@ AC_SUBST(var_dir) AC_SUBST(db_server) +AC_SUBST(main_db) AC_SUBST(dbs_port) AC_SUBST(ULLSPEC) |