autoconf to cross compile on linux to win32 using Microsoft tools

2006-07-21 Thread Douglas C. MacKenzie
I have the microsoft C++ compiler installed on my linux box and set it up so that I can run the command line compiler using wine. I have hand-crafted make files that allow me to build several packages for either native linux or WIN32 using this system. I have moved the packages to use autotools fo

Problem with macro inside inactive conditional changing autoconf behavior

2010-01-30 Thread Dr. Douglas C. MacKenzie
I am having trouble with a configure.ac file after upgrading from libtool 1.5 to 2.2.6 as part of moving from Fedora 10 to Fedora 12. The file is: > AC_PREREQ(2.52) > AC_INIT([testing], [2.0], [testing], [testing]) > AC_CONFIG_MACRO_DIR([m4]) > AM_INIT_AUTOMAKE > AC_CONFIG_SRCDIR([testing.spec.in

Re: Problem with macro inside inactive conditional changing autoconf behavior

2010-02-01 Thread Dr. Douglas C. MacKenzie
uting depfiles commands config.status: executing libtool commands : I tried zip'ing the generated files and attaching them, but the mailer rejected my message, so I imagine that attachments are not allowed. Doug -Original Message- From: Ralf Wildenhues To: Dr. Doug

Re: Problem with macro inside inactive conditional changing autoconf behavior

2010-02-03 Thread Dr. Douglas C. MacKenzie
:: FIXED :: Converting the if/fi to an AS_IF fixes the problem. Specifically, when I change this code: if test 0 = 1; then echo " In conditional block 1 " AC_LIBTOOL_WIN32_DLL else echo " In conditional block 2 " fi to: ==