|
From: Lars H. <lhe...@us...> - 2006-05-18 10:16:33
|
Timoth=E9e Lecomte writes:
> Dear gnuplot developpers,
>=20
> After 11 months of development, the wxWidgets has landed to the CVS ! (=
I
> hope I did not make any mistake by the way)
=20
Timoth=E9e,
I'm trying to repair the build system after this commit. There are two
issues:
| dnl Check for object files creation, needed to build these object files=
in subdirs
| AM_PROG_CC_C_O
This is not what AM_PROG_CC_C_O does. It is a wrapper for AC_PROG_CC_C_O=
:
| If the C compiler does not accept the `-c' and `-o' options
| simultaneously, define `NO_MINUS_C_MINUS_O'. This macro actually
| tests both the compiler found by `AC_PROG_CC', and, if different,
| the first `cc' in the path. The test fails if one fails. This
| macro was created for GNU Make to choose the default C compilation
| rule.
It's not needed. Can I remove it?
Number two: if no wxWidgets are installed, the result for $WX_CONFIG is =
"no",
and configure then tries to run the command "no". I have changed the log=
ic.
if test $WX_CONFIG
...
fi
if expr 2.3.3 \> `${WX_CONFIG} --version`
fi
to
if test $WX_CONFIG
...
else
if expr 2.3.3 \> `${WX_CONFIG} --version`
fi
fi
Ok?
|