Cross compiling build tools with EXEEXT

2008-12-01 Thread Theo Markettos
I'm trying to run an existing autoconf/automake setup in a cross compiler. The cross compiler script generally Does The Right Thing about setting up --build, --host etc etc. The Makefile.am has the line: noinst_PROGRAMS = bf_test where bf_test is a program run on the build system to generate som

Re: building a qt library

2008-12-01 Thread Brian Dessent
Lorenzo Bettini wrote: > yes of course I did, I was only saying that these requirements/deps > should be documented somehow ;-) They already are. Take a look at /usr/share/doc/Cygwin/qt3-*.README and you'll see minires-devel listed among the packages listed as build requirements. > this is prob

Re: Helper script && noinst_SCRIPTS

2008-12-01 Thread Dmitry V. Krivenok
Harlan Stenn wrote: Hello! I have a question about GNU automake. I have a helper script in tests subdirectory of my project. This script is used ONLY for tests (make check). So, it should be distributed. I added the following lines dist_bin_SCRIPTS = fds_by_process.sh check_SCRIPTS = fds_by_proc

Re: building a qt library

2008-12-01 Thread Lorenzo Bettini
Brian Dessent wrote: Lorenzo Bettini wrote: this approach does not seem to work: probably the qt-mt.pc shipped in the installation in cygwin is not correct since it uses -lresolv (libresolv) which is not installed... Install the minires-devel package then, which contains that library. Brian