r14518 - gnucash/trunk - r12872 at cliodev: warlord | 2006-07-16 12:17:51 -0400

Derek Atkins warlord at cvs.gnucash.org
Sun Jul 16 12:17:59 EDT 2006


Author: warlord
Date: 2006-07-16 12:17:58 -0400 (Sun, 16 Jul 2006)
New Revision: 14518
Trac: http://svn.gnucash.org/trac/changeset/14518

Modified:
   gnucash/trunk/
   gnucash/trunk/ChangeLog
   gnucash/trunk/configure.in
Log:
 r12872 at cliodev:  warlord | 2006-07-16 12:17:51 -0400
 check for (g-wrap) module (#347680)
 Apparently some distributions ship g-wrap-config separately
 from the g-wrap.scm guile module.
 BP
 



Property changes on: gnucash/trunk
___________________________________________________________________
Name: svk:merge
   - d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/trunk:12868
   + d2ab10a8-8a95-4986-baff-8d511d9f15b2:/local/gnucash/trunk:12872

Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2006-07-16 07:45:27 UTC (rev 14517)
+++ gnucash/trunk/ChangeLog	2006-07-16 16:17:58 UTC (rev 14518)
@@ -1,3 +1,10 @@
+2006-07-16  Derek Atkins  <derek at ihtfp.com>
+
+	* configure.in:
+	  check for (g-wrap) module (#347680)
+	  Apparently some distributions ship g-wrap-config separately
+	  from the g-wrap.scm guile module.
+
 2006-07-16  Andreas Köhler  <andi5.py at gmx.net>
 
 	* src/gnome-utils/gnc-main-window.c: Do not move windows on

Modified: gnucash/trunk/configure.in
===================================================================
--- gnucash/trunk/configure.in	2006-07-16 07:45:27 UTC (rev 14517)
+++ gnucash/trunk/configure.in	2006-07-16 16:17:58 UTC (rev 14518)
@@ -313,6 +313,22 @@
 
 AS_SCRUB_INCLUDE(CFLAGS)
 
+AC_MSG_CHECKING([for (g-wrap) 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))" > /dev/null 2>&1
+then
+  AC_MSG_RESULT(yes)
+else
+  AC_MSG_ERROR([
+
+   Cannot find the (g-wrap) guile module.
+   Are you sure you have g-wrap compile-time environment installed?
+   See http://bugzilla.gnome.org/show_bug.cgi?id=347680
+
+])
+fi
+
 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 \
@@ -324,6 +340,7 @@
 
    Cannot find the (g-wrap gw-glib-spec) guile module.
    Are you sure you have g-wrap installed with glib support?
+   See http://bugzilla.gnome.org/show_bug.cgi?id=347404
 
 ])
 fi



More information about the gnucash-changes mailing list