cvsdist 7ef7941
--- netkit-ftp-0.17/configure.volatile	2004-06-14 12:08:26.000000000 -0400
cvsdist 7ef7941
+++ netkit-ftp-0.17/configure	2004-06-14 12:52:41.000000000 -0400
cvsdist 7ef7941
@@ -193,8 +193,8 @@
cvsdist 7ef7941
 cat <<EOF >__conftest.c
cvsdist 7ef7941
 #include <unistd.h>
cvsdist 7ef7941
 #include <signal.h>
cvsdist 7ef7941
-int count=0;
cvsdist 7ef7941
-void handle(int foo) { count++; }
cvsdist 7ef7941
+volatile int count=0;
cvsdist 7ef7941
+void handle(int foo) { count++; write(1,"X",1);}
cvsdist 7ef7941
 int main() {
cvsdist 7ef7941
     int pid=getpid();
cvsdist 7ef7941
     signal(SIGINT, handle);
cvsdist 7ef7941
@@ -209,20 +209,20 @@
cvsdist 7ef7941
 if (
cvsdist 7ef7941
       $CC $CFLAGS  __conftest.c  -o __conftest || exit 1
cvsdist 7ef7941
       ./__conftest || exit 1
cvsdist 7ef7941
-   ) >/dev/null 2>&1; then
cvsdist 7ef7941
+   ); then
cvsdist 7ef7941
     echo 'yes'
cvsdist 7ef7941
 else
cvsdist 7ef7941
     if (
cvsdist 7ef7941
           $CC $CFLAGS -D__USE_BSD_SIGNAL __conftest.c  -o __conftest || exit 1
cvsdist 7ef7941
           ./__conftest || exit 1
cvsdist 7ef7941
-       ) >/dev/null 2>&1; then
cvsdist 7ef7941
+       ); then
cvsdist 7ef7941
         echo '-D__USE_BSD_SIGNAL'
cvsdist 7ef7941
         CFLAGS="$CFLAGS -D__USE_BSD_SIGNAL"
cvsdist 7ef7941
     else
cvsdist 7ef7941
         echo 'no'
cvsdist 7ef7941
-        echo 'This package needs BSD signal semantics to run.'
cvsdist 7ef7941
-        rm -f __conftest*
cvsdist 7ef7941
-        exit
cvsdist 7ef7941
+        echo '***WARNING***: This package needs BSD signal semantics to run.'
cvsdist 7ef7941
+	echo '***WARNING***: Assuming its just ia64 buildroot breakage.'
cvsdist 7ef7941
+        CFLAGS="$CFLAGS -D__USE_BSD_SIGNAL"
cvsdist 7ef7941
     fi
cvsdist 7ef7941
 fi
cvsdist 7ef7941
 rm -f __conftest*