comparison configure.in @ 90192:173dee4e2611

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-61 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 353-357) - Update from CVS
author Miles Bader <miles@gnu.org>
date Thu, 09 Jun 2005 07:13:03 +0000
parents f042e7c0fe20 cc61f1c86438
children f9a65d7ebd29
comparison
equal deleted inserted replaced
90191:c766b49f5bbd 90192:173dee4e2611
1078 ## Intel 386 machines where we don't care about the manufacturer 1078 ## Intel 386 machines where we don't care about the manufacturer
1079 i[3456]86-*-* ) 1079 i[3456]86-*-* )
1080 machine=intel386 1080 machine=intel386
1081 case "${canonical}" in 1081 case "${canonical}" in
1082 *-cygwin ) opsys=cygwin ;; 1082 *-cygwin ) opsys=cygwin ;;
1083 *-darwin ) opsys=darwin
1084 CPP="${CC-cc} -E -no-cpp-precomp"
1085 ;;
1083 *-lynxos* ) opsys=lynxos ;; 1086 *-lynxos* ) opsys=lynxos ;;
1084 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;; 1087 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;;
1085 *-isc2.2* ) opsys=isc2-2 ;; 1088 *-isc2.2* ) opsys=isc2-2 ;;
1086 *-isc4.0* ) opsys=isc4-0 ;; 1089 *-isc4.0* ) opsys=isc4-0 ;;
1087 *-isc4.* ) opsys=isc4-1 1090 *-isc4.* ) opsys=isc4-1
2343 * ) carbon_appdir=${carbon_appdir_x} ;; 2346 * ) carbon_appdir=${carbon_appdir_x} ;;
2344 esac 2347 esac
2345 fi 2348 fi
2346 # We also have mouse menus. 2349 # We also have mouse menus.
2347 HAVE_MENUS=yes 2350 HAVE_MENUS=yes
2351
2352 tmp_CFLAGS="$CFLAGS"
2353 CFLAGS="$CFLAGS -framework Carbon"
2354 AC_CHECK_FUNC(CancelMenuTracking, have_cmt=yes, have_cmt=no)
2355 if test "$have_cmt" = yes; then
2356 AC_DEFINE(HAVE_CANCELMENUTRACKING, 1,
2357 [Define to 1 if CancelMenuTracking is available (Mac OSX).])
2358 fi
2359 CFLAGS="$tmp_CFLAGS"
2348 fi 2360 fi
2349 2361
2350 ### Use session management (-lSM -lICE) if available 2362 ### Use session management (-lSM -lICE) if available
2351 HAVE_X_SM=no 2363 HAVE_X_SM=no
2352 if test "${HAVE_X11}" = "yes"; then 2364 if test "${HAVE_X11}" = "yes"; then