I wanted to try cairo using gtk so a I found some examples on the web.<br><br>I&#39;m using gcc 4.3.2 on  Ubuntu 8.10, and I&#39;m trying to get a Makefile together that I can expand as the project grows.<br><br>I managed to track down the header files for gcc include dirs, so I can compile the examples.<br>
<br>However, the linker fails to find all the library functions:<br><br>Here&#39;s my lib list:<br>LIBS = -lgdk_pixbuf-2.0 -lc -lcairo -lgdk -lgtk -latk-1.0 -lpango-1.0 -lpangocairo-1.0<br><br>Here&#39;s missing functions in one example program.<br>
gtk_window_set_decorated<br>gdk_screen_get_rgba_colormap<br>gdk_screen_get_rgb_colormap<br>gdk_cairo_create<br>gtk_window_get_size<br><br>Can anyone tell me what libs these functions are in?<br><br>Thanks<br><br>