Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
69b67861
Commit
69b67861
authored
Dec 10, 2002
by
Steven Edwards
Committed by
Alexandre Julliard
Dec 10, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Alpha porting fix.
parent
067a9812
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
0 deletions
+51
-0
configure
configure
+34
-0
configure.ac
configure.ac
+17
-0
No files found.
configure
View file @
69b67861
...
...
@@ -13650,6 +13650,40 @@ fi
case
$host_cpu
in
*
alpha
*
)
echo
"
$as_me
:
$LINENO
: checking whether we need to define __ALPHA__"
>
&5
echo
$ECHO_N
"checking whether we need to define __ALPHA__...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_cpp_def_alpha
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
cat
>
conftest.
$ac_ext
<<
_ACEOF
#line
$LINENO
"configure"
#include "confdefs.h"
#ifndef __ALPHA__
yes
#endif
_ACEOF
if
(
eval
"
$ac_cpp
conftest.
$ac_ext
"
)
2>&5 |
$EGREP
"yes"
>
/dev/null 2>&1
;
then
ac_cv_cpp_def_alpha
=
"yes"
else
ac_cv_cpp_def_alpha
=
"no"
fi
rm
-f
conftest
*
fi
echo
"
$as_me
:
$LINENO
: result:
$ac_cv_cpp_def_alpha
"
>
&5
echo
"
${
ECHO_T
}
$ac_cv_cpp_def_alpha
"
>
&6
;;
esac
if
test
"
$ac_cv_cpp_def_alpha
"
=
"yes"
then
CFLAGS
=
"
$CFLAGS
-D__ALPHA__"
LINTFLAGS
=
"
$LINTFLAGS
-D__ALPHA__"
fi
case
$host_cpu
in
*
sparc
*
)
echo
"
$as_me
:
$LINENO
: checking whether we need to define __sparc__"
>
&5
echo
$ECHO_N
"checking whether we need to define __sparc__...
$ECHO_C
"
>
&6
...
...
configure.ac
View file @
69b67861
...
...
@@ -1309,6 +1309,23 @@ then
LINTFLAGS="$LINTFLAGS -D__i386__"
fi
dnl *** check for the need to define __ALPHA__
case $host_cpu in
*alpha* )
AC_CACHE_CHECK([whether we need to define __ALPHA__],ac_cv_cpp_def_alpha,
AC_EGREP_CPP(yes,[#ifndef __ALPHA__
yes
#endif],
ac_cv_cpp_def_alpha="yes", ac_cv_cpp_def_alpha="no"))
;;
esac
if test "$ac_cv_cpp_def_alpha" = "yes"
then
CFLAGS="$CFLAGS -D__ALPHA__"
LINTFLAGS="$LINTFLAGS -D__ALPHA__"
fi
dnl *** check for the need to define __sparc__
case $host_cpu in
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment