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
9981f4c4
Commit
9981f4c4
authored
Feb 26, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Disable 16-bit code by default for Mingw builds.
parent
3f0d9d12
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
8 deletions
+16
-8
configure
configure
+8
-4
configure.ac
configure.ac
+8
-4
No files found.
configure
View file @
9981f4c4
...
...
@@ -3877,17 +3877,21 @@ rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
notice_platform
=
"32-bit "
TARGETFLAGS
=
"-m32"
enable_win16
=
${
enable_win16
:-
yes
}
else
TARGETFLAGS
=
"-m64"
fi
;;
*
-mingw32
*
)
enable_win16
=
${
enable_win16
:-
no
}
;;
i[3456789]86
*
)
enable_win16
=
${
enable_win16
:-
yes
}
;;
esac
case
$host_cpu
in
*
i[3456789]86
*
)
enable_win16
=
${
enable_win16
:-
yes
}
;;
*
)
enable_win16
=
${
enable_win16
:-
no
}
;;
esac
enable_win16
=
${
enable_win16
:-
no
}
WIN16_FILES
=
"
\$
(WIN16_FILES)"
...
...
configure.ac
View file @
9981f4c4
...
...
@@ -116,17 +116,21 @@ case $host in
host_cpu="i386"
notice_platform="32-bit "
AC_SUBST(TARGETFLAGS,"-m32")
enable_win16=${enable_win16:-yes}
else
AC_SUBST(TARGETFLAGS,"-m64")
fi
;;
*-mingw32*)
enable_win16=${enable_win16:-no}
;;
i[[3456789]]86*)
enable_win16=${enable_win16:-yes}
;;
esac
dnl enable_win16 defaults to yes on x86, to no on other CPUs
case $host_cpu in
*i[[3456789]]86*) enable_win16=${enable_win16:-yes} ;;
*) enable_win16=${enable_win16:-no} ;;
esac
enable_win16=${enable_win16:-no}
AC_SUBST(WIN16_FILES,"\$(WIN16_FILES)")
AC_SUBST(WIN16_INSTALL,"\$(WIN16_INSTALL)")
...
...
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