Re: Help needed with autoconf and gtk+2.0 (my first configure.ac)

2002-08-28 Thread Ruben Porras
Thanks, it solves the problem. Now I have another one. I have one directory with pixmaps. I want this pixmaps copies to somewrhere when make install (I supose /usr/local/share/myprogram/pixmaps) In my program I use gdk_pixbuf_new_from_file(pixmaps/rotate.xpm, NULL); ¿who should I change that?

Re: Help needed with autoconf and gtk+2.0 (my first configure.ac)

2002-08-28 Thread Sven Neumann
Hi, Ruben Porras [EMAIL PROTECTED] writes: I have placed this Makefile.am in the pixmaps directorie ## Process this file with automake to produce Makefile.in pixmapdir = $(datadir)/pixmaps EXTRA_DIST = bomb.xmp debian.xpm left.xpm \ right.xpm rotate.xpm source.xpm

Help needed with autoconf and gtk+2.0 (my first configure.ac)

2002-08-27 Thread Ruben Porras
for the moment I was compiling my progam as said in the gtk+2.0 tutorial gcc src/lilo.c -o gtklilo `pkg-config --cflags --libs gtk+-2.0` but now I want to add some configure stuff. my configure.ac is dnl Process this file with autoconf to produce a configure script AC_INIT(src/lilo.c)

Re: Help needed with autoconf and gtk+2.0 (my first configure.ac)

2002-08-27 Thread Sven Neumann
Hi, Ruben Porras [EMAIL PROTECTED] writes: for the moment I was compiling my progam as said in the gtk+2.0 tutorial gcc src/lilo.c -o gtklilo `pkg-config --cflags --libs gtk+-2.0` but now I want to add some configure stuff. my configure.ac is dnl Process this file with autoconf to