diff options
author | Bruce Momjian | 2006-05-30 13:52:25 +0000 |
---|---|---|
committer | Bruce Momjian | 2006-05-30 13:52:25 +0000 |
commit | 382808612cb15bd90b53b665602c85bcdd3ab9e6 (patch) | |
tree | d64ed598f15a9419662c24b25af54e0566dae925 /configure.in | |
parent | 4d06e86d041b48a2ecd4f45e2ecbbcf69f3454c0 (diff) |
Emit warnings for unknown configure options.
Martijn van Oosterhout
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.in b/configure.in index a6162e9235..ae24a84b92 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $PostgreSQL: pgsql/configure.in,v 1.464 2006/04/29 20:47:29 tgl Exp $ +dnl $PostgreSQL: pgsql/configure.in,v 1.465 2006/05/30 13:52:24 momjian Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -1426,5 +1426,11 @@ AC_CONFIG_HEADERS([src/include/pg_config.h], echo >src/include/stamp-h ]) +# +# Warn about unknown options +# + +PGAC_CHECK_ARGS + AC_OUTPUT |