]> sourceware.org Git - newlib-cygwin.git/commitdiff
* configure.in: Complain about lack of w32api directory.
authorChristopher Faylor <me@cgf.cx>
Sun, 2 Jun 2002 05:54:33 +0000 (05:54 +0000)
committerChristopher Faylor <me@cgf.cx>
Sun, 2 Jun 2002 05:54:33 +0000 (05:54 +0000)
* configure: Regenerate.

winsup/ChangeLog
winsup/configure
winsup/configure.in

index f6a73679486862004eab5ad36e7ef3fe581faed4..b01edf1b34039d04be0ffc70c3ec1dcf067de0d5 100644 (file)
@@ -1,3 +1,8 @@
+2002-06-02  Christopher Faylor  <cgf@redhat.com>
+
+       * configure.in: Complain about lack of w32api directory.
+       * configure: Regenerate.
+
 2002-04-25  Christopher Faylor  <cgf@redhat.com>
 
        * configure.in: Remove cinstall target.
index f695a0647ca09022726dc8312902b1f3dcb69a44..218c163ea83530321f30c40e79679c29cc4ba972 100755 (executable)
@@ -917,7 +917,12 @@ CXXFLAGS='$(CFLAGS)'
 
 
 SUBDIRS='cygwin'
-test -d $srcdir/w32api && SUBDIRS="w32api $SUBDIRS"
+if test -d $srcdir/w32api; then
+    SUBDIRS="w32api $SUBDIRS"
+else
+    echo "*** missing w32api directory" 1>&2
+    exit 1
+fi
 test -d $srcdir/mingw && SUBDIRS="$SUBDIRS mingw"
 
 case "$with_cross_host" in
@@ -933,7 +938,7 @@ subdirs="$SUBDIRS"
 
 
 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
-echo "configure:937: checking whether ${MAKE-make} sets \${MAKE}" >&5
+echo "configure:942: checking whether ${MAKE-make} sets \${MAKE}" >&5
 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
index 21b3f1b67c133211e63f251804816f999e73ad9c..79d472b9eec974f8f7aaa2ff9d72dcd125807db4 100755 (executable)
@@ -67,7 +67,12 @@ LIB_AC_PROG_CC
 LIB_AC_PROG_CXX
 
 SUBDIRS='cygwin'
-test -d $srcdir/w32api && SUBDIRS="w32api $SUBDIRS"
+if test -d $srcdir/w32api; then
+    SUBDIRS="w32api $SUBDIRS"
+else
+    echo "*** missing w32api directory" 1>&2
+    exit 1
+fi
 test -d $srcdir/mingw && SUBDIRS="$SUBDIRS mingw"
 
 case "$with_cross_host" in
This page took 0.034329 seconds and 5 git commands to generate.