conglomerate-0.7.5 compile problems

Kyle Davenport <[email protected]> Thu, 09 Oct 2003 23:22:59 -0500
Newsgroups gmane.editors.conglomerate.general
Message-ID <[email protected]>
Hi, me again with RH8 compile problems.   I saw the "libtoolize 
--automake" reference, but it didn't seem to do anything.  Here's what I 
had to do get it to compile and run:
----------------------------------------------------------------------------------
diff -Naur conglomerate-0.7.5/src/cong-primary-window.c 
conglomerate-0.7.5-RH8/src/cong-primary-window.c
--- conglomerate-0.7.5/src/cong-primary-window.c        2003-10-06 
12:53:15.000000000 -0500
+++ conglomerate-0.7.5-RH8/src/cong-primary-window.c    2003-10-09 
23:05:11.000000000 -0500
@@ -441,12 +441,18 @@
        primary_window->window = gnome_app_new(PACKAGE_NAME,
                                               title);
 
+       /* gtk2.2
        gtk_window_set_default_icon_from_file(
                
gnome_program_locate_file(cong_app_singleton()->gnome_program,
                                          GNOME_FILE_DOMAIN_APP_PIXMAP,
                                          "conglomerate-icon-32.png", 
FALSE,
                                          NULL),
-               NULL);
+               NULL);*/
+       
g_free(gnome_program_locate_file(cong_app_singleton()->gnome_program,
+                                        GNOME_FILE_DOMAIN_APP_PIXMAP,
+                                        "conglomerate-icon-32.png", FALSE,
+                                        NULL)
+               );
 
        gtk_signal_connect(GTK_OBJECT(primary_window->window), 
"delete_event",
                           GTK_SIGNAL_FUNC(delete_event), primary_window);
diff -Naur conglomerate-0.7.5/src/global.h 
conglomerate-0.7.5-RH8/src/global.h
--- conglomerate-0.7.5/src/global.h     2003-10-07 13:29:03.000000000 -0500
+++ conglomerate-0.7.5-RH8/src/global.h 2003-10-09 23:04:38.000000000 -0500
@@ -9,6 +9,7 @@
 #include <libgnome/libgnome.h>
 #include <libgnomeui/libgnomeui.h>
 #include <gconf/gconf-client.h>
+#include "cong-vfs.h"
 
 G_BEGIN_DECLS
-------------------------------------------------------------------------------------------------------------------

I don't know how it would have compiled without the cong-vfs.h include.  
Perhaps not the best place for it, but it satisfied the 8 or so .c files 
that broke without it.  The other change is for gtk2.0 .  

Still having a problem with "make install".  Innumerable jade errors, 
and then it tries to install an "index.sgml" file which is removed 
during make!  During the "building conglomerate.types" I get a lot of 
these "sed: -e expression #1, char 16: Unknown option to 's'".  And then 
there are hundreds of warnings during the "Building SGML"  followed by 
"/usr/bin/gtkdoc-mkhtml: line 28: index.sgml: No such file or directory"

Thanks,
Kyle

P.S.  Yeah, I know, 3 more months and Redhat officially drops support 
for 8.  Wish they would fix 9 first!