GNOME Bugzilla – Bug 167213
patch replaces all libgnome stuff by gtk (still using gconf and gnome-vfs)
Last modified: 2005-03-25 13:17:02 UTC
Please describe the problem: since libgnome and libgnomeui are going to be deprecated I replaced the code. the new autogen.sh is mutch cleaner Steps to reproduce: 1. 2. 3. Actual results: Expected results: Does this happen every time? Other information:
Created attachment 37418 [details] [review] removes all gnome code except gconf and gnome-vfs
Forgot this: Index: configure.in =================================================================== RCS file: /cvs/gnome/devhelp/configure.in,v retrieving revision 1.95 diff -u -r1.95 configure.in --- configure.in 29 Jan 2005 09:30:55 -0000 1.95 +++ configure.in 4 Mar 2005 12:35:21 -0000 @@ -31,10 +31,9 @@ gtk+-2.0 >= 2.2.0]) PKG_CHECK_MODULES(LIBDEVHELP, [ - gtk+-2.0 >= 2.3.1 - libgnomeui-2.0 >= 2.2.0 - gnome-vfs-2.0 >= 2.2.0 - libglade-2.0 >= 2.0.0 + gtk+-2.0 >= 2.3.1 + gnome-vfs-2.0 >= 2.2.0 + libglade-2.0 >= 2.0.0 ]) dnl ******************
Again forgot something(gtk version must be higher): Index: configure.in =================================================================== RCS file: /cvs/gnome/devhelp/configure.in,v retrieving revision 1.95 diff -u -r1.95 configure.in --- configure.in 29 Jan 2005 09:30:55 -0000 1.95 +++ configure.in 4 Mar 2005 12:35:21 -0000 @@ -31,10 +31,9 @@ gtk+-2.0 >= 2.2.0]) PKG_CHECK_MODULES(LIBDEVHELP, [ - gtk+-2.0 >= 2.3.1 - libgnomeui-2.0 >= 2.2.0 - gnome-vfs-2.0 >= 2.2.0 - libglade-2.0 >= 2.0.0 + gtk+-2.0 >= 2.6.0 + gnome-vfs-2.0 >= 2.2.0 + libglade-2.0 >= 2.0.0 ]) dnl ******************
Ah great, sorry for not replying earlier. Will hopefully have time to look into this soon, anyway, I've noticed the patch and will get around to look at it as soon as I get some time over. Thanks a lot!
Hi, the patch looked great, *very* sorry for the long delay, I simply have too little time to properly maintain my projects at this moment :/
Just noticed a problem with the patch, you shouldn't remove the calls to bindtextdomain and such. Also the call to gtk_set_locale() is not needed since this is done by gtk_init.
k thx for fixing it