From 5c283311e03783e2404369ac1836b4b773b0424e Mon Sep 17 00:00:00 2001 From: Arturo Espinosa Date: Mon, 7 Sep 1998 20:04:40 +0000 Subject: [PATCH] New check macro for ORBit -mig svn path=/trunk/; revision=381 --- macros/gnome-orbit-check.m4 | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 macros/gnome-orbit-check.m4 diff --git a/macros/gnome-orbit-check.m4 b/macros/gnome-orbit-check.m4 new file mode 100644 index 0000000..d26b39b --- /dev/null +++ b/macros/gnome-orbit-check.m4 @@ -0,0 +1,21 @@ +dnl +dnl GNOME_ORBIT_HOOK (script-if-orbit-found, failflat) +dnl +dnl if failflag is "failure" it aborts if orbit is not found. +dnl + +AC_DEFUN([GNOME_ORBIT_HOOK],[ + AC_PATH_PROG(ORBIT_CONFIG,orbit-config,no) + if test x$ORBIT_CONFIG = xno; then + if test x$2 = failure; then + AC_MSG_ERROR(Could not find orbit-config) + fi + else + $1 + AC_DEFINE(HAVE_ORBIT) + fi +]) + +AC_DEFUN([GNOME_ORBIT_CHECK], [ + GNOME_ORBIT_HOOK([],failure) +]) -- 2.7.4