[PATCH] Output configuration status after ./configure run. - Mailing list pgsql-hackers

From Priit Laes
Subject [PATCH] Output configuration status after ./configure run.
Date
Msg-id 1265784347.13505.16.camel@chi
Whole thread Raw
Responses Re: [PATCH] Output configuration status after ./configure run.
List pgsql-hackers
Hi!

This patch enables showing configure status at the end of ./configure
run and thus makes ./configure process a bit easier to follow (in the
sense of what features are actually enabled).

Päikest,
Priit
From c6ab747e581c7ebeb954b2ccb4dbd932e1a61de7 Mon Sep 17 00:00:00 2001
From: Priit Laes <plaes@plaes.org>
Date: Wed, 10 Feb 2010 08:14:43 +0200
Subject: [PATCH] Output configuration status after ./configure run.

---
 configure.in |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/configure.in b/configure.in
index 5a27d3a..8bf8f1d 100644
--- a/configure.in
+++ b/configure.in
@@ -1867,3 +1867,33 @@ AC_CONFIG_HEADERS([src/interfaces/ecpg/include/ecpg_config.h],
                   [echo >src/interfaces/ecpg/include/stamp-h])
 
 AC_OUTPUT
+
+echo "
+PostgreSQL was configured with the following options:
+
+    64-bit integer datetimes  : $enable_integer_datetimes
+    Table block size          : ${blocksize}kB
+    Table relation size       : ${segsize}GB
+    WAL block size            : ${wal_blocksize}kB
+
+    Profiling support         : $enable_profiling
+    Code Coverage support     : $enable_coverage
+    DTrace support            : $enable_dtrace
+
+    Perl (PL/Perl)            : $with_perl
+    Python (PL/Python)        : $with_python
+    Tcl (PL/Tcl)              : $with_tcl
+
+    GSSAPI support            : $with_gssapi
+    Kerberos 5 support        : $with_krb5 (srvname: $with_krb_srvnam)
+    PAM support               : $with_pam
+    LDAP support              : $with_ldap
+    Bonjour support           : $with_bonjour
+    OpenSSL support           : $with_openssl
+    Readline/Libedit support  : $with_readline/$with_libedit_preferred
+
+    OSSP UUID library support : $with_ossp_uuid
+    XML support (libXML2)     : $with_libxml
+    XSLT support              : $with_libxslt
+    zlib support              : $with_zlib
+"
-- 
1.6.6.1


pgsql-hackers by date:

Previous
From: Robert Haas
Date:
Subject: Re: Some belated patch review for "Buffers" explain analyze patch
Next
From: Aidan Van Dyk
Date:
Subject: Re: Re: [COMMITTERS] pgsql: Make standby server continuously retry restoring the next WAL