diff options
author | ivan <ivan> | 2009-12-18 00:41:34 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-12-18 00:41:34 +0000 |
commit | 40a7b3dc653e099f7bd0bd762b649b04c4432db2 (patch) | |
tree | f818105b1c8b13d709af4e251ee3213c5ba6773d /rt/configure.ac | |
parent | 8d0665daac0c4deea67bf39bf4a13a9eaed51735 (diff) | |
parent | 2dfda73eeb3eae2d4f894099754794ef07d060dd (diff) |
This commit was generated by cvs2svn to compensate for changes in r8593,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'rt/configure.ac')
-rw-r--r-- | rt/configure.ac | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/rt/configure.ac b/rt/configure.ac index 2a3271de4..209744dc2 100644 --- a/rt/configure.ac +++ b/rt/configure.ac @@ -3,11 +3,11 @@ dnl dnl Process this file with autoconf to produce a configure script dnl dnl Embed in generated ./configure script the following CVS info: -AC_REVISION($Revision: 1.1.1.9 $)dnl +AC_REVISION($Revision: 1.1.1.10 $)dnl dnl Setup autoconf AC_PREREQ(2.53) -AC_INIT(RT, [3.6.6], [rt-bugs@bestpractical.com]) +AC_INIT(RT, [3.6.10], [rt-bugs@bestpractical.com]) AC_CONFIG_SRCDIR([lib/RT.pm.in]) dnl Extract RT version number components @@ -145,11 +145,16 @@ AC_ARG_WITH(db-rt-host, AC_SUBST(DB_RT_HOST) dnl DB_DATABASE_ADMIN +if test "$DB_TYPE" = "Pg" ; then + DB_DBA="postgres" +else + DB_DBA="root" +fi AC_ARG_WITH(db-dba, AC_HELP_STRING([--with-db-dba=DBA], - [name of database administrator (default: root)]), + [name of database administrator (default: root or postgres)]), DB_DBA=$withval, - DB_DBA=root) + DB_DBA="$DB_DBA") AC_SUBST(DB_DBA) dnl DB_DATABASE |