aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-gnorba-check.m4
diff options
context:
space:
mode:
authorAndrew T. Veliath <andrewv@usa.net>1998-11-13 07:58:59 +0800
committerAndrew T. Veliath <andrewtv@src.gnome.org>1998-11-13 07:58:59 +0800
commit3c70d2ff66fcf5aa7f18deb4b19a9cf4aaf78937 (patch)
treefaa4db9d494df142696ecb0666c33aa71a83cc16 /macros/gnome-gnorba-check.m4
parent317f6a9bccdbd0e75ad645dc0ee0731b5f96cbd8 (diff)
downloadgsoc2013-evolution-3c70d2ff66fcf5aa7f18deb4b19a9cf4aaf78937.tar
gsoc2013-evolution-3c70d2ff66fcf5aa7f18deb4b19a9cf4aaf78937.tar.gz
gsoc2013-evolution-3c70d2ff66fcf5aa7f18deb4b19a9cf4aaf78937.tar.bz2
gsoc2013-evolution-3c70d2ff66fcf5aa7f18deb4b19a9cf4aaf78937.tar.lz
gsoc2013-evolution-3c70d2ff66fcf5aa7f18deb4b19a9cf4aaf78937.tar.xz
gsoc2013-evolution-3c70d2ff66fcf5aa7f18deb4b19a9cf4aaf78937.tar.zst
gsoc2013-evolution-3c70d2ff66fcf5aa7f18deb4b19a9cf4aaf78937.zip
Add GNOME_GNORBA_CHECK if gnome-config is found. New GNOMEGNORBA_LIBS
1998-11-12 Andrew T. Veliath <andrewv@usa.net> * gnome.m4: (GNOME_INIT_HOOK): Add GNOME_GNORBA_CHECK if gnome-config is found. New GNOMEGNORBA_LIBS library variable (GNOMEGNORBA_LIBS is a superset of GNOMEUI_LIBS). Update GNOME_LIBDIR and GNOME_INCLUDEDIR to to include the required Gnorba info, if it is in a different location. * Makefile.am (MACROS): Add gnome-gnorba-check.m4 to Makefile. * gnome-gnorba-check.m4: New file. svn path=/trunk/; revision=470
Diffstat (limited to 'macros/gnome-gnorba-check.m4')
-rw-r--r--macros/gnome-gnorba-check.m431
1 files changed, 31 insertions, 0 deletions
diff --git a/macros/gnome-gnorba-check.m4 b/macros/gnome-gnorba-check.m4
new file mode 100644
index 0000000000..bb3d9b7125
--- /dev/null
+++ b/macros/gnome-gnorba-check.m4
@@ -0,0 +1,31 @@
+dnl
+dnl GNOME_GNORBA_HOOK (script-if-gnorba-found, failflag)
+dnl
+dnl if failflag is "failure" it aborts if gnorba is not found.
+dnl
+
+AC_DEFUN([GNOME_GNORBA_HOOK],[
+ GNOME_ORBIT_HOOK([],$2)
+ AC_MSG_CHECKING(for gnorba libraries)
+ GNORBA_CFLAGS=
+ GNORBA_LIBS=
+ if test -n "$ORBIT_LIBS"; then
+ $1
+ GNORBA_CFLAGS="`gnome-config --cflags gnorba gnomeui`"
+ GNORBA_LIBS="`gnome-config --libs gnorba gnomeui`"
+ fi
+ if test -n "$GNORBA_LIBS"; then
+ AC_SUBST(GNORBA_CFLAGS)
+ AC_SUBST(GNORBA_LIBS)
+ AC_MSG_RESULT(yes)
+ else
+ if test x$2 = xfailure; then
+ AC_MSG_ERROR(Could not find gnorba libraries)
+ fi
+ AC_MSG_RESULT(no)
+ fi
+])
+
+AC_DEFUN([GNOME_GNORBA_CHECK], [
+ GNOME_GNORBA_HOOK([],failure)
+])