Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
35d288bc
Commit
35d288bc
authored
Dec 18, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Dec 18, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Solaris fixes.
parent
943ba3f1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
configure
configure
+1
-1
configure.in
configure.in
+1
-1
import.c
tools/winebuild/import.c
+7
-1
No files found.
configure
View file @
35d288bc
...
...
@@ -4806,7 +4806,7 @@ fi
echo
"
$ac_t
""
$ac_cv_c_dll_unixware
"
1>&6
if
test
"
$ac_cv_c_dll_unixware
"
=
"yes"
then
LDSHARED
=
"
\$
(CC) -Wl,-G
\$
(SONAME:%=-Wl,h,
\$
(libdir)/%)"
LDSHARED
=
"
\$
(CC) -Wl,-G
\$
(SONAME:%=-Wl,
-
h,
\$
(libdir)/%)"
LDDLLFLAGS
=
"-Wl,-B,symbolic"
else
echo
$ac_n
"checking "
whether we can build a NetBSD dll
"""...
$ac_c
"
1>&6
...
...
configure.in
View file @
35d288bc
...
...
@@ -557,7 +557,7 @@ then
])
if test "$ac_cv_c_dll_unixware" = "yes"
then
LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,h,\$(libdir)/%)"
LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,
-
h,\$(libdir)/%)"
LDDLLFLAGS="-Wl,-B,symbolic"
else
AC_CACHE_CHECK("whether we can build a NetBSD dll",
...
...
tools/winebuild/import.c
View file @
35d288bc
...
...
@@ -44,7 +44,13 @@ static int name_cmp( const void *name, const void *entry )
/* locate a symbol in a (sorted) list */
inline
static
const
char
*
find_symbol
(
const
char
*
name
,
char
**
table
,
int
size
)
{
char
**
res
=
bsearch
(
&
name
,
table
,
size
,
sizeof
(
*
table
),
name_cmp
);
char
**
res
=
NULL
;
if
(
table
)
{
res
=
bsearch
(
&
name
,
table
,
size
,
sizeof
(
*
table
),
name_cmp
);
}
return
res
?
*
res
:
NULL
;
}
...
...
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