comparison configure.in @ 107440:a83a89ef11ef

Remove support for old UNIX System V systems. * s/unixware.h: Add the contents of s/usg-5-4-2.h. * s/usg-5-4-2.h: Remove. * configure.in: Remove support for old UNIX System V systems and for Unixware on non-x86 machines.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 19 Mar 2010 23:48:13 -0700
parents ed20cbe62401
children dbd787c249c5
comparison
equal deleted inserted replaced
107439:ed20cbe62401 107440:a83a89ef11ef
637 ### runs, it's cleaner to make it explicit in the case statement 637 ### runs, it's cleaner to make it explicit in the case statement
638 ### above. 638 ### above.
639 if test x"${opsys}" = x; then 639 if test x"${opsys}" = x; then
640 case "${canonical}" in 640 case "${canonical}" in
641 *-gnu* ) opsys=gnu ;; 641 *-gnu* ) opsys=gnu ;;
642 *-sysv4.2uw* ) opsys=unixware ;;
643 *-sysv5uw* ) opsys=unixware ;;
644 *-sysv5OpenUNIX* ) opsys=unixware ;;
645 *-sysv4.1* | *-sysvr4.1* )
646 NON_GNU_CPP=/usr/lib/cpp
647 opsys=usg5-4 ;;
648 *-sysv4.[2-9]* | *-sysvr4.[2-9]* )
649 if [ x$NON_GNU_CPP = x ]; then
650 if [ -f /usr/ccs/lib/cpp ]; then
651 NON_GNU_CPP=/usr/ccs/lib/cpp
652 else
653 NON_GNU_CPP=/lib/cpp
654 fi
655 fi
656 opsys=usg5-4-2 ;;
657 *-sysv4* | *-sysvr4* ) opsys=usg5-4 ;;
658 * ) 642 * )
659 unported=yes 643 unported=yes
660 ;; 644 ;;
661 esac 645 esac
662 fi 646 fi