Changeset 198
- Timestamp:
- 06/21/07 19:16:42 (1 year ago)
- Files:
-
- trunk/configure.ac (modified) (2 diffs)
- trunk/src/main-gtk.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/configure.ac
r197 r198 63 63 [ --enable-gtk Enables GTK 2.x frontend (default: disabled)], 64 64 [enable_gtk=$enableval], 65 [enable_gtk= no])65 [enable_gtk=yes]) 66 66 AC_ARG_ENABLE(curses, 67 67 [ --enable-curses Enables Curses frontend (default: enabled)], … … 156 156 dnl GTK checking 157 157 if test "$enable_gtk" = "yes"; then 158 PKG_CHECK_MODULES(GTK, [glib-2.0 >= 2.6.0 gtk+-2.0 >= 2.6.0 gthread-2.0 pango libglade ],158 PKG_CHECK_MODULES(GTK, [glib-2.0 >= 2.6.0 gtk+-2.0 >= 2.6.0 gthread-2.0 pango libglade-2.0], 159 159 [with_gtk=yes], 160 160 [with_gtk=no] trunk/src/main-gtk.c
r197 r198 859 859 860 860 /* Set up the Glade file */ 861 xml = glade_xml_new(buf, NULL );861 xml = glade_xml_new(buf, NULL, NULL); 862 862 863 863 if (main_window)
