Author: dpage
Date: 2005-11-09 21:30:20 +0000 (Wed, 09 Nov 2005)
New Revision: 4719
Modified:
trunk/pgadmin3/acinclude.m4
trunk/pgadmin3/configure.ac
Log:
Move config summary to the end of the process so it doesn't get hidden by the list of makefiles
Modified: trunk/pgadmin3/acinclude.m4
===================================================================
--- trunk/pgadmin3/acinclude.m4 2005-11-09 19:55:53 UTC (rev 4718)
+++ trunk/pgadmin3/acinclude.m4 2005-11-09 21:30:20 UTC (rev 4719)
@@ -338,7 +338,7 @@
echo
echo "wxWidgets directory: $WX_HOME"
echo "wxWidgets wx-config binary: $WX_CONFIG"
- echo "wxWidgets version: $WX_VERSION"
+ echo "wxWidgets version: wxWidgets "`$WX_CONFIG --version --version=$WX_VERSION`
echo
if test "$BUILD_DEBUG" == yes
then
@@ -359,4 +359,8 @@
echo "Building a Mac OS X appbundle: No"
fi
echo
+
+ echo "pgAdmin configuration is now complete. You can now compile and"
+ echo "install pgAdmin using 'make; make install'."
+ echo
])
Modified: trunk/pgadmin3/configure.ac
===================================================================
--- trunk/pgadmin3/configure.ac 2005-11-09 19:55:53 UTC (rev 4718)
+++ trunk/pgadmin3/configure.ac 2005-11-09 21:30:20 UTC (rev 4719)
@@ -43,7 +43,6 @@
SETUP_WXWIDGETS
CLEANUP
-SUMMARY
AC_CONFIG_FILES([Makefile
i18n/Makefile
@@ -62,3 +61,5 @@
xtra/pgagent/Makefile
xtra/pgagent/pgaevent/Makefile])
AC_OUTPUT
+
+SUMMARY