ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/autoconf/configure.in
(Generate patch)

Comparing rxvt-unicode/autoconf/configure.in (file contents):
Revision 1.50 by root, Wed Feb 16 20:32:05 2005 UTC vs.
Revision 1.53 by root, Sun Apr 17 22:36:13 2005 UTC

99support_mousewheel=no 99support_mousewheel=no
100support_mouseslipwheel=no 100support_mouseslipwheel=no
101support_utmp=no 101support_utmp=no
102support_wtmp=no 102support_wtmp=no
103support_lastlog=no 103support_lastlog=no
104support_cursor_blink=no
105support_text_blink=no 104support_text_blink=no
106support_pointer_blank=no 105support_pointer_blank=no
107support_scroll_rxvt=no 106support_scroll_rxvt=no
108support_scroll_next=no 107support_scroll_next=no
109support_scroll_xterm=no 108support_scroll_xterm=no
142 support_selectionscrolling=yes 141 support_selectionscrolling=yes
143 support_lastlog=yes 142 support_lastlog=yes
144 support_menubar=yes 143 support_menubar=yes
145 support_mousewheel=yes 144 support_mousewheel=yes
146 support_mouseslipwheel=yes 145 support_mouseslipwheel=yes
147 support_cursor_blink=yes
148 support_text_blink=yes 146 support_text_blink=yes
149 support_pointer_blank=yes 147 support_pointer_blank=yes
150 support_scroll_rxvt=yes 148 support_scroll_rxvt=yes
151 support_scroll_next=yes 149 support_scroll_next=yes
152 support_scroll_xterm=yes 150 support_scroll_xterm=yes
421 419
422AC_ARG_ENABLE(smart-resize, 420AC_ARG_ENABLE(smart-resize,
423 [ --enable-smart-resize enable smart growth/shrink behaviour], 421 [ --enable-smart-resize enable smart growth/shrink behaviour],
424 [if test x$enableval = xyes; then 422 [if test x$enableval = xyes; then
425 AC_DEFINE(SMART_RESIZE, 1, Define to use "smart" resize behavior) 423 AC_DEFINE(SMART_RESIZE, 1, Define to use "smart" resize behavior)
426 fi])
427
428AC_ARG_ENABLE(cursor-blink,
429 [ --enable-cursor-blink enable blinking cursor],
430 [if test x$enableval = xyes -o x$enableval = xno; then
431 support_cursor_blink=$enableval
432 fi]) 424 fi])
433 425
434AC_ARG_ENABLE(text-blink, 426AC_ARG_ENABLE(text-blink,
435 [ --enable-text-blink enable blinking text], 427 [ --enable-text-blink enable blinking text],
436 [if test x$enableval = xyes -o x$enableval = xno; then 428 [if test x$enableval = xyes -o x$enableval = xno; then
707 unlockpt \ 699 unlockpt \
708 isastream \ 700 isastream \
709 on_exit \ 701 on_exit \
710 nanosleep \ 702 nanosleep \
711 updwtmp \ 703 updwtmp \
704 updwtmpx \
712 ttyslot \ 705 ttyslot \
713) 706)
714dnl# Note: On NetBSD, openpty() exists in libutil. Don't pull it in 707dnl# Note: On NetBSD, openpty() exists in libutil. Don't pull it in
715 708
716dnl# -------------------------------------------------------------------------- 709dnl# --------------------------------------------------------------------------
759[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h> 752[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
760#include <utmpx.h>]], [[struct utmpx utx; utx.ut_host;]])],[rxvt_cv_struct_utmpx_host=yes],[rxvt_cv_struct_utmpx_host=no])]) 753#include <utmpx.h>]], [[struct utmpx utx; utx.ut_host;]])],[rxvt_cv_struct_utmpx_host=yes],[rxvt_cv_struct_utmpx_host=no])])
761if test x$rxvt_cv_struct_utmpx_host = xyes; then 754if test x$rxvt_cv_struct_utmpx_host = xyes; then
762 AC_DEFINE(HAVE_UTMPX_HOST, 1, Define if struct utmpx contains ut_host) 755 AC_DEFINE(HAVE_UTMPX_HOST, 1, Define if struct utmpx contains ut_host)
763fi 756fi
757
758AC_CACHE_CHECK(for session in utmpx struct, rxvt_cv_struct_utmpx_session,
759[AC_TRY_COMPILE([#include <sys/types.h>
760#include <utmpx.h>],
761[struct utmpx utx; utx.ut_session;],
762rxvt_cv_struct_utmpx_session=yes, rxvt_cv_struct_utmpx_session=no)])
763if test x$rxvt_cv_struct_utmpx_session = xyes; then
764 AC_DEFINE(HAVE_UTMPX_SESSION, 1, Define if struct utmpx contains ut_session)
765fi
764) dnl# AC_CHECK_HEADER(utmpx.h 766) dnl# AC_CHECK_HEADER(utmpx.h
765
766 767
767dnl# -------------------------------------------------------------------------- 768dnl# --------------------------------------------------------------------------
768dnl# check for struct lastlog 769dnl# check for struct lastlog
769AC_CACHE_CHECK(for struct lastlog, rxvt_cv_struct_lastlog, 770AC_CACHE_CHECK(for struct lastlog, rxvt_cv_struct_lastlog,
770[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h> 771[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
1271 scrolltypes="$scrolltypes plain" 1272 scrolltypes="$scrolltypes plain"
1272fi 1273fi
1273if test x$support_pointer_blank = xyes; then 1274if test x$support_pointer_blank = xyes; then
1274 AC_DEFINE(POINTER_BLANK, 1, Define if you want hide the pointer while typing) 1275 AC_DEFINE(POINTER_BLANK, 1, Define if you want hide the pointer while typing)
1275fi 1276fi
1276if test x$support_cursor_blink = xyes; then
1277 AC_DEFINE(CURSOR_BLINK, 1, Define if you want blinking cursor support)
1278fi
1279if test x$support_text_blink = xyes; then 1277if test x$support_text_blink = xyes; then
1280 AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support) 1278 AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support)
1281fi 1279fi
1282if test x$support_unicode3 = xyes; then 1280if test x$support_unicode3 = xyes; then
1283 AC_DEFINE(UNICODE_3, 1, Define if you want to represent unicode characters outside plane 0) 1281 AC_DEFINE(UNICODE_3, 1, Define if you want to represent unicode characters outside plane 0)
1443 echo ". functions could not be found. ." 1441 echo ". functions could not be found. ."
1444 echo ". XIM is now being DISABLED! ." 1442 echo ". XIM is now being DISABLED! ."
1445 echo ".----------------------------------------------------------------." 1443 echo ".----------------------------------------------------------------."
1446fi 1444fi
1447 1445
1448echo " *** Please check src/feature.h for further options ***" 1446echo " *** Optionally check src/feature.h for further options ***"
1449echo 1447echo
1450 1448
1451echo ".----------------------------------------------------------------." 1449echo ".----------------------------------------------------------------."
1452echo ". NOTE: most features are disabled by default, try ." 1450echo ". NOTE: most features are disabled by default, try ."
1453echo ". configure --help to get an idea of the optional features ." 1451echo ". configure --help to get an idea of the optional features, ."
1452echo ". or read ./README.configure ."
1453echo ". ."
1454echo ". The script ./reconf gives a reasonable baseline, try it if ."
1455echo ". you do not want to read documentation and still want some ."
1456echo ". useful features. ."
1454echo ".----------------------------------------------------------------." 1457echo ".----------------------------------------------------------------."
1455echo 1458echo
1456 1459

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines