summaryrefslogtreecommitdiff
path: root/m4/ax_check_postgres_db.m4
diff options
context:
space:
mode:
authorOlivier Mehani <olivier.mehani@nicta.com.au>2012-08-16 16:09:02 +1000
committerPeter Simons <simons@cryp.to>2012-09-07 10:51:04 +0200
commite381c32954e6dc899d76d30c68fa9a3b9cf086f3 (patch)
tree168b1aebeee187c4988dd641be7198a065a47fb3 /m4/ax_check_postgres_db.m4
parent8d4fb7842889783f527e5be233c2bb0cdb3dbce3 (diff)
downloadautoconf-archive-e381c32954e6dc899d76d30c68fa9a3b9cf086f3.tar.gz
Use AS_HELP_STRING in ax_check_postgres_db.m4
Signed-off-by: Olivier Mehani <olivier.mehani@nicta.com.au>
Diffstat (limited to 'm4/ax_check_postgres_db.m4')
-rw-r--r--m4/ax_check_postgres_db.m49
1 files changed, 6 insertions, 3 deletions
diff --git a/m4/ax_check_postgres_db.m4 b/m4/ax_check_postgres_db.m4
index 5eba77e..9e21c8f 100644
--- a/m4/ax_check_postgres_db.m4
+++ b/m4/ax_check_postgres_db.m4
@@ -30,13 +30,16 @@ AU_ALIAS([CT_CHECK_POSTGRES_DB], [AX_CHECK_POSTGRES_DB])
AC_DEFUN([AX_CHECK_POSTGRES_DB], [
AC_ARG_WITH(pgsql,
- [ --with-pgsql=PREFIX Prefix of your PostgreSQL installation],
+ [AS_HELP_STRING([--with-pgsql[[=PREFIX]]],
+ [Prefix of your PostgreSQL installation @<:@PREFIX@:>@])],
[pg_prefix=$withval], [pg_prefix=])
AC_ARG_WITH(pgsql-inc,
- [ --with-pgsql-inc=PATH Path to the include directory of PostgreSQL],
+ [AS_HELP_STRING([--with-pgsql-inc=[[PATH]]],
+ [Path to the include directory of PostgreSQL @<:@INCLUDEDIR@:>@])],
[pg_inc=$withval], [pg_inc=])
AC_ARG_WITH(pgsql-lib,
- [ --with-pgsql-lib=PATH Path to the librarys of PostgreSQL],
+ [AS_HELP_STRING([--with-pgsql-lib=[[PATH]]],
+ [Path to the libraries of PostgreSQL @<:@LIBDIR@:>@])],
[pg_lib=$withval], [pg_lib=])