[Refdb-cvs] CVS: refdb configure.in,1.49.2.12,1.49.2.13
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2005-04-15 22:33:36
|
Update of /cvsroot/refdb/refdb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27404 Modified Files: Tag: Release_0_9_5_stable configure.in Log Message: made db_dir a config option Index: configure.in =================================================================== RCS file: /cvsroot/refdb/refdb/configure.in,v retrieving revision 1.49.2.12 retrieving revision 1.49.2.13 diff -u -U2 -r1.49.2.12 -r1.49.2.13 --- configure.in 29 Mar 2005 20:48:57 -0000 1.49.2.12 +++ configure.in 15 Apr 2005 22:33:20 -0000 1.49.2.13 @@ -98,7 +98,15 @@ ]) +dnl which directory will hold the databases? This does not only pertain +dnl to SQLite, as the directory also holds the version file +AC_ARG_WITH(db_dir, + [ --with-db-dir=PATH Directory for database files], + [db_dir=$withval], + [db_dir="\$(pkgdatadir)/db"], +]) + dnl maintainers may need the trang jar AC_ARG_WITH(trang_jar, - [ --with-trang-jar=PATH specify the full path to trang], + [ --with-trang-jar=PATH specify the full path to trang], [trang_cmd="java -jar "$withval], [trang_cmd="cp"]) @@ -281,4 +289,5 @@ AC_SUBST(main_db) AC_SUBST(dbs_port) +AC_SUBST(db_dir) AC_SUBST(ULLSPEC) AC_SUBST(psarg) |