r14511 - gnucash/branches/2.0 - check for (g-wrap gw-glib-spec) and bomb out if not found (#347404).

Derek Atkins warlord at cvs.gnucash.org
Sat Jul 15 13:07:41 EDT 2006


Author: warlord
Date: 2006-07-15 13:07:40 -0400 (Sat, 15 Jul 2006)
New Revision: 14511
Trac: http://svn.gnucash.org/trac/changeset/14511

Modified:
   gnucash/branches/2.0/
   gnucash/branches/2.0/ChangeLog
   gnucash/branches/2.0/configure.in
Log:
check for (g-wrap gw-glib-spec) and bomb out if not found (#347404).

Merge r14484 and r14501



Property changes on: gnucash/branches/2.0
___________________________________________________________________
Name: svk:merge
   - d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/branches/2.0:12857
   + d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/branches/2.0:12860

Modified: gnucash/branches/2.0/ChangeLog
===================================================================
--- gnucash/branches/2.0/ChangeLog	2006-07-15 16:19:21 UTC (rev 14510)
+++ gnucash/branches/2.0/ChangeLog	2006-07-15 17:07:40 UTC (rev 14511)
@@ -5,6 +5,11 @@
 	to dangling points by deleting all pointers after calling
 	AB_Banking_Fini.
 
+2006-07-14  Derek Atkins  <derek at ihtfp.com>
+
+	* configure.in:
+	  check for (g-wrap gw-glib-spec) instead of (g-wrap) #347404.
+
 2006-07-14  Andreas Köhler  <andi5.py at gmx.net>
 
 	* src/gnome/schemas/Makefile.am: Add

Modified: gnucash/branches/2.0/configure.in
===================================================================
--- gnucash/branches/2.0/configure.in	2006-07-15 16:19:21 UTC (rev 14510)
+++ gnucash/branches/2.0/configure.in	2006-07-15 17:07:40 UTC (rev 14511)
@@ -313,6 +313,21 @@
 
 AS_SCRUB_INCLUDE(CFLAGS)
 
+AC_MSG_CHECKING([for (g-wrap gw-glib-spec) guile module])
+if LD_LIBRARY_PATH=$G_WRAP_LIB_DIR:$LD_LIBRARY_PATH \
+  GUILE_LOAD_PATH=$G_WRAP_MODULE_DIR \
+        ${GUILE} -c "(use-modules (g-wrap gw-glib-spec))" > /dev/null 2>&1
+then
+  AC_MSG_RESULT(yes)
+else
+  AC_MSG_ERROR([
+
+   Cannot find the (g-wrap gw-glib-spec) guile module.
+   Are you sure you have g-wrap installed with glib support?
+
+])
+fi
+
 AC_MSG_CHECKING([for (g-wrap gw-standard) guile module])
 if LD_LIBRARY_PATH=$G_WRAP_LIB_DIR:$LD_LIBRARY_PATH \
   GUILE_LOAD_PATH=$G_WRAP_MODULE_DIR \



More information about the gnucash-changes mailing list