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
f21cb01a
Commit
f21cb01a
authored
Jun 14, 2016
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Don't allow import libraries to have an extension.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
509b1eb1
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
12 additions
and
11 deletions
+12
-11
configure
configure
+2
-2
configure.ac
configure.ac
+2
-2
Makefile.in
dlls/hidclass.sys/Makefile.in
+1
-1
Makefile.in
dlls/mountmgr.sys/Makefile.in
+1
-1
Makefile.in
dlls/ntoskrnl.exe/Makefile.in
+1
-1
Makefile.in
dlls/scsiport.sys/Makefile.in
+1
-1
Makefile.in
dlls/usbd.sys/Makefile.in
+2
-2
Makefile.in
programs/winedevice/Makefile.in
+1
-1
make_makefiles
tools/make_makefiles
+1
-0
No files found.
configure
View file @
f21cb01a
...
...
@@ -17901,7 +17901,7 @@ wine_fn_config_dll ntdll enable_ntdll implib
wine_fn_config_test dlls/ntdll/tests ntdll_test
wine_fn_config_dll ntdsapi enable_ntdsapi implib
wine_fn_config_test dlls/ntdsapi/tests ntdsapi_test
wine_fn_config_dll ntoskrnl.exe enable_ntoskrnl_exe implib
wine_fn_config_dll ntoskrnl.exe enable_ntoskrnl_exe implib
ntoskrnl
wine_fn_config_dll ntprint enable_ntprint
wine_fn_config_test dlls/ntprint/tests ntprint_test
wine_fn_config_dll objsel enable_objsel clean
...
...
@@ -18047,7 +18047,7 @@ wine_fn_config_dll updspapi enable_updspapi
wine_fn_config_dll url enable_url implib
wine_fn_config_dll urlmon enable_urlmon clean,implib
wine_fn_config_test dlls/urlmon/tests urlmon_test
wine_fn_config_dll usbd.sys enable_usbd_sys implib
wine_fn_config_dll usbd.sys enable_usbd_sys implib
usbd
wine_fn_config_dll user.exe16 enable_win16
wine_fn_config_dll user32 enable_user32 clean,implib
wine_fn_config_test dlls/user32/tests user32_test
...
...
configure.ac
View file @
f21cb01a
...
...
@@ -3147,7 +3147,7 @@ WINE_CONFIG_DLL(ntdll,,[implib])
WINE_CONFIG_TEST(dlls/ntdll/tests)
WINE_CONFIG_DLL(ntdsapi,,[implib])
WINE_CONFIG_TEST(dlls/ntdsapi/tests)
WINE_CONFIG_DLL(ntoskrnl.exe,,[implib])
WINE_CONFIG_DLL(ntoskrnl.exe,,[implib]
,[ntoskrnl]
)
WINE_CONFIG_DLL(ntprint)
WINE_CONFIG_TEST(dlls/ntprint/tests)
WINE_CONFIG_DLL(objsel,,[clean])
...
...
@@ -3293,7 +3293,7 @@ WINE_CONFIG_DLL(updspapi)
WINE_CONFIG_DLL(url,,[implib])
WINE_CONFIG_DLL(urlmon,,[clean,implib])
WINE_CONFIG_TEST(dlls/urlmon/tests)
WINE_CONFIG_DLL(usbd.sys,,[implib])
WINE_CONFIG_DLL(usbd.sys,,[implib]
,[usbd]
)
WINE_CONFIG_DLL(user.exe16,enable_win16)
WINE_CONFIG_DLL(user32,,[clean,implib])
WINE_CONFIG_TEST(dlls/user32/tests)
...
...
dlls/hidclass.sys/Makefile.in
View file @
f21cb01a
MODULE
=
hidclass.sys
IMPORTLIB
=
hidclass
IMPORTS
=
ntoskrnl
.exe
IMPORTS
=
ntoskrnl
DELAYIMPORTS
=
setupapi hid
C_SRCS
=
\
...
...
dlls/mountmgr.sys/Makefile.in
View file @
f21cb01a
MODULE
=
mountmgr.sys
IMPORTS
=
uuid advapi32 ntoskrnl
.exe
IMPORTS
=
uuid advapi32 ntoskrnl
DELAYIMPORTS
=
user32
EXTRADLLFLAGS
=
-Wb
,--subsystem,native
EXTRAINCL
=
$(DBUS_CFLAGS)
$(HAL_CFLAGS)
...
...
dlls/ntoskrnl.exe/Makefile.in
View file @
f21cb01a
MODULE
=
ntoskrnl.exe
IMPORTLIB
=
ntoskrnl
.exe
IMPORTLIB
=
ntoskrnl
C_SRCS
=
\
instr.c
\
...
...
dlls/scsiport.sys/Makefile.in
View file @
f21cb01a
MODULE
=
scsiport.sys
IMPORTS
=
ntoskrnl
.exe
IMPORTS
=
ntoskrnl
EXTRADLLFLAGS
=
-Wb
,--subsystem,native
C_SRCS
=
\
...
...
dlls/usbd.sys/Makefile.in
View file @
f21cb01a
MODULE
=
usbd.sys
IMPORTLIB
=
usbd
.sys
IMPORTS
=
ntoskrnl
.exe
IMPORTLIB
=
usbd
IMPORTS
=
ntoskrnl
EXTRADLLFLAGS
=
-Wb
,--subsystem,native
C_SRCS
=
\
...
...
programs/winedevice/Makefile.in
View file @
f21cb01a
MODULE
=
winedevice.exe
APPMODE
=
-mwindows
-municode
IMPORTS
=
advapi32 ntoskrnl
.exe
IMPORTS
=
advapi32 ntoskrnl
C_SRCS
=
\
device.c
tools/make_makefiles
View file @
f21cb01a
...
...
@@ -485,6 +485,7 @@ sub update_makefiles(@)
die
"Invalid MODULE in $file"
unless
$make
{
"MODULE"
}
eq
"$name.dll"
;
}
my
$implib
=
$make
{
"IMPORTLIB"
}
||
""
;
die
"Invalid IMPORTLIB name in $file"
if
$implib
=~
/\./
;
$args
.=
","
if
$is_win16
||
defined
$make
{
"=flags"
};
$args
.=
"enable_win16"
if
$is_win16
;
$args
.=
$flag_args
;
...
...
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