From b0a50cf34c1646ca943983d7a34c57360ce062c1 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 16 Apr 2001 03:27:16 +0000 Subject: * autoload.cc: Add winmm functions needed by fhandler_dsp.cc. * fhandler_dsp.cc: New file. Implements OSS like /dev/dsp. * include/sys/soundcard.h: New file. User land includes for OSS /dev/dsp. * fhandler.h: Add new class fhandler_dev_dsp and a FH_OSS_DSP definition. * dtable.cc (dtable::build_fhandler): Allow creation of the /dev/dsp device. * path.cc (windows_device_names): Add /dev/dsp into list of device names. * Makefile.in (DLL_OFILES): Add fhandler_dsp.o. --- winsup/cygwin/Makefile.in | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'winsup/cygwin/Makefile.in') diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index 456c89426..438ff5f65 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -114,11 +114,10 @@ EXTRA_OFILES=$(bupdir1)/libiberty/random.o $(bupdir1)/libiberty/strsignal.o DLL_IMPORTS:=$(w32api_lib)/libkernel32.a DLL_OFILES:=assert.o autoload.o cygheap.o dcrt0.o debug.o delqueue.o dir.o \ - dlfcn.o \ - dll_init.o dtable.o environ.o errno.o exceptions.o exec.o external.o \ - fcntl.o fhandler.o fhandler_clipboard.o fhandler_console.o \ - fhandler_floppy.o fhandler_mem.o fhandler_random.o fhandler_raw.o \ - fhandler_serial.o fhandler_socket.o fhandler_tape.o \ + dlfcn.o dll_init.o dtable.o environ.o errno.o exceptions.o exec.o \ + external.o fcntl.o fhandler.o fhandler_clipboard.o fhandler_console.o \ + fhandler_dsp.o fhandler_floppy.o fhandler_mem.o fhandler_random.o \ + fhandler_raw.o fhandler_serial.o fhandler_socket.o fhandler_tape.o \ fhandler_termios.o fhandler_tty.o fhandler_windows.o fhandler_zero.o \ fork.o glob.o grp.o heap.o init.o ioctl.o localtime.o malloc.o \ miscfuncs.o mmap.o net.o ntea.o passwd.o path.o pinfo.o pipe.o poll.o \ @@ -190,7 +189,7 @@ new-$(LIB_NAME): $(LIB_NAME) new-$(DLL_NAME): $(DLL_OFILES) $(DEF_FILE) $(DLL_IMPORTS) $(LIBC) $(LIBM) Makefile winver_stamp $(CXX) $(CXXFLAGS) -nostdlib -Wl,-shared -o $@ -e $(DLL_ENTRY) $(DEF_FILE) $(DLL_OFILES) version.o \ - winver.o $(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) -lstdc++ -lshell32 -luuid -lgcc + winver.o $(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) -lstdc++ -lgcc -lshell32 -luuid dll_ofiles: $(DLL_OFILES) -- cgit v1.2.3