aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-pilot.m4
diff options
context:
space:
mode:
authorJulian Missig <julianm@src.gnome.org>2000-05-22 05:36:20 +0800
committerJulian Missig <julianm@src.gnome.org>2000-05-22 05:36:20 +0800
commit857af1bfa7c6ee4da8bd3a196932f76106923580 (patch)
tree95faf90e3a023e737f3e40e82e32a0b952631fa2 /macros/gnome-pilot.m4
parenta677dc02e05deadbe3c6d385c9cd87eb34a50095 (diff)
downloadgsoc2013-evolution-857af1bfa7c6ee4da8bd3a196932f76106923580.tar
gsoc2013-evolution-857af1bfa7c6ee4da8bd3a196932f76106923580.tar.gz
gsoc2013-evolution-857af1bfa7c6ee4da8bd3a196932f76106923580.tar.bz2
gsoc2013-evolution-857af1bfa7c6ee4da8bd3a196932f76106923580.tar.lz
gsoc2013-evolution-857af1bfa7c6ee4da8bd3a196932f76106923580.tar.xz
gsoc2013-evolution-857af1bfa7c6ee4da8bd3a196932f76106923580.tar.zst
gsoc2013-evolution-857af1bfa7c6ee4da8bd3a196932f76106923580.zip
Gabber now has *working* i18n!
svn path=/trunk/; revision=3148
Diffstat (limited to 'macros/gnome-pilot.m4')
-rw-r--r--macros/gnome-pilot.m418
1 files changed, 6 insertions, 12 deletions
diff --git a/macros/gnome-pilot.m4 b/macros/gnome-pilot.m4
index 39f73cca9e..16e081a366 100644
--- a/macros/gnome-pilot.m4
+++ b/macros/gnome-pilot.m4
@@ -97,29 +97,23 @@ AC_DEFUN([PILOT_LINK_CHECK],[
])
AC_DEFUN([GNOME_PILOT_HOOK],[
- AC_PATH_PROG(GNOME_CONFIG,gnome-config,no)
+ AC_PATH_PROG(GNOME_PILOT_CONFIG,gnome-pilot-config,no)
AC_CACHE_CHECK([for gnome-pilot environment],gnome_cv_pilot_found,[
- if test "x$GNOME_CONFIG" = "xno"; then
+ if test x$GNOME_PILOT_CONFIG = xno; then
gnome_cv_pilot_found=no
else
- # gnome-config doesn't return a useful error status,
- # so we check if it outputs anything to stderr
- if test "x`$GNOME_CONFIG gpilot 2>&1 > /dev/null`" = "x"; then
- gnome_cv_pilot_found=yes
- else
- gnome_cv_pilot_found=no
- fi
+ gnome_cv_pilot_found=yes
fi
])
AM_CONDITIONAL(HAVE_GNOME_PILOT,test x$gnome_cv_pilot_found = xyes)
if test x$gnome_cv_pilot_found = xyes; then
PILOT_LINK_CHECK($1)
- GNOME_PILOT_CFLAGS=`gnome-config --cflags gpilot`
- GNOME_PILOT_LIBS=`gnome-config --libs gpilot`
+ GNOME_PILOT_CFLAGS=`gnome-pilot-config --cflags client conduitmgmt`
+ GNOME_PILOT_LIBS=`gnome-pilot-config --libs client conduitmgmt`
$2
else
if test x$3 = xfailure; then
- AC_MSG_ERROR(gnome-pilot development package not installed or installation problem)
+ AC_MSG_ERROR(Gnome-pilot not installed or installation problem)
fi
fi
])