mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
mingw fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@7475 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
86678d57f8
commit
56fce05dc8
6 changed files with 45 additions and 20 deletions
12
Source/mframe/configure
vendored
12
Source/mframe/configure
vendored
|
@ -659,10 +659,10 @@ test "$host_alias" != "$target_alias" &&
|
|||
|
||||
|
||||
case "$target_cpu" in
|
||||
alpha*) host_cpu=alpha;;
|
||||
hppa*) host_cpu=hppa;;
|
||||
i[456]86*) host_cpu=i386;;
|
||||
sparc*) host_cpu=sparc;;
|
||||
alpha*) target_cpu=alpha;;
|
||||
hppa*) target_cpu=hppa;;
|
||||
i[3456]86*) target_cpu=i386;;
|
||||
sparc*) target_cpu=sparc;;
|
||||
esac
|
||||
|
||||
case "$target_os" in
|
||||
|
@ -671,9 +671,9 @@ case "$target_os" in
|
|||
esac
|
||||
|
||||
|
||||
if test -d $host_cpu -a "`echo $host_cpu/*`" != "$host_cpu/*"
|
||||
if test -d $target_cpu -a "`echo $target_cpu/*`" != "$target_cpu/*"
|
||||
then
|
||||
my_dir=$host_cpu
|
||||
my_dir=$target_cpu
|
||||
else
|
||||
echo '*************** Warning ****************'
|
||||
echo The 'mframe' software has not been ported to $target_cpu.
|
||||
|
|
|
@ -31,10 +31,10 @@ AC_CANONICAL_SYSTEM
|
|||
dnl Checking CPU and Operating-System information for mframe.h
|
||||
|
||||
case "$target_cpu" in
|
||||
alpha*) host_cpu=alpha;;
|
||||
hppa*) host_cpu=hppa;;
|
||||
i[[456]]86*) host_cpu=i386;;
|
||||
sparc*) host_cpu=sparc;;
|
||||
alpha*) target_cpu=alpha;;
|
||||
hppa*) target_cpu=hppa;;
|
||||
i[[3456]]86*) target_cpu=i386;;
|
||||
sparc*) target_cpu=sparc;;
|
||||
esac
|
||||
|
||||
case "$target_os" in
|
||||
|
@ -43,9 +43,9 @@ case "$target_os" in
|
|||
esac
|
||||
|
||||
|
||||
if test -d $host_cpu -a "`echo $host_cpu/*`" != "$host_cpu/*"
|
||||
if test -d $target_cpu -a "`echo $target_cpu/*`" != "$target_cpu/*"
|
||||
then
|
||||
my_dir=$host_cpu
|
||||
my_dir=$target_cpu
|
||||
else
|
||||
echo '*************** Warning ****************'
|
||||
echo The 'mframe' software has not been ported to $target_cpu.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue