comparison configure.ac @ 4793:677d3cb193a1

[gaim-migrate @ 5113] this removes all the remaining deprecated glib, gdk, gdk-pixbuf, and gtk function calls. Hopefully I didn't break anything. Most of this is due to the deprecation of g_strcasecmp and g_strncasecmp. Two functions I never thought would be deprecated, but apparently they're no good at comparing utf8 text. g_ascii_str{,n}casecmp is OK when you're sure that it's ASCII. Otherwise, we're supposed to use g_utf8_collate(), except that it is case sensitive. Since glib doesn't currently have a case-insensitive one, I wrote one. If you need to compare utf8 text, you can use gaim_utf8_strcasecmp(). I have to go do dishes now. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sun, 16 Mar 2003 00:01:49 +0000
parents 283fb289c510
children 5496d1704ee0
comparison
equal deleted inserted replaced
4792:9212d1c5b7dc 4793:677d3cb193a1
145 *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+ 145 *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+
146 *** development headers installed. The latest version of GTK+ is 146 *** development headers installed. The latest version of GTK+ is
147 *** always available at http://www.gtk.org/.])) 147 *** always available at http://www.gtk.org/.]))
148 148
149 AC_PATH_PROG(gaimpath, gaim) 149 AC_PATH_PROG(gaimpath, gaim)
150 CFLAGS="$CFLAGS $GTK_CFLAGS -DGTK_DISABLE_DEPRECATED" 150 CFLAGS="$CFLAGS $GTK_CFLAGS -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED"
151 151
152 AC_PATH_X 152 AC_PATH_X
153 153
154 dnl Check for XScreenSaver 154 dnl Check for XScreenSaver
155 if test "x$enable_xss" = "xyes" ; then 155 if test "x$enable_xss" = "xyes" ; then