comparison configure.ac @ 5920:0f2338afbabf cygwin

Minimum necessary to get started: sufficient to compile OK, run -nw, but not with window
author Henry Thompson <ht@markup.co.uk>
date Mon, 21 Apr 2014 11:42:50 +0100
parents 4e69b24a2301
children 4b055de36bb9
comparison
equal deleted inserted replaced
5919:2800105fcc9f 5920:0f2338afbabf
1304 powerpc-ibm-aix* ) machine=ibmrs6000 ;; 1304 powerpc-ibm-aix* ) machine=ibmrs6000 ;;
1305 powerpc*-* ) machine=powerpc ;; 1305 powerpc*-* ) machine=powerpc ;;
1306 hppa-*-* ) machine=hp800 ;; 1306 hppa-*-* ) machine=hp800 ;;
1307 arm* ) machine=arm ;; 1307 arm* ) machine=arm ;;
1308 i[[3-9]]86-*-* ) machine=intel386 ;; 1308 i[[3-9]]86-*-* ) machine=intel386 ;;
1309 x86_64-*-* ) machine=x86_64 ;;
1309 esac 1310 esac
1310 1311
1311 dnl Straightforward OS determination 1312 dnl Straightforward OS determination
1312 case "$ac_cv_build" in 1313 case "$ac_cv_build" in
1313 *-*-linux* ) opsys=linux ;; 1314 *-*-linux* ) opsys=linux ;;
1388 esac 1389 esac
1389 1390
1390 dnl Watch out for a compiler guaranteed not to work. 1391 dnl Watch out for a compiler guaranteed not to work.
1391 test "$opsys $CC" = "sol2 /usr/ucb/cc" && CC="" 1392 test "$opsys $CC" = "sol2 /usr/ucb/cc" && CC=""
1392 ;; 1393 ;;
1394
1395 dnl 64-bit machines where we do not care about the manufacturer
1396 x86_64-*-* )
1397 case "$ac_cv_build" in
1398 *-cygwin* ) opsys=cygwin64 ;;
1399 dnl Otherwise, we fall through to the generic opsys code at the bottom.
1400 esac
1401 ;;
1393 1402
1394 dnl Intel 386 machines where we do not care about the manufacturer 1403 dnl Intel 386 machines where we do not care about the manufacturer
1395 i[[3-9]]86-*-* ) 1404 i[[3-9]]86-*-* )
1396 case "$ac_cv_build" in 1405 case "$ac_cv_build" in
1397 *-mach* ) opsys=mach-bsd4-3 ;; 1406 *-mach* ) opsys=mach-bsd4-3 ;;