Moved memory/environ.c, memory/virtual.c and misc/cpu.c to

dlls/kernel.
Get rid of the memory/ directory.
This commit is contained in:
Alexandre Julliard 2003-11-13 20:58:55 +00:00
parent 0b2f7a81c9
commit 7999469e7d
9 changed files with 6 additions and 19 deletions

View File

@ -181,7 +181,6 @@ Note: these directories will ultimately get moved into their
respective dlls. respective dlls.
files/ - KERNEL file I/O files/ - KERNEL file I/O
memory/ - KERNEL memory management
misc/ - KERNEL shell, registry, winsock, etc. misc/ - KERNEL shell, registry, winsock, etc.
msdos/ - KERNEL DOS support msdos/ - KERNEL DOS support

7
configure vendored
View File

@ -13292,7 +13292,7 @@ then
cat >>confdefs.h <<_ACEOF cat >>confdefs.h <<_ACEOF
#define SONAME_LIBFONTCONFIG "$ac_cv_lib_soname_fontconfig" #define SONAME_LIBFONTCONFIG "$ac_cv_lib_soname_fontconfig"
_ACEOF _ACEOF
fi; fi
echo "$as_me:$LINENO: checking for -lssl soname" >&5 echo "$as_me:$LINENO: checking for -lssl soname" >&5
echo $ECHO_N "checking for -lssl soname... $ECHO_C" >&6 echo $ECHO_N "checking for -lssl soname... $ECHO_C" >&6
@ -17096,8 +17096,6 @@ esac
ac_config_commands="$ac_config_commands include/wine" ac_config_commands="$ac_config_commands include/wine"
ac_config_commands="$ac_config_commands memory"
ac_config_commands="$ac_config_commands misc" ac_config_commands="$ac_config_commands misc"
ac_config_commands="$ac_config_commands msdos" ac_config_commands="$ac_config_commands msdos"
@ -17871,7 +17869,6 @@ do
"graphics" ) CONFIG_COMMANDS="$CONFIG_COMMANDS graphics" ;; "graphics" ) CONFIG_COMMANDS="$CONFIG_COMMANDS graphics" ;;
"graphics/x11drv" ) CONFIG_COMMANDS="$CONFIG_COMMANDS graphics/x11drv" ;; "graphics/x11drv" ) CONFIG_COMMANDS="$CONFIG_COMMANDS graphics/x11drv" ;;
"include/wine" ) CONFIG_COMMANDS="$CONFIG_COMMANDS include/wine" ;; "include/wine" ) CONFIG_COMMANDS="$CONFIG_COMMANDS include/wine" ;;
"memory" ) CONFIG_COMMANDS="$CONFIG_COMMANDS memory" ;;
"misc" ) CONFIG_COMMANDS="$CONFIG_COMMANDS misc" ;; "misc" ) CONFIG_COMMANDS="$CONFIG_COMMANDS misc" ;;
"msdos" ) CONFIG_COMMANDS="$CONFIG_COMMANDS msdos" ;; "msdos" ) CONFIG_COMMANDS="$CONFIG_COMMANDS msdos" ;;
"objects" ) CONFIG_COMMANDS="$CONFIG_COMMANDS objects" ;; "objects" ) CONFIG_COMMANDS="$CONFIG_COMMANDS objects" ;;
@ -18599,8 +18596,6 @@ echo "$as_me: creating graphics" >&6;} && mkdir "graphics") ;;
echo "$as_me: creating graphics/x11drv" >&6;} && mkdir "graphics/x11drv") ;; echo "$as_me: creating graphics/x11drv" >&6;} && mkdir "graphics/x11drv") ;;
include/wine ) test -d "include/wine" || ({ echo "$as_me:$LINENO: creating include/wine" >&5 include/wine ) test -d "include/wine" || ({ echo "$as_me:$LINENO: creating include/wine" >&5
echo "$as_me: creating include/wine" >&6;} && mkdir "include/wine") ;; echo "$as_me: creating include/wine" >&6;} && mkdir "include/wine") ;;
memory ) test -d "memory" || ({ echo "$as_me:$LINENO: creating memory" >&5
echo "$as_me: creating memory" >&6;} && mkdir "memory") ;;
misc ) test -d "misc" || ({ echo "$as_me:$LINENO: creating misc" >&5 misc ) test -d "misc" || ({ echo "$as_me:$LINENO: creating misc" >&5
echo "$as_me: creating misc" >&6;} && mkdir "misc") ;; echo "$as_me: creating misc" >&6;} && mkdir "misc") ;;
msdos ) test -d "msdos" || ({ echo "$as_me:$LINENO: creating msdos" >&5 msdos ) test -d "msdos" || ({ echo "$as_me:$LINENO: creating msdos" >&5

View File

@ -959,7 +959,7 @@ then
WINE_GET_SONAME(GL,glXQueryExtension,[$X_LIBS $X_EXTRA_LIBS]) WINE_GET_SONAME(GL,glXQueryExtension,[$X_LIBS $X_EXTRA_LIBS])
WINE_GET_SONAME(cups,cupsGetDefault) WINE_GET_SONAME(cups,cupsGetDefault)
WINE_GET_SONAME(jack,jack_client_new) WINE_GET_SONAME(jack,jack_client_new)
WINE_GET_SONAME(fontconfig, FcInit); WINE_GET_SONAME(fontconfig,FcInit)
WINE_GET_SONAME(ssl,SSL_library_init) WINE_GET_SONAME(ssl,SSL_library_init)
WINE_GET_SONAME(crypto,BIO_new_socket) WINE_GET_SONAME(crypto,BIO_new_socket)
WINE_GET_SONAME(ncurses,waddch) WINE_GET_SONAME(ncurses,waddch)
@ -1415,7 +1415,6 @@ WINE_CONFIG_EXTRA_DIR(files)
WINE_CONFIG_EXTRA_DIR(graphics) WINE_CONFIG_EXTRA_DIR(graphics)
WINE_CONFIG_EXTRA_DIR(graphics/x11drv) WINE_CONFIG_EXTRA_DIR(graphics/x11drv)
WINE_CONFIG_EXTRA_DIR(include/wine) WINE_CONFIG_EXTRA_DIR(include/wine)
WINE_CONFIG_EXTRA_DIR(memory)
WINE_CONFIG_EXTRA_DIR(misc) WINE_CONFIG_EXTRA_DIR(misc)
WINE_CONFIG_EXTRA_DIR(msdos) WINE_CONFIG_EXTRA_DIR(msdos)
WINE_CONFIG_EXTRA_DIR(objects) WINE_CONFIG_EXTRA_DIR(objects)

View File

@ -23,9 +23,6 @@ C_SRCS = \
$(TOPOBJDIR)/files/drive.c \ $(TOPOBJDIR)/files/drive.c \
$(TOPOBJDIR)/files/file.c \ $(TOPOBJDIR)/files/file.c \
$(TOPOBJDIR)/files/smb.c \ $(TOPOBJDIR)/files/smb.c \
$(TOPOBJDIR)/memory/environ.c \
$(TOPOBJDIR)/memory/virtual.c \
$(TOPOBJDIR)/misc/cpu.c \
$(TOPOBJDIR)/misc/options.c \ $(TOPOBJDIR)/misc/options.c \
$(TOPOBJDIR)/misc/registry.c \ $(TOPOBJDIR)/misc/registry.c \
$(TOPOBJDIR)/msdos/dpmi.c \ $(TOPOBJDIR)/msdos/dpmi.c \
@ -35,10 +32,12 @@ C_SRCS = \
comm.c \ comm.c \
computername.c \ computername.c \
console.c \ console.c \
cpu.c \
debugger.c \ debugger.c \
device.c \ device.c \
dosmem.c \ dosmem.c \
editline.c \ editline.c \
environ.c \
except.c \ except.c \
fiber.c \ fiber.c \
file.c \ file.c \
@ -76,6 +75,7 @@ C_SRCS = \
toolhelp.c \ toolhelp.c \
utthunk.c \ utthunk.c \
version.c \ version.c \
virtual.c \
vxd.c \ vxd.c \
win87em.c \ win87em.c \
windebug.c \ windebug.c \
@ -99,7 +99,6 @@ EXTRA_OBJS = $(ASM_SRCS:.s=.o)
SUBDIRS = tests SUBDIRS = tests
EXTRASUBDIRS = \ EXTRASUBDIRS = \
$(TOPOBJDIR)/files \ $(TOPOBJDIR)/files \
$(TOPOBJDIR)/memory \
$(TOPOBJDIR)/misc \ $(TOPOBJDIR)/misc \
$(TOPOBJDIR)/msdos \ $(TOPOBJDIR)/msdos \
messages \ messages \

View File

@ -88,7 +88,7 @@ sub read_spec_file {
} }
my @gdi32_dirs = qw(dlls/gdi/enhmfdrv dlls/gdi/mfdrv graphics objects); my @gdi32_dirs = qw(dlls/gdi/enhmfdrv dlls/gdi/mfdrv graphics objects);
my @ntdll_dirs = qw(files memory misc msdos); my @ntdll_dirs = qw(files misc msdos);
my @user32_dirs = qw(controls dlls/user/dde windows); my @user32_dirs = qw(controls dlls/user/dde windows);
push @makefile_in_files, "tools/winebuild/Makefile.in"; push @makefile_in_files, "tools/winebuild/Makefile.in";

View File

@ -1,7 +1,6 @@
% dlls/advapi32/advapi32.spec % dlls/advapi32/advapi32.spec
dlls/advapi32 dlls/advapi32
memory
misc misc
% dlls/avicap32/avicap32.spec % dlls/avicap32/avicap32.spec
@ -199,7 +198,6 @@ dlls/iphlpapi
dlls/kernel dlls/kernel
files files
memory
misc misc
msdos msdos
@ -207,7 +205,6 @@ msdos
dlls/kernel dlls/kernel
files files
memory
msdos msdos
misc misc
@ -249,13 +246,11 @@ dlls/kernel
% dlls/kernel/system.drv.spec % dlls/kernel/system.drv.spec
memory
misc misc
% dlls/kernel/toolhelp.spec % dlls/kernel/toolhelp.spec
dlls/kernel dlls/kernel
memory
% dlls/kernel/win87em.spec % dlls/kernel/win87em.spec