Changeset 198

Show
Ignore:
Timestamp:
06/21/07 19:16:42 (2 years ago)
Author:
takkaria
Message:

Fix to use libglade2. Doh.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/configure.ac

    r197 r198  
    6363        [  --enable-gtk                         Enables GTK 2.x frontend (default: disabled)], 
    6464        [enable_gtk=$enableval], 
    65         [enable_gtk=no]) 
     65        [enable_gtk=yes]) 
    6666AC_ARG_ENABLE(curses, 
    6767        [  --enable-curses                      Enables Curses frontend (default: enabled)], 
     
    156156dnl GTK checking 
    157157if 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], 
    159159                [with_gtk=yes], 
    160160                [with_gtk=no] 
  • trunk/src/main-gtk.c

    r197 r198  
    859859         
    860860        /* Set up the Glade file */ 
    861         xml = glade_xml_new(buf, NULL); 
     861        xml = glade_xml_new(buf, NULL, NULL); 
    862862         
    863863        if (main_window)