diff options
author | Christopher Faylor <me@cgf.cx> | 2000-05-12 05:06:43 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-05-12 05:06:43 +0000 |
commit | ad0bed746deb4fe28e55bf0be80e396464312444 (patch) | |
tree | 42356bb820d04b13e63ebc5c0dbbe2d8032710e9 /winsup/cygwin/Makefile.in | |
parent | cfe11d7465d410cd281f0cdf3296545c0243be2b (diff) | |
download | newlib-ad0bed746deb4fe28e55bf0be80e396464312444.zip newlib-ad0bed746deb4fe28e55bf0be80e396464312444.tar.gz newlib-ad0bed746deb4fe28e55bf0be80e396464312444.tar.bz2 |
* Makefile.in (DLL_OFILES): Sort.
* fhandler_tty.cc (fhandler_tty_slave::send_ioctl_request): Eliminate.
(fhandler_tty_slave::ioctl): Rewrite to avoid races.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index 70c336f..b04b79a 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -118,20 +118,20 @@ DLL_IMPORTS:=$(w32api_lib)/libkernel32.a $(w32api_lib)/libadvapi32.a DLL_OFILES:=assert.o dcrt0.o debug.o delqueue.o dir.o dlfcn.o dll_init.o \ environ.o errno.o exceptions.o exec.o external.o fcntl.o fhandler.o \ - fhandler_console.o fhandler_serial.o fhandler_termios.o fhandler_tty.o \ - fhandler_windows.o fhandler_raw.o fhandler_floppy.o fhandler_tape.o \ - fhandler_zero.o fhandler_random.o \ - fork.o glob.o grp.o heap.o hinfo.o init.o ioctl.o localtime.o malloc.o \ - mmap.o net.o ntea.o passwd.o path.o pinfo.o pipe.o regexp.o regerror.o \ - regsub.o registry.o resource.o scandir.o security.o select.o shared.o \ - signal.o sigproc.o smallprint.o spawn.o strace.o strsep.o sync.o \ - syscalls.o sysconf.o syslog.o termios.o times.o tty.o uinfo.o uname.o \ - wait.o window.o \ + fhandler_console.o fhandler_floppy.o fhandler_random.o fhandler_raw.o \ + fhandler_serial.o fhandler_tape.o fhandler_termios.o fhandler_tty.o \ + fhandler_windows.o fhandler_zero.o fork.o glob.o grp.o heap.o hinfo.o \ + init.o ioctl.o localtime.o malloc.o mmap.o net.o ntea.o passwd.o \ + path.o pinfo.o pipe.o regexp.o regerror.o regsub.o registry.o \ + resource.o scandir.o security.o select.o shared.o signal.o sigproc.o \ + smallprint.o spawn.o strace.o strsep.o sync.o syscalls.o sysconf.o \ + syslog.o termios.o times.o tty.o uinfo.o uname.o wait.o window.o \ $(EXTRA_DLL_OFILES) $(EXTRA_OFILES) $(MT_SAFE_OBJECTS) GMON_OFILES:= gmon.o mcount.o profil.o -LD_STUFF=--dll $(DLL_OFILES) version.o winver.o $(DLL_IMPORTS) $(LIBM) $(LIBC) $(LIBGCC) -e $(DLL_ENTRY) --image-base=0x61000000 +LD_STUFF=--dll $(DLL_OFILES) version.o winver.o $(DLL_IMPORTS) $(LIBM) $(LIBC) \ + $(LIBGCC) -e $(DLL_ENTRY) --image-base=0x61000000 .PHONY: all force dll_ofiles install |