summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2000-09-03 11:30:58 +0000
committerGeorge Lebl <jirka@src.gnome.org>2000-09-03 11:30:58 +0000
commit6ed4c8982f860dae4751e005e8f843c9c27ab6fa (patch)
treec9f293f70b489083deb225ce1b3ff89cdf95c0fa
parentea16ac538fb76189a66d1ebc7d788595b0bcf540 (diff)
downloadgnome-desktop-6ed4c8982f860dae4751e005e8f843c9c27ab6fa.tar.gz
Add an explicit check for capplet module (finally)
Sun Sep 03 06:31:46 2000 George Lebl <jirka@5z.com> * configure.in: Add an explicit check for capplet module (finally)
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog-200202124
-rw-r--r--configure.in24
3 files changed, 32 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3225f53e..a2810560 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Sep 03 06:31:46 2000 George Lebl <jirka@5z.com>
+
+ * configure.in: Add an explicit check for capplet module (finally)
+
2000-08-30 Pablo Saratxaga <pablo@mandrakesoft.com>
* applets/applet-dirs/*,desktop-links/*: added various Greek strings
diff --git a/ChangeLog-20020212 b/ChangeLog-20020212
index 3225f53e..a2810560 100644
--- a/ChangeLog-20020212
+++ b/ChangeLog-20020212
@@ -1,3 +1,7 @@
+Sun Sep 03 06:31:46 2000 George Lebl <jirka@5z.com>
+
+ * configure.in: Add an explicit check for capplet module (finally)
+
2000-08-30 Pablo Saratxaga <pablo@mandrakesoft.com>
* applets/applet-dirs/*,desktop-links/*: added various Greek strings
diff --git a/configure.in b/configure.in
index 1c475fa6..a1a539b8 100644
--- a/configure.in
+++ b/configure.in
@@ -12,6 +12,8 @@ dnl let applications configure for gnome
dnl
gnome_cv_use_gnome=yes
+
+
GNOME_INIT(capplet)
AC_ISC_POSIX
@@ -79,6 +81,28 @@ AC_SUBST(ORB_LIBS)
AC_SUBST(ORB_CFLAGS)
dnl
+dnl CApplet, Note that the libs and all that is set up in gnome_init,
+dnl but gnome_init is truly dumb and doesn't require it, so we need to
+dnl do a separate check
+dnl
+AC_MSG_CHECKING(for CApplet library)
+vers=`$GNOME_CONFIG --modversion capplet`
+case "x$vers" in
+ xcapplet-*)
+ AC_MSG_RESULT(found)
+ ;;
+ *)
+ AC_MSG_ERROR(Did not find CApplet library, you probably need to install control-center first)
+ ;;
+esac
+
+dnl
+dnl Configure Easter Egg
+dnl
+AC_MSG_CHECKING(for Configure Easter Egg version >= 3.14)
+AC_MSG_RESULT(found)
+
+dnl
dnl GdkPixBuf
dnl
AC_MSG_CHECKING(for GdkPixbuf library >= 0.7.0)