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
a7f5cb5b
Commit
a7f5cb5b
authored
Apr 16, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Apr 16, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add -fno-builtin when compiling with gcc in relay32/ subdir.
parent
dca5e56b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
configure
configure
+8
-0
configure.in
configure.in
+8
-0
Makefile.in
relay32/Makefile.in
+1
-1
No files found.
configure
View file @
a7f5cb5b
...
...
@@ -4511,6 +4511,13 @@ EOF
fi
GCC_NO_BUILTIN
=
""
if
test
"
$GCC
"
=
"yes"
then
GCC_NO_BUILTIN
=
"-fno-builtin"
fi
MAKE_RULES
=
Make.rules
...
...
@@ -4738,6 +4745,7 @@ s%@C2MAN@%$C2MAN%g
s%@XLIB@%
$XLIB
%g
s%@DLLFLAGS@%
$DLLFLAGS
%g
s%@LDSHARED@%
$LDSHARED
%g
s%@GCC_NO_BUILTIN@%
$GCC_NO_BUILTIN
%g
/@MAKE_RULES@/r
$MAKE_RULES
s%@MAKE_RULES@%%g
...
...
configure.in
View file @
a7f5cb5b
...
...
@@ -625,6 +625,14 @@ then
AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS)
fi
dnl $GCC is set by autoconf
GCC_NO_BUILTIN=""
if test "$GCC" = "yes"
then
GCC_NO_BUILTIN="-fno-builtin"
fi
AC_SUBST(GCC_NO_BUILTIN)
dnl **** Generate output files ****
MAKE_RULES=Make.rules
...
...
relay32/Makefile.in
View file @
a7f5cb5b
DEFS
=
@DLLFLAGS@
-D__WINE__
DEFS
=
@DLLFLAGS@
@GCC_NO_BUILTIN@
-D__WINE__
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
..
SRCDIR
=
@srcdir@
...
...
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