Re: Docbook pdf generation - copying png images to build directory?

2009-11-13 Thread Daniel Leidert
Clifford Yapp wrote: > I have a situation where I need to copy png images from a source > directory to the build directory prior to running other build rules, > and I am having some trouble formulating a rule to do the job. > Background: Does fop do the whole job? It's possible to use xsltproc to

RE: compile wrapper script with C++ file

2009-11-13 Thread David Byron
> Here's a ping for Ralph. I asked for his help and then I went and spelled his name wrong. My apologies Ralf. -DB

RE: compile wrapper script with C++ file

2009-11-13 Thread David Byron
On Friday September 4th, 2009, Eric Blake wrote: > According to David Byron on 8/14/2009 1:57 PM: > > > I'm not sure whether this is something I'm doing wrong > > or something wrong with automake, autoconf or libtool. > > At the moment I'm leaning to autoconf + automake. > > compile is maintained

Docbook pdf generation - copying png images to build directory?

2009-11-13 Thread Clifford Yapp
I have a situation where I need to copy png images from a source directory to the build directory prior to running other build rules, and I am having some trouble formulating a rule to do the job. Background: Docbook files are converted to pdf format by using Apache FOP, but when converting an xml

Re: how to link other libraries to *my* library...

2009-11-13 Thread Ed Hartnett
Ralf Wildenhues writes: > Hi Ed, > > * Ed Hartnett wrote on Fri, Nov 13, 2009 at 05:14:24PM CET: >> The netCDF C library uses other libraries, for example the hdf5, >> hdf5_hl, and zlib libraries. I was building the library without >> explicitly linking to these other libraries, assuming that lib

Re: how to link other libraries to *my* library...

2009-11-13 Thread Ralf Wildenhues
Hi Ed, * Ed Hartnett wrote on Fri, Nov 13, 2009 at 05:14:24PM CET: > The netCDF C library uses other libraries, for example the hdf5, > hdf5_hl, and zlib libraries. I was building the library without > explicitly linking to these other libraries, assuming that libtool would > magically handle this

Re: how to link other libraries to *my* library...

2009-11-13 Thread Philip Herron
Hey Autoconf is what should handle your libraries etc: bignum="no" AC_ARG_WITH(bignum, [AS_HELP_STRING([--with-bignum=yes/no], [With GNU MP and MPFR multi-precision support, default no.])], [bignum="$withval"]) if test "x$bignum" == "xyes"; then AC_CHECK_LIB([gmp], [__gmpz_init], ,

how to link other libraries to *my* library...

2009-11-13 Thread Ed Hartnett
Howdy all! I am a programmer for netcdf, a set of free software libraries in C, C++, F77, and F90 for array-oriented access to scientific data. NetCDF is widely used in the Earth sciences and climate research. The netCDF C library uses other libraries, for example the hdf5, hdf5_hl, and zlib libr