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
37e5e7f4
Commit
37e5e7f4
authored
Jun 06, 2001
by
Bang Jun-Young
Committed by
Alexandre Julliard
Jun 06, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace "Linux dll" with "GNU style ELF dll".
Remove support for NetBSD a.out dll.
parent
1426c8cb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
18 deletions
+5
-18
configure
configure
+0
-0
configure.in
configure.in
+5
-18
No files found.
configure
View file @
37e5e7f4
This diff is collapsed.
Click to expand it.
configure.in
View file @
37e5e7f4
...
...
@@ -602,14 +602,14 @@ LDSHARED=""
LDDLLFLAGS=""
if test "$LIBEXT" = "so"
then
AC_CACHE_CHECK("whether we can build a
Linux
dll",
ac_cv_c_dll_
linux
,
AC_CACHE_CHECK("whether we can build a
GNU style ELF
dll",
ac_cv_c_dll_
gnuelf
,
[saved_cflags=$CFLAGS
CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
AC_TRY_LINK(,[return 1],ac_cv_c_dll_
linux="yes",ac_cv_c_dll_linux
="no")
AC_TRY_LINK(,[return 1],ac_cv_c_dll_
gnuelf="yes",ac_cv_c_dll_gnuelf
="no")
CFLAGS=$saved_cflags
])
if test "$ac_cv_c_dll_
linux
" = "yes"
if test "$ac_cv_c_dll_
gnuelf
" = "yes"
then
LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%) -Wl,-rpath,\$(libdir)"
LDDLLFLAGS="-Wl,-Bsymbolic"
...
...
@@ -625,22 +625,9 @@ then
then
LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,\$(libdir)/%)"
LDDLLFLAGS="-Wl,-B,symbolic"
else
AC_CACHE_CHECK("whether we can build a NetBSD a.out dll",
ac_cv_c_dll_netbsd,
[saved_cflags=$CFLAGS
CFLAGS="$CFLAGS -fPIC -Wl,-Bshareable,-Bforcearchive"
AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
CFLAGS=$saved_cflags
])
if test "$ac_cv_c_dll_netbsd" = "yes"
then
LDSHARED="\$(CC) -Wl,-Bshareable,-Bforcearchive"
LDDLLFLAGS="" #FIXME
fi
fi
fi
if test "$ac_cv_c_dll_
linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd
" = "no"
if test "$ac_cv_c_dll_
gnuelf" = "no" -a "$ac_cv_c_dll_unixware
" = "no"
then
LIBEXT="a"
if test "$DLLWRAP" = "dllwrap"; then
...
...
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