aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-09-24 05:08:07 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-09-24 05:08:07 +0800
commita76ba953ccdceb44411cbedd72de5bc769abb8b8 (patch)
treeeb28a5ecbd3b2fe48c6d337b5c6211395de138b9
parente48aee61c9646c7e4eaf2d5dc6f04fa5104c1e10 (diff)
downloadgsoc2013-evolution-a76ba953ccdceb44411cbedd72de5bc769abb8b8.tar
gsoc2013-evolution-a76ba953ccdceb44411cbedd72de5bc769abb8b8.tar.gz
gsoc2013-evolution-a76ba953ccdceb44411cbedd72de5bc769abb8b8.tar.bz2
gsoc2013-evolution-a76ba953ccdceb44411cbedd72de5bc769abb8b8.tar.lz
gsoc2013-evolution-a76ba953ccdceb44411cbedd72de5bc769abb8b8.tar.xz
gsoc2013-evolution-a76ba953ccdceb44411cbedd72de5bc769abb8b8.tar.zst
gsoc2013-evolution-a76ba953ccdceb44411cbedd72de5bc769abb8b8.zip
No longer need the X11 configure checks.
-rw-r--r--configure.ac54
-rw-r--r--e-util/e-dialog-utils.c4
2 files changed, 1 insertions, 57 deletions
diff --git a/configure.ac b/configure.ac
index 1edf01eadc..68a9df3e53 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1311,48 +1311,6 @@ dnl We use AC_SUBST_FILE because AC_SUBST won't deal with newlines
EVO_MARSHAL_RULE=$srcdir/marshal.mk
AC_SUBST_FILE(EVO_MARSHAL_RULE)
-dnl **************************
-dnl Check for X libs and -lX11
-dnl **************************
-
-PKG_CHECK_MODULES([X], [x11], [:], [
-dnl pkg-config modules not found (only present since X11R7 aka Xorg); use
-dnl old-style detection
-AC_PATH_XTRA
-dnl X found
-if test x$no_x != xyes ; then
- evolution_save_cflags="$CFLAGS"
- evolution_save_libs="$LIBS"
- CFLAGS="$X_CFLAGS"
- LIBS="$X_PRE_LIBS $X_LIBS $X_EXTRA_LIBS"
- AC_CHECK_LIB(X11, XFree, :, AC_MSG_ERROR([libX11 not found]))
- CFLAGS="$evolution_save_cflags"
- LIBS="$evolution_save_libs"
- X_LIBS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS"
-fi
-])
-
-dnl *************************
-dnl Check for the Gtk backend
-dnl if it's X11, we -lX11
-dnl *************************
-
-evolution_save_cflags="$CFLAGS"
-dnl pull in the CFLAGS to locate gdkconfig.h
-CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0`
-AC_COMPILE_IFELSE([
- #include <gdkconfig.h>
- int main(void){
- #ifndef GDK_WINDOWING_X11
- #error GDK_WINDOWING_X11 not defined
- #endif
- return 0;
- }],
- GDK_BACKEND_X11=yes,
- GDK_BACKEND_X11=no)
-
-CFLAGS="$evolution_save_cflags"
-
dnl *************************
dnl Orbit / Bonobo
dnl *************************
@@ -1466,17 +1424,6 @@ EVO_SET_COMPILE_FLAGS(CERT_UI, libedataserverui-$EDS_PACKAGE libglade-2.0 gthrea
AC_SUBST(CERT_UI_CFLAGS)
AC_SUBST(CERT_UI_LIBS)
-dnl ******************************
-dnl If Gtk/Gdk is built against X11, e-util uses some X11-specific code so link with X11.
-dnl ******************************
-if test "x$GDK_BACKEND_X11" = "xyes"; then
- E_UTIL_X11_CFLAGS="$X_CFLAGS"
- E_UTIL_X11_LIBS="$X_LIBS"
-else
- E_UTIL_X11_CFLAGS=""
- E_UTIL_X11_LIBS=""
-fi
-
dnl ************
dnl E_UTIL Flags
dnl ************
@@ -1736,6 +1683,7 @@ plugins_standard="$plugins_standard_always"
dist_plugins_standard="$plugins_standard audio-inline pst-import"
plugins_experimental_always="face external-editor hula-account-setup"
+
plugins_experimental="$plugins_experimental_always $TNEF_ATTACHMENTS"
dist_plugins_experimental="$plugins_experimental_always profiler tnef-attachments"
diff --git a/e-util/e-dialog-utils.c b/e-util/e-dialog-utils.c
index 9e434cde67..f16680ac28 100644
--- a/e-util/e-dialog-utils.c
+++ b/e-util/e-dialog-utils.c
@@ -31,10 +31,6 @@
#include <unistd.h>
#include <glib/gstdio.h>
-#ifdef GDK_WINDOWING_X11
-#include <gdk/gdkx.h>
-#endif
-
#include <gconf/gconf-client.h>
#include <glib/gi18n.h>