diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-06-30 05:30:48 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-06-30 05:30:48 +0800 |
commit | c216b49da2319a3cc36297c17193201e5f290301 (patch) | |
tree | 0c8cf12561de9c32590a30a4409b3dff42b22602 | |
parent | f8498f1b3a2b20c50eb6e8c68b85d29b20257105 (diff) | |
download | gsoc2013-evolution-c216b49da2319a3cc36297c17193201e5f290301.tar gsoc2013-evolution-c216b49da2319a3cc36297c17193201e5f290301.tar.gz gsoc2013-evolution-c216b49da2319a3cc36297c17193201e5f290301.tar.bz2 gsoc2013-evolution-c216b49da2319a3cc36297c17193201e5f290301.tar.lz gsoc2013-evolution-c216b49da2319a3cc36297c17193201e5f290301.tar.xz gsoc2013-evolution-c216b49da2319a3cc36297c17193201e5f290301.tar.zst gsoc2013-evolution-c216b49da2319a3cc36297c17193201e5f290301.zip |
Yeah, I'm a little bit compulsize
svn path=/trunk/; revision=3808
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 6 insertions, 4 deletions
@@ -1,6 +1,8 @@ 2000-06-29 Peter Williams <peterw@helixcode.com> - * configure.in: Re-enable GNOME_PILOT_CHECK + * configure.in: Re-enable GNOME_PILOT_CHECK. + Change AC_MSG_CHECKING([For...]) to [for...]. It's the little + things that matter. 2000-06-28 Ettore Perazzoli <ettore@helixcode.com> diff --git a/configure.in b/configure.in index fa2424beb8..f6f713c367 100644 --- a/configure.in +++ b/configure.in @@ -242,7 +242,7 @@ fi dnl ****************************** dnl LibGlade checking dnl ****************************** -AC_MSG_CHECKING(For Glade libraries) +AC_MSG_CHECKING(for Glade libraries) if gnome-config --libs libglade > /dev/null 2>&1; then AC_MSG_RESULT(found) else @@ -252,7 +252,7 @@ fi dnl ****************************** dnl libunicode checking dnl ****************************** -AC_MSG_CHECKING(For libunicode) +AC_MSG_CHECKING(for libunicode) if unicode-config --libs > /dev/null 2>&1; then UNICODE_LIBS=`unicode-config --libs` UNICODE_CFLAGS=`unicode-config --cflags` @@ -266,7 +266,7 @@ fi dnl ****************************** dnl GdkPixbuf checking dnl ****************************** -AC_MSG_CHECKING(For Gdkpixbuf libraries) +AC_MSG_CHECKING(for Gdkpixbuf libraries) if gnome-config --libs gdk_pixbuf gnomecanvaspixbuf > /dev/null 2>&1; then AC_MSG_RESULT(found) else |