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
e4085d75
Commit
e4085d75
authored
Mar 04, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Make stress.dll into a stand-alone 16-bit module.
parent
49d2c208
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
28 additions
and
5 deletions
+28
-5
.gitignore
.gitignore
+0
-1
configure
configure
+10
-0
configure.ac
configure.ac
+2
-0
Makefile.in
dlls/Makefile.in
+1
-2
Makefile.in
dlls/kernel32/Makefile.in
+0
-2
Makefile.in
dlls/stress.dll16/Makefile.in
+15
-0
stress.c
dlls/stress.dll16/stress.c
+0
-0
stress.dll16.spec
dlls/stress.dll16/stress.dll16.spec
+0
-0
No files found.
.gitignore
View file @
e4085d75
...
...
@@ -110,7 +110,6 @@ dlls/sound.drv16
dlls/stdole2.tlb/std_ole_v2.tlb
dlls/stdole32.tlb/std_ole_v1.tlb
dlls/storage.dll16
dlls/stress.dll16
dlls/system.drv16
dlls/toolhelp.dll16
dlls/twain.dll16
...
...
configure
View file @
e4085d75
...
...
@@ -3904,6 +3904,7 @@ then
enable_ifsmgr_vxd
=
${
enable_ifsmgr_vxd
:-
no
}
enable_mmdevldr_vxd
=
${
enable_mmdevldr_vxd
:-
no
}
enable_monodebg_vxd
=
${
enable_monodebg_vxd
:-
no
}
enable_stress_dll16
=
${
enable_stress_dll16
:-
no
}
enable_vdhcp_vxd
=
${
enable_vdhcp_vxd
:-
no
}
enable_vmm_vxd
=
${
enable_vmm_vxd
:-
no
}
enable_vnbt_vxd
=
${
enable_vnbt_vxd
:-
no
}
...
...
@@ -26827,6 +26828,14 @@ dlls/sti/Makefile: dlls/sti/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/sti/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/stress.dll16/Makefile"
test
"x
$enable_stress_dll16
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
stress.dll16"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
dlls/stress.dll16/Makefile: dlls/stress.dll16/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/stress.dll16/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/strmiids/Makefile"
test
"x
$enable_strmiids
"
!=
xno
&&
ALL_IMPLIB_DIRS
=
"
$ALL_IMPLIB_DIRS
\\
strmiids"
...
...
@@ -28954,6 +28963,7 @@ do
"dlls/stdole2.tlb/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/stdole2.tlb/Makefile" ;;
"dlls/stdole32.tlb/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/stdole32.tlb/Makefile" ;;
"dlls/sti/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/sti/Makefile" ;;
"dlls/stress.dll16/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/stress.dll16/Makefile" ;;
"dlls/strmiids/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/strmiids/Makefile" ;;
"dlls/svrapi/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/svrapi/Makefile" ;;
"dlls/sxs/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/sxs/Makefile" ;;
...
...
configure.ac
View file @
e4085d75
...
...
@@ -141,6 +141,7 @@ then
enable_ifsmgr_vxd=${enable_ifsmgr_vxd:-no}
enable_mmdevldr_vxd=${enable_mmdevldr_vxd:-no}
enable_monodebg_vxd=${enable_monodebg_vxd:-no}
enable_stress_dll16=${enable_stress_dll16:-no}
enable_vdhcp_vxd=${enable_vdhcp_vxd:-no}
enable_vmm_vxd=${enable_vmm_vxd:-no}
enable_vnbt_vxd=${enable_vnbt_vxd:-no}
...
...
@@ -2184,6 +2185,7 @@ WINE_CONFIG_MAKEFILE([dlls/spoolss/tests/Makefile],[dlls/Maketest.rules],[dlls],
WINE_CONFIG_MAKEFILE([dlls/stdole2.tlb/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/stdole32.tlb/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/sti/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/stress.dll16/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/strmiids/Makefile],[dlls/Makeimplib.rules],[dlls],[ALL_IMPLIB_DIRS])
WINE_CONFIG_MAKEFILE([dlls/svrapi/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/sxs/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
...
...
dlls/Makefile.in
View file @
e4085d75
...
...
@@ -49,7 +49,6 @@ WIN16_FILES = \
shell.dll16
\
sound.drv16
\
storage.dll16
\
stress.dll16
\
system.drv16
\
toolhelp.dll16
\
twain.dll16
\
...
...
@@ -91,7 +90,7 @@ dispdib.dll16 gdi.exe16 wing.dll16:
imm.dll16
:
echo
"imm32.dll"
>
$@
comm.drv16 krnl386.exe16 s
tress.dll16 s
ystem.drv16 toolhelp.dll16 win87em.dll16 windebug.dll16
:
comm.drv16 krnl386.exe16 system.drv16 toolhelp.dll16 win87em.dll16 windebug.dll16
:
echo
"kernel32.dll"
>
$@
lzexpand.dll16
:
...
...
dlls/kernel32/Makefile.in
View file @
e4085d75
...
...
@@ -12,7 +12,6 @@ EXTRADLLFLAGS = -Wb,-F,KERNEL32.dll -Wl,--image-base,0x7b800000
SPEC_SRCS16
=
\
comm.drv.spec
\
krnl386.exe.spec
\
stress.spec
\
system.drv.spec
\
toolhelp.spec
\
win87em.spec
\
...
...
@@ -56,7 +55,6 @@ C_SRCS = \
resource16.c
\
selector.c
\
snoop16.c
\
stress.c
\
string.c
\
sync.c
\
syslevel.c
\
...
...
dlls/stress.dll16/Makefile.in
0 → 100644
View file @
e4085d75
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
stress.dll16
IMPORTS
=
kernel32
EXTRADLLFLAGS
=
-Wb
,--subsystem,win16
SPEC_SRCS
=
stress.dll16.spec
C_SRCS
=
stress.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/
kernel32
/stress.c
→
dlls/
stress.dll16
/stress.c
View file @
e4085d75
File moved
dlls/
kernel32/stress
.spec
→
dlls/
stress.dll16/stress.dll16
.spec
View file @
e4085d75
File moved
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