Hi,
I'm trying to create a configure script to use the development version
gtk+2.0. Currently, I write my own Makefiles and use pkg-config to generate
th necessary info as in:
.c.o:
$(CC) -Wall -ggdb -I. `pkg-config gtk+-2.0 --cflags` -c $<
$(PROGRAM): $(OBJS)
$(CC) -rdynamic `pkg-config gtk+-2.0 --libs` -o $(PROGRAM)
$(OBJS)
I tried putting AM_PATH_GTK(2.0.0) and AM_PATH_GTK(1.3.0) in
configure.in and neither seemed to work for me. Can anyone help?
Thanks for your time,
Kerry
