Mercurial > hg > xemacs-beta
comparison configure.in @ 239:41f2f0e326e9 r20-5b18
Import from CVS: tag r20-5b18
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:15:48 +0200 |
parents | 557eaa0339bf |
children | f220cc83d72e |
comparison
equal
deleted
inserted
replaced
238:b5f2e56b938d | 239:41f2f0e326e9 |
---|---|
328 infodir='${datadir}/xemacs-${version}/info' | 328 infodir='${datadir}/xemacs-${version}/info' |
329 infodir_user_defined='no' | 329 infodir_user_defined='no' |
330 dnl BETA NOTE: ! Will you please add to this list? Nonexistent dirs | 330 dnl BETA NOTE: ! Will you please add to this list? Nonexistent dirs |
331 dnl are dropped from the list at runtime, so it is safe to add | 331 dnl are dropped from the list at runtime, so it is safe to add |
332 dnl directories to this list that you don't have at home. | 332 dnl directories to this list that you don't have at home. |
333 infopath='/usr/local/info:/usr/info:/usr/local/lib/texmf/doc/info:/usr/lib/texmf/doc/info' | 333 infopath='/usr/local/lib/texmf/doc/info:/usr/local/lib/texmf/info:/usr/lib/texmf/doc/info:/usr/lib/texmf/info:/usr/local/info:/usr/info' |
334 infopath_user_defined='no' | 334 infopath_user_defined='no' |
335 lispdir='${datadir}/xemacs-${version}/lisp' | 335 lispdir='${datadir}/xemacs-${version}/lisp' |
336 lispdir_user_defined='no' | 336 lispdir_user_defined='no' |
337 sitelispdir='${datadir}/xemacs/site-lisp' | 337 sitelispdir='${datadir}/xemacs/site-lisp' |
338 etcdir='${datadir}/xemacs-${version}/etc' | 338 etcdir='${datadir}/xemacs-${version}/etc' |
725 | 725 |
726 dnl ------------------------- | 726 dnl ------------------------- |
727 dnl Finish options processing | 727 dnl Finish options processing |
728 dnl ------------------------- | 728 dnl ------------------------- |
729 | 729 |
730 if test "$infopath_user_defined" = "no" -a -n "$INFOPATH" ; then | 730 dnl Personal settings shouldn't affect the configuration process. |
731 infopath="$INFOPATH" | 731 dnl if test "$infopath_user_defined" = "no" -a -n "$INFOPATH" ; then |
732 fi | 732 dnl infopath="$INFOPATH" |
733 dnl fi | |
733 | 734 |
734 dnl Get the arguments back. See the diatribe on Shell Magic above. | 735 dnl Get the arguments back. See the diatribe on Shell Magic above. |
735 eval set x "$quoted_arguments"; shift | 736 eval set x "$quoted_arguments"; shift |
736 | 737 |
737 dnl --extra-verbose implies --verbose | 738 dnl --extra-verbose implies --verbose |
1914 | 1915 |
1915 dnl checks for header files | 1916 dnl checks for header files |
1916 AC_CHECK_HEADERS(mach/mach.h sys/stropts.h sys/timeb.h sys/time.h unistd.h) | 1917 AC_CHECK_HEADERS(mach/mach.h sys/stropts.h sys/timeb.h sys/time.h unistd.h) |
1917 AC_CHECK_HEADERS(utime.h locale.h libgen.h fcntl.h ulimit.h) | 1918 AC_CHECK_HEADERS(utime.h locale.h libgen.h fcntl.h ulimit.h) |
1918 AC_CHECK_HEADERS(linux/version.h kstat.h sys/pstat.h inttypes.h limits.h) | 1919 AC_CHECK_HEADERS(linux/version.h kstat.h sys/pstat.h inttypes.h limits.h) |
1920 AC_CHECK_HEADERS(sys/un.h) | |
1919 AC_HEADER_SYS_WAIT | 1921 AC_HEADER_SYS_WAIT |
1920 AC_HEADER_STDC | 1922 AC_HEADER_STDC |
1921 AC_HEADER_TIME | 1923 AC_HEADER_TIME |
1922 AC_DECL_SYS_SIGLIST | 1924 AC_DECL_SYS_SIGLIST |
1923 | 1925 |
2089 if test "$window_system" = "none"; then | 2091 if test "$window_system" = "none"; then |
2090 AC_CHECKING(for MS-Windows) | 2092 AC_CHECKING(for MS-Windows) |
2091 AC_CHECK_LIB(gdi32,main,have_msw=yes) | 2093 AC_CHECK_LIB(gdi32,main,have_msw=yes) |
2092 if test "$have_msw" = "yes"; then | 2094 if test "$have_msw" = "yes"; then |
2093 AC_DEFINE(HAVE_MS_WINDOWS) | 2095 AC_DEFINE(HAVE_MS_WINDOWS) |
2096 XE_APPEND(-lgdi32 -luser32, libs_system) | |
2094 window_system=msw | 2097 window_system=msw |
2095 with_scrollbars=msw | 2098 test "$with_scrollbars" != "no" && with_scrollbars=msw && XE_ADD_OBJS(scrollbar-msw.o) |
2099 test "$with_menubars" != "no" && with_menubars=msw && XE_ADD_OBJS(menubar-msw.o) | |
2096 with_dialogs=msw | 2100 with_dialogs=msw |
2097 with_menubars=no | |
2098 with_toolbars=no | 2101 with_toolbars=no |
2099 with_tty=no | 2102 with_tty=no |
2100 XE_ADD_OBJS(console-msw.o device-msw.o event-msw.o frame-msw.o objects-msw.o select-msw.o redisplay-msw.o msw-proc.o scrollbar-msw.o) | 2103 XE_ADD_OBJS(console-msw.o device-msw.o event-msw.o frame-msw.o objects-msw.o select-msw.o redisplay-msw.o msw-proc.o) |
2101 fi | 2104 fi |
2102 fi | 2105 fi |
2103 | 2106 |
2104 if test "$with_x11" = "yes"; then | 2107 if test "$with_x11" = "yes"; then |
2105 AC_DEFINE(HAVE_X_WINDOWS) | 2108 AC_DEFINE(HAVE_X_WINDOWS) |