|
From: sfeam (E. Merritt) <eam...@gm...> - 2012-12-27 17:37:47
|
On Thursday, 27 December 2012, Mikhail Kononets wrote:
> Dan, i changed the CC= and CXX= lines in the ./configure script as you
> suggested. now when invoking "./configure --build=i486-slackware-linux"
> C++ compiled is detected successfully and wxt terminal is enabled.
>
> i have a few minor issues, but these are 99.9% related to me running
> slackware gnuplot build script as
> su -c ./gnuplot.Slackbuild
> because "su" command provides different PATH variable.
>
> hope this is useful result.
> Mikhail
>
> On 27/12/2012 08:27, Daniel J Sebald wrote:
> > Please change the following two lines
> >
> > CC=${CC-${host_alias}-gcc}
> > CXX=${CXX-${host_alias}-c++}
> >
> > to this
> >
> > CC=${CC-${host_alias-gcc}}
> > CXX=${CXX-${host_alias-c++}}
I've applied that change to configure.in
Thanks both of you, and best wishes for the New Year.
|