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
b1ff875d
Commit
b1ff875d
authored
Jan 30, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the handling of uuid.
Modify the autoconf script to detect '-z defs' and '-init/-fini'.
parent
98ae5ac1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
5 deletions
+29
-5
winemaker
tools/winemaker
+29
-5
No files found.
tools/winemaker
View file @
b1ff875d
...
@@ -794,12 +794,15 @@ sub source_scan_directory($$$$)
...
@@ -794,12 +794,15 @@ sub source_scan_directory($$$$)
my
$basename
=
$target_name
;
my
$basename
=
$target_name
;
$basename
=~
s/\.(dll|exe)$//i
;
$basename
=~
s/\.(dll|exe)$//i
;
# This is the default link list of Visual Studio, except odbccp32
# This is the default link list of Visual Studio, except odbccp32
#
and uuid
which we don't have in Wine.
# which we don't have in Wine.
my
@std_imports
=
qw(advapi32 comdlg32 gdi32 kernel32 odbc32 ole32 oleaut32 shell32 user32 winspool)
;
my
@std_imports
=
qw(advapi32 comdlg32 gdi32 kernel32 odbc32 ole32 oleaut32 shell32 user32 winspool)
;
my
@std_libraries
=
qw(uuid)
;
if
((
@$target
[
$T_FLAGS
]
&
$TF_NODLLS
)
==
0
)
{
if
((
@$target
[
$T_FLAGS
]
&
$TF_NODLLS
)
==
0
)
{
@$target
[
$T_DLLS
]
=\
@std_imports
;
@$target
[
$T_DLLS
]
=\
@std_imports
;
@$target
[
$T_LIBRARIES
]
=\
@std_libraries
;
}
else
{
}
else
{
@$target
[
$T_DLLS
]
=[]
;
@$target
[
$T_DLLS
]
=[]
;
@$target
[
$T_LIBRARIES
]
=[]
;
}
}
push
@
{
@$project
[
$P_TARGETS
]},
$target
;
push
@
{
@$project
[
$P_TARGETS
]},
$target
;
...
@@ -2377,6 +2380,29 @@ then
...
@@ -2377,6 +2380,29 @@ then
LDSHARED
=
"\$(CC) -shared"
LDSHARED
=
"\$(CC) -shared"
LDXXSHARED
=
"\$(CXX) -shared"
LDXXSHARED
=
"\$(CXX) -shared"
LDDLLFLAGS
=
"-Wl,-Bsymbolic"
LDDLLFLAGS
=
"-Wl,-Bsymbolic"
AC_CACHE_CHECK
([
whether
the
linker
accepts
-
z
defs
],
ac_cv_c_dll_zdefs
,
[
saved_cflags
=
$CFLAGS
CFLAGS
=
"$CFLAGS -fPIC -shared -Wl,-Bsymbolic,-z,defs"
AC_TRY_LINK
(
[]
,
[]
,
ac_cv_c_dll_zdefs
=
"yes"
,
ac_cv_c_dll_zdefs
=
"no"
)
CFLAGS
=
$saved_cflags
])
if
test
"$ac_cv_c_dll_zdefs"
=
"yes"
then
LDDLLFLAGS
=
"$LDDLLFLAGS,-z,defs"
fi
AC_CACHE_CHECK
([
whether
the
linker
accepts
-
init
and
-
fini
],
ac_cv_c_dll_init_fini
,
[
saved_cflags
=
$CFLAGS
CFLAGS
=
"$CFLAGS -fPIC -shared -Wl,-Bsymbolic,-init,__wine_spec_init,-fini,__wine_spec_fini"
AC_TRY_LINK
(
[]
,
[]
,
ac_cv_c_dll_init_fini
=
"yes"
,
ac_cv_c_dll_init_fini
=
"no"
)
CFLAGS
=
$saved_cflags
])
if
test
"$ac_cv_c_dll_init_fini"
=
"yes"
then
AC_DEFINE
(
HAVE_LINKER_INIT_FINI
,
1
,[
Define
if
the
linker
supports
renaming
the
init
and
fini
functions
])
LDDLLFLAGS
=
"$LDDLLFLAGS,-init,__wine_spec_init,-fini,__wine_spec_fini"
fi
else
else
AC_CACHE_CHECK
([
whether
we
can
build
a
UnixWare
(
Solaris
)
dll
],
AC_CACHE_CHECK
([
whether
we
can
build
a
UnixWare
(
Solaris
)
dll
],
ac_cv_c_dll_unixware
,
ac_cv_c_dll_unixware
,
...
@@ -2776,9 +2802,6 @@ LIBS="$WINE_LIBRARY_PATH $LIBS"
...
@@ -2776,9 +2802,6 @@ LIBS="$WINE_LIBRARY_PATH $LIBS"
AC_CHECK_LIB
(
wine_unicode
,
wine_cp_wcstombs
,
[]
,[
AC_CHECK_LIB
(
wine_unicode
,
wine_cp_wcstombs
,
[]
,[
AC_MSG_ERROR
([
Could
not
find
the
Wine
dlls
(
libwine_unicode
.
so
)])
AC_MSG_ERROR
([
Could
not
find
the
Wine
dlls
(
libwine_unicode
.
so
)])
])
])
AC_CHECK_LIB
(
wine_uuid
,
IID_IUnknown
,
[]
,[
AC_MSG_ERROR
([
Could
not
find
the
Wine
dlls
(
libwine_uuid
.
so
)])
])
LIBS
=
"$save_LIBS"
LIBS
=
"$save_LIBS"
...
@@ -2796,6 +2819,7 @@ AC_PATH_FILE(WINE_DLL_ROOT,[libntdll.def],[
...
@@ -2796,6 +2819,7 @@ AC_PATH_FILE(WINE_DLL_ROOT,[libntdll.def],[
AC_MSG_ERROR
([
Could
not
find
the
Wine
dlls
(
libntdll
.
def
)])
AC_MSG_ERROR
([
Could
not
find
the
Wine
dlls
(
libntdll
.
def
)])
],[
$WINE_DLL_ROOT
])
],[
$WINE_DLL_ROOT
])
WINE_DLL_PATH
=
"-L$WINE_DLL_ROOT"
WINE_DLL_PATH
=
"-L$WINE_DLL_ROOT"
WINE_LIBRARY_PATH
=
"$WINE_LIBRARY_PATH -L$WINE_DLL_ROOT"
if
test
-
z
"$WINE_TOOL_PATH"
if
test
-
z
"$WINE_TOOL_PATH"
then
then
...
@@ -3047,7 +3071,7 @@ ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(GLOBAL_DEFINES) $(DEFINES) $(OPTIONS)
...
@@ -3047,7 +3071,7 @@ ALLCFLAGS = $(DIVINCL) $(CFLAGS) $(GLOBAL_DEFINES) $(DEFINES) $(OPTIONS)
ALLCXXFLAGS=$(DIVINCL) $(CXXFLAGS) $(GLOBAL_DEFINES) $(DEFINES) $(OPTIONS)
ALLCXXFLAGS=$(DIVINCL) $(CXXFLAGS) $(GLOBAL_DEFINES) $(DEFINES) $(OPTIONS)
ALL_DLL_PATH = $(DLL_PATH) $(GLOBAL_DLL_PATH) $(WINE_DLL_PATH)
ALL_DLL_PATH = $(DLL_PATH) $(GLOBAL_DLL_PATH) $(WINE_DLL_PATH)
ALL_LIBRARY_PATH = $(LIBRARY_PATH) $(GLOBAL_LIBRARY_PATH) $(WINE_LIBRARY_PATH)
ALL_LIBRARY_PATH = $(LIBRARY_PATH) $(GLOBAL_LIBRARY_PATH) $(WINE_LIBRARY_PATH)
WINE_LIBRARIES = -lwine -lwine_unicode
-lwine_uuid
WINE_LIBRARIES = -lwine -lwine_unicode
ALL_LIBRARIES = $(LIBRARIES:%=-l%) $(GLOBAL_LIBRARIES:%=-l%) $(WINE_LIBRARIES)
ALL_LIBRARIES = $(LIBRARIES:%=-l%) $(GLOBAL_LIBRARIES:%=-l%) $(WINE_LIBRARIES)
LDSHARED = @LDSHARED@
LDSHARED = @LDSHARED@
LDXXSHARED= @LDXXSHARED@
LDXXSHARED= @LDXXSHARED@
...
...
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