installing glade3 interface file with autotools

2009-08-17 Thread Mick
I'm trying to rebuild my application using the current(ish) glade and autoconf/automake and have been having a nightmare trying to get the XML file created from glade by: gtk-builder-convert nuchimp.glade nuchimp.xml After reading various documents I have the following Makefile.am: bin_PROGRAMS =

Re: installing glade3 interface file with autotools

2009-08-23 Thread Mick
On Mon, 17 Aug 2009 10:09:31 -0600 John Calcote wrote: > Hi Mick, > > Your Automake syntax is correct, if you're trying to install a > pre-existing data file called nuchimp.xml into the /usr/local/share > (default $(datadir)) directory. The error you're getting in

Re: Optional GTK?

2009-09-13 Thread Mick
On Sun, 13 Sep 2009 21:21:06 -0400 "Patrick M. Rutkowski" wrote: > If I were to run something like AM_PATH_GTK_2_0 in my configure.ac, > which checks for the presence of GTK, what would I do if GTK wasn't > found? > > This might be the case on OS X, or on a KDE system. > > I can potentially com

finding the location of header (.h) files

2006-07-13 Thread mick
I have an application that depends on gtkhtml-2.0, which seems to be in a diferent location in almost every linux or BSD distribution. Currently I have:- INCLUDES = -I/usr/include/gtkhtml-2.0 in Makefile.am and AC_CHECK_LIB([gtkhtml-2], [html_document_open_stream],, [AC_MSG_ERROR([BUMMER, Mayb

finding the location of header (.h) files

2006-07-29 Thread mick
On Fri, 14 Jul 2006 18:39, Stepan Kasal wrote: I have an application that depends on gtkhtml-2.0, which seems to put its headers in a diferent location in almost every linux or BSD distribution so I need to replace INCLUDES = -I/usr/include/gtkhtml-2.0 in Makefile.am. Its been suggested that I

making part of package optional at ./configure time

2006-09-16 Thread mick
I am trying to make the inclusion of a module of my program an option configurable in ./configure but can't get it right. At the moment I have in configure.ac AC_ARG_ENABLE(webcam, [ --disable-webcamdisable use of webcam]) AC_ARG_ENABLE(voice, [ --disable-voice disable

Re: making part of package optional at ./configure time

2006-09-18 Thread mick
On Mon, 18 Sep 2006 17:34, Ralf Wildenhues wrote: > Hello Mick, > > * mick wrote on Sun, Sep 17, 2006 at 08:36:15AM CEST: > > I am trying to make the inclusion of a module of my program an option > > configurable in ./configure but can't get it right. > > > U

Re: adding libraries and header file directories

2006-11-02 Thread mick
On Fri, 3 Nov 2006 02:27, Jim Rainville wrote: perhaps if you give a bit of detail about what you are trying to do. I have stumbled across a few things and applied them to my needs with a lot of help. /]/]ik > Hi - > > > > I'm new to autoconf so what I'm asking is probably really simple but I >