Bug 18002

Summary: gnomesupport.h "missing"
Product: [Retired] Red Hat Linux Reporter: Warren L. Simmons <wsimmons>
Component: gnome-libsAssignee: Havoc Pennington <hp>
Status: CLOSED NOTABUG QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 6.1   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2000-10-02 14:40:54 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Warren L. Simmons 2000-10-01 07:13:54 UTC
While trying to compile some simple sample programs using Gnome programming 
tools, I encountered the message that the include file gnomesupport.h 
(included in gnome.h) did not exist. It was not in the current directory. I 
found it in usr/lib/gnome-libs/include all by itself. Copying it over to 
the usr/lib/include directory got rid of that message, however many more 
files do not exist. It appears that during the assembly of your operating 
system some files got separated. For example, according to the gnome.h file 
the linker is to look in the current directory for the gnomesupport.h 
header file. It seems to me that's where it should be. Is there a way to 
straighten this out so that I can get the Gtk/Gnome programming environment 
running?  Is this a bug or is it deliberate?

Thank you.

Comment 1 Havoc Pennington 2000-10-02 15:10:50 UTC
That include file is architecture-specific, so can't go in /usr/include
according to the filesystem hierarchy standard. You should use the output of
gnome-config --cflags gnomeui to link your GNOME apps, which will add the
location of gnomesupport.h to your search path, and will also allow your app to
build on non-Linux systems. (Avoid hardcoding the -I and -l flags to gcc, use
gnome-config in the Makefile instead.)