aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-gnorba-check.m4
diff options
context:
space:
mode:
authorFatih Demir <kabalak@src.gnome.org>2000-02-13 18:35:30 +0800
committerFatih Demir <kabalak@src.gnome.org>2000-02-13 18:35:30 +0800
commit61657f8452b1c1b2829610af9d0efd30076c1798 (patch)
tree6ec1afa61845b6cdec2a89e30c34923ce9e3e859 /macros/gnome-gnorba-check.m4
parente07a05c550c1382031b7e57cf39765bb12165b85 (diff)
downloadgsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.gz
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.bz2
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.lz
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.xz
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.tar.zst
gsoc2013-evolution-61657f8452b1c1b2829610af9d0efd30076c1798.zip
removed gtranslator for re-checkin
svn path=/trunk/; revision=1746
Diffstat (limited to 'macros/gnome-gnorba-check.m4')
-rw-r--r--macros/gnome-gnorba-check.m435
1 files changed, 0 insertions, 35 deletions
diff --git a/macros/gnome-gnorba-check.m4 b/macros/gnome-gnorba-check.m4
deleted file mode 100644
index dbac0a6cf7..0000000000
--- a/macros/gnome-gnorba-check.m4
+++ /dev/null
@@ -1,35 +0,0 @@
-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_CACHE_CHECK([for gnorba libraries],gnome_cv_gnorba_found,[
- gnome_cv_gnorba_found=no
- if test x$gnome_cv_orbit_found = xyes; then
- GNORBA_CFLAGS="`gnome-config --cflags gnorba gnomeui`"
- GNORBA_LIBS="`gnome-config --libs gnorba gnomeui`"
- if test -n "$GNORBA_LIBS"; then
- gnome_cv_gnorba_found=yes
- fi
- fi
- ])
- AM_CONDITIONAL(HAVE_GNORBA, test x$gnome_cv_gnorba_found = xyes)
- if test x$gnome_cv_orbit_found = xyes; then
- $1
- GNORBA_CFLAGS="`gnome-config --cflags gnorba gnomeui`"
- GNORBA_LIBS="`gnome-config --libs gnorba gnomeui`"
- AC_SUBST(GNORBA_CFLAGS)
- AC_SUBST(GNORBA_LIBS)
- else
- if test x$2 = xfailure; then
- AC_MSG_ERROR(gnorba library not installed or installation problem)
- fi
- fi
-])
-
-AC_DEFUN([GNOME_GNORBA_CHECK], [
- GNOME_GNORBA_HOOK([],failure)
-])