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
421e8b92
Commit
421e8b92
authored
Sep 22, 2004
by
Warren Baird
Committed by
Alexandre Julliard
Sep 22, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix autoconf to have a new WINE_TRY_SHLIB_FLAGS function that tests if
the provided flags can be used to link a shared library. Added test for building shared libs on HP-UX with gcc.
parent
bbdac5e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
78 additions
and
44 deletions
+78
-44
aclocal.m4
aclocal.m4
+10
-0
configure
configure
+54
-39
configure.ac
configure.ac
+14
-5
No files found.
aclocal.m4
View file @
421e8b92
...
@@ -68,6 +68,16 @@ CFLAGS="$CFLAGS $1"
...
@@ -68,6 +68,16 @@ CFLAGS="$CFLAGS $1"
AC_TRY_LINK([],[],[$2],[$3])
AC_TRY_LINK([],[],[$2],[$3])
CFLAGS=$ac_wine_try_cflags_saved])
CFLAGS=$ac_wine_try_cflags_saved])
dnl **** Check if we can link an empty shared lib (no main) with special CFLAGS ****
dnl
dnl Usage: WINE_TRY_SHLIB_FLAGS(flags,[action-if-yes,[action-if-no]])
dnl
AC_DEFUN([WINE_TRY_SHLIB_FLAGS],
[ac_wine_try_cflags_saved=$CFLAGS
CFLAGS="$CFLAGS $1"
AC_LINK_IFELSE([void myfunc() {}],[$2],[$3])
CFLAGS=$ac_wine_try_cflags_saved])
dnl **** Check whether we need to define a symbol on the compiler command line ****
dnl **** Check whether we need to define a symbol on the compiler command line ****
dnl
dnl
dnl Usage: WINE_CHECK_DEFINE(name),[action-if-yes,[action-if-no]])
dnl Usage: WINE_CHECK_DEFINE(name),[action-if-yes,[action-if-no]])
...
...
configure
View file @
421e8b92
...
@@ -13777,19 +13777,7 @@ else
...
@@ -13777,19 +13777,7 @@ else
ac_wine_try_cflags_saved
=
$CFLAGS
ac_wine_try_cflags_saved
=
$CFLAGS
CFLAGS
=
"
$CFLAGS
-fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
CFLAGS
=
"
$CFLAGS
-fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
cat
>
conftest.
$ac_ext
<<
_ACEOF
cat
>
conftest.
$ac_ext
<<
_ACEOF
/* confdefs.h. */
void myfunc() {}
_ACEOF
cat
confdefs.h
>>
conftest.
$ac_ext
cat
>>
conftest.
$ac_ext
<<
_ACEOF
/* end confdefs.h. */
int
main ()
{
;
return 0;
}
_ACEOF
_ACEOF
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_link
\"
"
)
>
&5
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_link
\"
"
)
>
&5
...
@@ -14150,19 +14138,7 @@ else
...
@@ -14150,19 +14138,7 @@ else
ac_wine_try_cflags_saved
=
$CFLAGS
ac_wine_try_cflags_saved
=
$CFLAGS
CFLAGS
=
"
$CFLAGS
-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
CFLAGS
=
"
$CFLAGS
-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
cat
>
conftest.
$ac_ext
<<
_ACEOF
cat
>
conftest.
$ac_ext
<<
_ACEOF
/* confdefs.h. */
void myfunc() {}
_ACEOF
cat
confdefs.h
>>
conftest.
$ac_ext
cat
>>
conftest.
$ac_ext
<<
_ACEOF
/* end confdefs.h. */
int
main ()
{
;
return 0;
}
_ACEOF
_ACEOF
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_link
\"
"
)
>
&5
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_link
\"
"
)
>
&5
...
@@ -14212,19 +14188,7 @@ else
...
@@ -14212,19 +14188,7 @@ else
ac_wine_try_cflags_saved
=
$CFLAGS
ac_wine_try_cflags_saved
=
$CFLAGS
CFLAGS
=
"
$CFLAGS
-bundle"
CFLAGS
=
"
$CFLAGS
-bundle"
cat
>
conftest.
$ac_ext
<<
_ACEOF
cat
>
conftest.
$ac_ext
<<
_ACEOF
/* confdefs.h. */
void myfunc() {}
_ACEOF
cat
confdefs.h
>>
conftest.
$ac_ext
cat
>>
conftest.
$ac_ext
<<
_ACEOF
/* end confdefs.h. */
int
main ()
{
;
return 0;
}
_ACEOF
_ACEOF
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_link
\"
"
)
>
&5
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_link
\"
"
)
>
&5
...
@@ -14276,6 +14240,57 @@ echo "${ECHO_T}$ac_cv_c_dll_macho" >&6
...
@@ -14276,6 +14240,57 @@ echo "${ECHO_T}$ac_cv_c_dll_macho" >&6
IOKITLIB
=
"-framework IOKit"
IOKITLIB
=
"-framework IOKit"
IOKITLIB
=
"
$IOKITLIB
$COREFOUNDATIONLIB
"
IOKITLIB
=
"
$IOKITLIB
$COREFOUNDATIONLIB
"
else
echo
"
$as_me
:
$LINENO
: checking whether we can build an HP-UX dll"
>
&5
echo
$ECHO_N
"checking whether we can build an HP-UX dll...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_c_dll_hpux
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
ac_wine_try_cflags_saved
=
$CFLAGS
CFLAGS
=
"
$CFLAGS
-shared"
cat
>
conftest.
$ac_ext
<<
_ACEOF
void myfunc() {}
_ACEOF
rm
-f
conftest.
$ac_objext
conftest
$ac_exeext
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_link
\"
"
)
>
&5
(
eval
$ac_link
)
2>conftest.er1
ac_status
=
$?
grep
-v
'^ *+'
conftest.er1
>
conftest.err
rm
-f
conftest.er1
cat
conftest.err
>
&5
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
&&
{
ac_try
=
'test -z "$ac_c_werror_flag" || test ! -s conftest.err'
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_try
\"
"
)
>
&5
(
eval
$ac_try
)
2>&5
ac_status
=
$?
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
;
}
&&
{
ac_try
=
'test -s conftest$ac_exeext'
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_try
\"
"
)
>
&5
(
eval
$ac_try
)
2>&5
ac_status
=
$?
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
;
}
;
then
ac_cv_c_dll_hpux
=
"yes"
else
echo
"
$as_me
: failed program was:"
>
&5
sed
's/^/| /'
conftest.
$ac_ext
>
&5
ac_cv_c_dll_hpux
=
"no"
fi
rm
-f
conftest.err conftest.
$ac_objext
\
conftest
$ac_exeext
conftest.
$ac_ext
CFLAGS
=
$ac_wine_try_cflags_saved
fi
echo
"
$as_me
:
$LINENO
: result:
$ac_cv_c_dll_hpux
"
>
&5
echo
"
${
ECHO_T
}
$ac_cv_c_dll_hpux
"
>
&6
if
test
"
$ac_cv_c_dll_hpux
"
=
"yes"
then
LIBEXT
=
"sl"
LDDLLFLAGS
=
"-shared"
LDSHARED
=
"
\$
(CC) -shared"
fi
fi
fi
fi
fi
fi
fi
...
...
configure.ac
View file @
421e8b92
...
@@ -878,8 +878,8 @@ case $host_os in
...
@@ -878,8 +878,8 @@ case $host_os in
DLLFLAGS="$DLLFLAGS -fPIC"
DLLFLAGS="$DLLFLAGS -fPIC"
DLLEXT=".so"
DLLEXT=".so"
AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf,
AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf,
[WINE_TRY_
C
FLAGS([-fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic],
[WINE_TRY_
SHLIB_
FLAGS([-fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic],
ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")])
ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")])
if test "$ac_cv_c_dll_gnuelf" = "yes"
if test "$ac_cv_c_dll_gnuelf" = "yes"
then
then
LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"
LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"
...
@@ -932,8 +932,8 @@ case $host_os in
...
@@ -932,8 +932,8 @@ case $host_os in
else
else
AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware,
AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware,
[WINE_TRY_
C
FLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic],
[WINE_TRY_
SHLIB_
FLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic],
ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")])
ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")])
if test "$ac_cv_c_dll_unixware" = "yes"
if test "$ac_cv_c_dll_unixware" = "yes"
then
then
LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)"
LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)"
...
@@ -941,7 +941,7 @@ case $host_os in
...
@@ -941,7 +941,7 @@ case $host_os in
else
else
AC_CACHE_CHECK(whether we can build a Mach-O (Mac OS X/Darwin) dll, ac_cv_c_dll_macho,
AC_CACHE_CHECK(whether we can build a Mach-O (Mac OS X/Darwin) dll, ac_cv_c_dll_macho,
[WINE_TRY_
C
FLAGS([-bundle], ac_cv_c_dll_macho="yes", ac_cv_c_dll_macho="no")])
[WINE_TRY_
SHLIB_
FLAGS([-bundle], ac_cv_c_dll_macho="yes", ac_cv_c_dll_macho="no")])
if test "$ac_cv_c_dll_macho" = "yes"
if test "$ac_cv_c_dll_macho" = "yes"
then
then
LIBEXT="dylib"
LIBEXT="dylib"
...
@@ -958,6 +958,15 @@ case $host_os in
...
@@ -958,6 +958,15 @@ case $host_os in
AC_SUBST(IOKITLIB,"-framework IOKit")
AC_SUBST(IOKITLIB,"-framework IOKit")
dnl using IOKit imply we use CoreFoundation too
dnl using IOKit imply we use CoreFoundation too
IOKITLIB = "$IOKITLIB $COREFOUNDATIONLIB"
IOKITLIB = "$IOKITLIB $COREFOUNDATIONLIB"
else
AC_CACHE_CHECK(whether we can build an HP-UX dll, ac_cv_c_dll_hpux,
[WINE_TRY_SHLIB_FLAGS([-shared], ac_cv_c_dll_hpux="yes", ac_cv_c_dll_hpux="no")])
if test "$ac_cv_c_dll_hpux" = "yes"
then
LIBEXT="sl"
LDDLLFLAGS="-shared"
LDSHARED="\$(CC) -shared"
fi
fi
fi
fi
fi
fi
fi
...
...
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