|
From: Mikhail K. <mko...@gm...> - 2012-12-27 11:24:26
|
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++}}
>
> and try configuring once again. Report back if there are further
> issues. There appear to be some FIXMEs in the configure code that
> probably haven't been resolved because no one has run across the issue
> yet. You might be able to help.
|