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
cfcf5ca2
Commit
cfcf5ca2
authored
Sep 05, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Make the spec file optional for testdll resources.
parent
9ac4f151
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
1 addition
and
20 deletions
+1
-20
Makefile.in
dlls/dinput/tests/Makefile.in
+0
-3
driver_bus.spec
dlls/dinput/tests/driver_bus.spec
+0
-1
driver_hid.spec
dlls/dinput/tests/driver_hid.spec
+0
-1
driver_hid_poll.spec
dlls/dinput/tests/driver_hid_poll.spec
+0
-1
Makefile.in
dlls/ntoskrnl.exe/tests/Makefile.in
+0
-5
driver.spec
dlls/ntoskrnl.exe/tests/driver.spec
+0
-1
driver2.spec
dlls/ntoskrnl.exe/tests/driver2.spec
+0
-1
driver3.spec
dlls/ntoskrnl.exe/tests/driver3.spec
+0
-1
driver_netio.spec
dlls/ntoskrnl.exe/tests/driver_netio.spec
+0
-1
driver_pnp.spec
dlls/ntoskrnl.exe/tests/driver_pnp.spec
+0
-1
makedep.c
tools/makedep.c
+1
-4
No files found.
dlls/dinput/tests/Makefile.in
View file @
cfcf5ca2
...
...
@@ -12,11 +12,8 @@ SOURCES = \
device8.c
\
dinput.c
\
driver_bus.c
\
driver_bus.spec
\
driver_hid.c
\
driver_hid.spec
\
driver_hid_poll.c
\
driver_hid_poll.spec
\
force_feedback.c
\
hid.c
\
hotplug.c
\
...
...
dlls/dinput/tests/driver_bus.spec
deleted
100644 → 0
View file @
9ac4f151
# nothing here yet
dlls/dinput/tests/driver_hid.spec
deleted
100644 → 0
View file @
9ac4f151
# nothing here yet
dlls/dinput/tests/driver_hid_poll.spec
deleted
100644 → 0
View file @
9ac4f151
# nothing here yet
dlls/ntoskrnl.exe/tests/Makefile.in
View file @
cfcf5ca2
...
...
@@ -14,13 +14,8 @@ driver_pnp_EXTRADLLFLAGS = -nodefaultlibs -nostartfiles -Wl,--subsystem,native
SOURCES
=
\
driver.c
\
driver.spec
\
driver2.c
\
driver2.spec
\
driver3.c
\
driver3.spec
\
driver_netio.c
\
driver_netio.spec
\
driver_pnp.c
\
driver_pnp.spec
\
ntoskrnl.c
dlls/ntoskrnl.exe/tests/driver.spec
deleted
100644 → 0
View file @
9ac4f151
# nothing here yet
dlls/ntoskrnl.exe/tests/driver2.spec
deleted
100644 → 0
View file @
9ac4f151
# nothing here yet
dlls/ntoskrnl.exe/tests/driver3.spec
deleted
100644 → 0
View file @
9ac4f151
# nothing here yet
dlls/ntoskrnl.exe/tests/driver_netio.spec
deleted
100644 → 0
View file @
9ac4f151
# nothing here yet
dlls/ntoskrnl.exe/tests/driver_pnp.spec
deleted
100644 → 0
View file @
9ac4f151
# nothing here yet
tools/makedep.c
View file @
cfcf5ca2
...
...
@@ -3077,7 +3077,7 @@ static void output_source_testdll( struct makefile *make, struct incl_file *sour
struct
strarray
dll_flags
=
empty_strarray
;
struct
strarray
default_imports
=
empty_strarray
;
struct
strarray
all_libs
,
dep_libs
;
const
char
*
dll_name
,
*
obj_name
,
*
res_name
,
*
output_rsrc
,
*
output_file
,
*
debug_file
,
*
ext
;
const
char
*
dll_name
,
*
obj_name
,
*
res_name
,
*
output_rsrc
,
*
output_file
,
*
debug_file
,
*
ext
=
".dll"
;
struct
incl_file
*
spec_file
=
find_src_file
(
make
,
strmake
(
"%.spec"
,
obj
));
unsigned
int
arch
;
...
...
@@ -3085,10 +3085,7 @@ static void output_source_testdll( struct makefile *make, struct incl_file *sour
strarray_addall
(
&
dll_flags
,
make
->
extradllflags
);
strarray_addall
(
&
dll_flags
,
get_expanded_file_local_var
(
make
,
obj
,
"EXTRADLLFLAGS"
));
if
(
!
strarray_exists
(
&
dll_flags
,
"-nodefaultlibs"
))
default_imports
=
get_default_imports
(
make
,
imports
);
if
(
strarray_exists
(
&
dll_flags
,
"-mconsole"
))
ext
=
".exe"
;
else
if
(
!
spec_file
)
fatal_error
(
"testdll source %s needs a .spec file
\n
"
,
source
->
name
);
else
ext
=
".dll"
;
for
(
arch
=
0
;
arch
<
archs
.
count
;
arch
++
)
{
...
...
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