From 61e3a57b8458c17edfcd2f536203fc25cf109461 Mon Sep 17 00:00:00 2001 From: David Hampton Date: Fri, 24 Mar 2006 22:14:00 +0000 Subject: [PATCH] List the optional components that will be compiled in the summary at the end of the configure run. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13696 57a11ea4-9604-0410-9ed3-97b8803252fd --- configure.in | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/configure.in b/configure.in index 92aa8b9247..af7f71fa25 100644 --- a/configure.in +++ b/configure.in @@ -2282,11 +2282,26 @@ AC_OUTPUT output_qof_prefix=`eval eval eval echo $QOF_PREFIX` output_qof_lib_dir=`eval eval eval echo $QOF_LIB_DIR` output_qof_xml_dir=`eval eval eval echo $QOF_XML_DIR` + +if test x${SQL_DIR} != x; then +components="$components sql" +fi +if test x${OFX_DIR} != x; then +components="$components ofx" +fi +if test x${HBCI_DIR} != x; then +components="$components hbci" +fi +if test x${MT940_DIR} != x; then +components="$components mt940" +fi + AC_MSG_RESULT([ Options detected/selected ------------------------- gnucash version ...... : $VERSION Build for host ....... : $host + Optional components....:$components Extra Warnings ....... : $warnFLAGS CPPFLAGS ............. : $CPPFLAGS CFLAGS ............... : $CFLAGS