aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-04-27 02:21:54 +0800
committerDan Winship <danw@src.gnome.org>2001-04-27 02:21:54 +0800
commitd522b604df889e6abc792557f0232a77304ddb58 (patch)
treedb2697fccabe91b27a030bd0e83be41dc4037591
parent18af050c0507105544f5a83cd529a8b7a4264bdd (diff)
downloadgsoc2013-evolution-d522b604df889e6abc792557f0232a77304ddb58.tar
gsoc2013-evolution-d522b604df889e6abc792557f0232a77304ddb58.tar.gz
gsoc2013-evolution-d522b604df889e6abc792557f0232a77304ddb58.tar.bz2
gsoc2013-evolution-d522b604df889e6abc792557f0232a77304ddb58.tar.lz
gsoc2013-evolution-d522b604df889e6abc792557f0232a77304ddb58.tar.xz
gsoc2013-evolution-d522b604df889e6abc792557f0232a77304ddb58.tar.zst
gsoc2013-evolution-d522b604df889e6abc792557f0232a77304ddb58.zip
We no longer depend on libunicode.
* README: We no longer depend on libunicode. * configure.in: Remove check for libunicode. Remove unicode cflags and libs from all CFLAGS and LIBS variables. Add GAL_LIBS for things that need to depend on just gal (for gunicode). svn path=/trunk/; revision=9586
-rw-r--r--ChangeLog8
-rw-r--r--README2
-rw-r--r--configure.in30
3 files changed, 19 insertions, 21 deletions
diff --git a/ChangeLog b/ChangeLog
index c03b1e1ef8..840074d7c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2001-04-26 Dan Winship <danw@ximian.com>
+
+ * README: We no longer depend on libunicode.
+
+ * configure.in: Remove check for libunicode. Remove unicode cflags
+ and libs from all CFLAGS and LIBS variables. Add GAL_LIBS for
+ things that need to depend on just gal (for gunicode).
+
2001-04-24 Dan Winship <danw@ximian.com>
* configure.in: Bump up the gal requirement
diff --git a/README b/README
index d385f0b97c..67ac311fb2 100644
--- a/README
+++ b/README
@@ -141,8 +141,6 @@ and -devel packages for each library.
*** either gnome-libs or evolution for the Makefiles to work
*** properly.
- - libunicode - 0.4.gnome (*)
-
- gal (GNOME Application Library) - 0.5.99.5 or later
- gtkhtml - 0.8.2 or later
diff --git a/configure.in b/configure.in
index 190a813d02..5e8fa126e8 100644
--- a/configure.in
+++ b/configure.in
@@ -312,19 +312,6 @@ EVO_CHECK_LIB(GtkHTML, 0.8, gtkhtml)
EVO_CHECK_LIB(GNOME-VFS, 0.4.2, vfs)
EVO_CHECK_LIB(libxml, 1.8.10, xml)
-dnl **********
-dnl libunicode
-dnl **********
-AC_MSG_CHECKING(for libunicode)
-if unicode-config --libs > /dev/null 2>&1; then
- UNICODE_LIBS=`unicode-config --libs`
- UNICODE_CFLAGS=`unicode-config --cflags`
- AC_SUBST(UNICODE_LIBS)
- AC_SUBST(UNICODE_CFLAGS)
- AC_MSG_RESULT(found)
-else
- AC_MSG_ERROR(libunicode not found)
-fi
dnl *************************
@@ -335,19 +322,24 @@ GLIB_LIBS="`glib-config --libs`"
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
-EXTRA_GNOME_LIBS="`gnome-config --libs libglade gdk_pixbuf gnomecanvaspixbuf gnomeui gal` $THREADS_LIBS $UNICODE_LIBS"
-EXTRA_GNOME_CFLAGS="`gnome-config --cflags libglade gdk_pixbuf gnomecanvaspixbuf gnomeui gal` $THREADS_CFLAGS $UNICODE_CFLAGS"
+GAL_CFLAGS="`gnome-config --cflags gal`"
+GAL_LIBS="`gnome-config --libs gal`"
+AC_SUBST(GAL_CFLAGS)
+AC_SUBST(GAL_LIBS)
+
+EXTRA_GNOME_LIBS="`gnome-config --libs libglade gdk_pixbuf gnomecanvaspixbuf gnomeui gal` $THREADS_LIBS"
+EXTRA_GNOME_CFLAGS="`gnome-config --cflags libglade gdk_pixbuf gnomecanvaspixbuf gnomeui gal` $THREADS_CFLAGS"
AC_SUBST(EXTRA_GNOME_LIBS)
AC_SUBST(EXTRA_GNOME_CFLAGS)
-BONOBO_GNOME_LIBS="`gnome-config --libs bonobox_print libglade gdk_pixbuf gnomecanvaspixbuf gnomeui` $UNICODE_LIBS $OAF_LIBS"
-BONOBO_GNOME_CFLAGS="`gnome-config --cflags bonobox_print libglade gdk_pixbuf gnomecanvaspixbuf gnomeui ` $UNICODE_CFLAGS $OAF_CFLAGS"
+BONOBO_GNOME_LIBS="`gnome-config --libs bonobox_print libglade gdk_pixbuf gnomecanvaspixbuf gnomeui` $OAF_LIBS"
+BONOBO_GNOME_CFLAGS="`gnome-config --cflags bonobox_print libglade gdk_pixbuf gnomecanvaspixbuf gnomeui` $OAF_CFLAGS"
AC_SUBST(BONOBO_GNOME_LIBS)
AC_SUBST(BONOBO_GNOME_CFLAGS)
-BONOBO_HTML_GNOME_LIBS="`gnome-config --libs bonobox_print libglade gdk_pixbuf gtkhtml gnomecanvaspixbuf gnomeui ` $THREAD_LIBS $UNICODE_LIBS"
-BONOBO_HTML_GNOME_CFLAGS="`gnome-config --cflags bonobox_print libglade gdk_pixbuf gtkhtml gnomecanvaspixbuf gnomeui ` $THREAD_CFLAGS $UNICODE_CFLAGS"
+BONOBO_HTML_GNOME_LIBS="`gnome-config --libs bonobox_print libglade gdk_pixbuf gtkhtml gnomecanvaspixbuf gnomeui ` $THREAD_LIBS"
+BONOBO_HTML_GNOME_CFLAGS="`gnome-config --cflags bonobox_print libglade gdk_pixbuf gtkhtml gnomecanvaspixbuf gnomeui ` $THREAD_CFLAGS"
AC_SUBST(BONOBO_HTML_GNOME_LIBS)
AC_SUBST(BONOBO_HTML_GNOME_CFLAGS)