]> sourceware.org Git - newlib-cygwin.git/commitdiff
* errno.cc (errmap): Correct DIRECTORY mapping to ENOTDIR.
authorChristopher Faylor <me@cgf.cx>
Sat, 6 May 2000 03:33:10 +0000 (03:33 +0000)
committerChristopher Faylor <me@cgf.cx>
Sat, 6 May 2000 03:33:10 +0000 (03:33 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/configure
winsup/cygwin/configure.in
winsup/cygwin/errno.cc

index c7d358c003a2b1da5c82ae5058f7f10615444e40..96439a38acd5e2c7c4fd72e598f5a22b5b918475 100644 (file)
@@ -1,3 +1,7 @@
+Fri May  5 23:32:07 2000  Christopher Faylor <cgf@cygnus.com>
+
+       * errno.cc (errmap): Correct DIRECTORY mapping to ENOTDIR.
+
 2000-05-04  Mumit Khan  <khan@xraylith.wisc.edu>
 
        * Makefile.in (install): Install profile startup and library.
index 70603abb3c5b6662853d4e019c05c20100fab2c2..56b2e9afcc5a2376d837ee488d6c4e005a547cfd 100755 (executable)
@@ -885,7 +885,7 @@ echo "$ac_t""$ac_cv_prog_cc_g" 1>&6
   if test "$ac_test_CFLAGS" = set; then
     CFLAGS="$ac_save_CFLAGS"
   elif test $ac_cv_prog_cc_g = yes; then
-    CFLAGS="-g -O2"
+    CFLAGS="-gstabs+ -O2"
   else
     CFLAGS="-O2"
   fi
index ac7d9759dee36b966055b3eb2a8c30f65df147d0..65f252068ad6145bc49b6386b0dbd45210e5340f 100644 (file)
@@ -43,7 +43,7 @@ dnl normal versions of a library), tasteless as that idea is.
   if test "$ac_test_CFLAGS" = set; then
     CFLAGS="$ac_save_CFLAGS"
   elif test $ac_cv_prog_cc_g = yes; then
-    CFLAGS="-g -O2"
+    CFLAGS="-gstabs+ -O2"
   else
     CFLAGS="-O2"
   fi
index 2f51ac588ee72954882d87ed93c97a24134f3b62..8ffd531b858fb1e1d0b12278bae965aff9bdee68 100644 (file)
@@ -79,7 +79,7 @@ errmap[] =
   X (NO_DATA,                  EPIPE),
   X (PIPE_NOT_CONNECTED,       ECOMM),
   X (MORE_DATA,                        EAGAIN),
-  X (DIRECTORY,                        EISDIR),
+  X (DIRECTORY,                        ENOTDIR),
   X (PIPE_CONNECTED,           EBUSY),
   X (PIPE_LISTENING,           ECOMM),
   X (NO_TOKEN,                 EINVAL),
This page took 0.038486 seconds and 5 git commands to generate.