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
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
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
:: 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:
==