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

Comparing rxvt-unicode/configure.ac (file contents):
Revision 1.76 by ayin, Tue Sep 18 12:17:58 2007 UTC vs.
Revision 1.93 by ayin, Tue Dec 11 09:04:34 2007 UTC

15DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 15DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
16dnl LIBVERSION=`sed -n -e 's/^.*[ \t]LIBVERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 16dnl LIBVERSION=`sed -n -e 's/^.*[ \t]LIBVERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
17changequote([, ])dnl 17changequote([, ])dnl
18AC_SUBST(VERSION)dnl 18AC_SUBST(VERSION)dnl
19AC_SUBST(DATE)dnl 19AC_SUBST(DATE)dnl
20AC_SUBST(LSMDATE)dnl
21AC_SUBST(LIBVERSION)dnl 20dnl AC_SUBST(LIBVERSION)dnl
21
22echo "" 22echo ""
23echo "configuring for rxvt $VERSION" 23echo "configuring for rxvt $VERSION"
24echo "" 24echo ""
25 25
26orig_CXXFLAGS="$CXXFLAGS" 26orig_CXXFLAGS="$CXXFLAGS"
27 27
28dnl# Checks for programs. 28dnl# Checks for programs.
29dnl AC_MAKE_SET
30
31AC_PROG_CC 29AC_PROG_CC
32AC_PROG_CXX 30AC_PROG_CXX
33AC_PROG_CPP 31AC_PROG_CPP
34AC_PROG_INSTALL 32AC_PROG_INSTALL
35 33
36AC_AIX 34AC_AIX
35AC_GNU_SOURCE
37AC_ISC_POSIX 36AC_ISC_POSIX
38AC_LANG(C++) 37AC_LANG(C++)
39 38
40dnl check wether we can link with gcc -lsupc++ 39dnl check wether we can link with gcc -lsupc++
41if test x$GCC = xyes && test x$GXX = xyes; then 40if test x$GCC = xyes && test x$GXX = xyes; then
62dnl# -------------------------------------------------------------------------- 61dnl# --------------------------------------------------------------------------
63dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure' 62dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure'
64dnl# 63dnl#
65if test -z "$orig_CXXFLAGS"; then 64if test -z "$orig_CXXFLAGS"; then
66 if test x$GCC = xyes && test "x$GXX" = xyes; then 65 if test x$GCC = xyes && test "x$GXX" = xyes; then
67 CXXFLAGS="-g -O3 -fno-threadsafe-statics -fno-enforce-eh-specs" 66 CXXFLAGS="-g -O3 -fno-rtti -fvisibility-inlines-hidden -fno-threadsafe-statics -fno-enforce-eh-specs"
68 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="-g -O3"]) 67 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="-g -O3"])
69 else 68 else
70 CXXFLAGS="-O" 69 CXXFLAGS="-O"
71 fi 70 fi
72 CFLAGS="$CXXFLAGS" 71 CFLAGS="$CXXFLAGS"
73fi 72fi
74
75AC_DEFINE(_GNU_SOURCE, 1, Use all glibc features.)
76 73
77case $host in 74case $host in
78 *-*-solaris* ) 75 *-*-solaris* )
79 AC_DEFINE(_XOPEN_SOURCE, 500, Needed to get declarations for msg_control and msg_controllen on Solaris) 76 AC_DEFINE(_XOPEN_SOURCE, 500, Needed to get declarations for msg_control and msg_controllen on Solaris)
80 ;; 77 ;;
81esac 78esac
82
83dnl if test x$GXX = xyes; then
84dnl CXXFLAGS="$CXXFLAGS" dnl I once had -fno-exceptions, but I am using them now...
85dnl fi
86 79
87dnl# FreeBSD needs to link libxpg4 80dnl# FreeBSD needs to link libxpg4
88AC_CHECK_FUNC(setlocale, [], [AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])]) 81AC_CHECK_FUNC(setlocale, [], [AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])])
89 82
90dnl# solaris needs to link libnsl and socket 83dnl# solaris needs to link libnsl and socket
122 115
123dnl# -------------------------------------------------------------------------- 116dnl# --------------------------------------------------------------------------
124dnl# CHECKING COMMAND LINE OPTIONS 117dnl# CHECKING COMMAND LINE OPTIONS
125dnl# -------------------------------------------------------------------------- 118dnl# --------------------------------------------------------------------------
126 119
127if test "x$enable_shared" = xyes; then 120dnl if test "x$enable_shared" = xyes; then
128 AC_DEFINE(LIBRXVT, 1, Build shared library version - specify via configure only) 121dnl AC_DEFINE(LIBRXVT, 1, Build shared library version - specify via configure only)
129 INSTALL_LIBRXVT=yes 122dnl INSTALL_LIBRXVT=yes
130fi 123dnl fi
131AC_SUBST(INSTALL_LIBRXVT) 124dnl AC_SUBST(INSTALL_LIBRXVT)
132 125
133AC_ARG_ENABLE(everything, 126AC_ARG_ENABLE(everything,
134 [ --enable-everything enable standard non-multichoice features 127 [ --enable-everything enable standard non-multichoice features
135 NOTE: this option is order dependent 128 NOTE: this option is order dependent],
136 NOTE: automatically enabled with --enable-shared],
137 [ 129 [
138 if test x$enableval = xno; then 130 if test x$enableval = xno; then
139 support_frills=no 131 support_frills=no
140 support_inheritpixmap=no 132 support_inheritpixmap=no
141 support_fading=no 133 support_fading=no
193 support_perl=yes 185 support_perl=yes
194 codesets=all 186 codesets=all
195 fi 187 fi
196 ]) 188 ])
197 189
190WARNINGS=no
191AC_ARG_ENABLE(warnings,
192 [ --enable-warnings turn on g++ warnings],
193 [if test x$enableval = xyes; then
194 WARNINGS=yes
195 fi])
196if test x$GXX = xyes; then
197 if test $WARNINGS = yes; then
198 save_CXXFLAGS="$CXXFLAGS"
199 CXXFLAGS="$CXXFLAGS -Wall -Wno-sign-compare -Wno-reorder -Wno-non-virtual-dtor"
200 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="$save_CXXFLAGS"])
201 else
202 CXXFLAGS="$CXXFLAGS -w"
203 fi
204fi
205
198AC_ARG_ENABLE(unicode3, 206AC_ARG_ENABLE(unicode3,
199 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters], 207 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters],
200 [if test x$enableval = xyes -o x$enableval = xno; then 208 [if test x$enableval = xyes -o x$enableval = xno; then
201 support_unicode3=$enableval 209 support_unicode3=$enableval
202 fi]) 210 fi])
265 [ --enable-xterm-scroll enable Xterm style scrollbar], 273 [ --enable-xterm-scroll enable Xterm style scrollbar],
266 [if test x$enableval = xyes -o x$enableval = xno; then 274 [if test x$enableval = xyes -o x$enableval = xno; then
267 support_scroll_xterm=$enableval 275 support_scroll_xterm=$enableval
268 fi]) 276 fi])
269 277
278AC_ARG_ENABLE(plain-scroll,
279 [ --enable-plain-scroll enable plain style scrollbar],
280 [if test x$enableval = xyes -o x$enableval = xno; then
281 support_scroll_plain=$enableval
282 fi])
283
270AC_ARG_ENABLE(perl, 284AC_ARG_ENABLE(perl,
271 [ --enable-perl enable embedded perl interpreter], 285 [ --enable-perl enable embedded perl interpreter],
272 [if test x$enableval = xyes -o x$enableval = xno; then 286 [if test x$enableval = xyes -o x$enableval = xno; then
273 support_perl=$enableval 287 support_perl=$enableval
274 fi]) 288 fi])
275 289
276AC_ARG_ENABLE(plain-scroll,
277 [ --enable-plain-scroll enable plain style scrollbar],
278 [if test x$enableval = xyes -o x$enableval = xno; then
279 support_scroll_plain=$enableval
280 fi])
281
282AC_ARG_WITH(codesets, 290AC_ARG_WITH(codesets,
283 [ --with-codesets=NAME,.. compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)], 291 [ --with-codesets=CS,... compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)],
284 [codesets="$withval"]) 292 [codesets="$withval"])
285 293
286AC_ARG_ENABLE(xim, 294AC_ARG_ENABLE(xim,
287 [ --enable-xim XIM (X Input Method) protocol support], 295 [ --enable-xim XIM (X Input Method) protocol support],
288 [if test x$enableval = xyes -o x$enableval = xno; then 296 [if test x$enableval = xyes -o x$enableval = xno; then
313 support_8bitctrls=$enableval 321 support_8bitctrls=$enableval
314 fi]) 322 fi])
315 323
316RESFALLBACK=Rxvt 324RESFALLBACK=Rxvt
317AC_ARG_ENABLE(fallback, 325AC_ARG_ENABLE(fallback,
318 [ --enable-fallback(=CLASS) fall back on CLASS resources in addition to URxvt ones (default: Rxvt)], 326 [ --enable-fallback@<:@=CLASS@:>@ fall back on CLASS resources in addition to URxvt ones (default: Rxvt)],
319 [ 327 [
320 test x$enableval = xyes && enableval=Rxvt 328 test x$enableval = xyes && enableval=Rxvt
321 test x$enableval = xno && enableval= 329 test x$enableval = xno && enableval=
322 RESFALLBACK="$enableval" 330 RESFALLBACK="$enableval"
323 ]) 331 ])
382 [if test x$enableval = xyes -o x$enableval = xno; then 390 [if test x$enableval = xyes -o x$enableval = xno; then
383 support_mousewheel=$enableval 391 support_mousewheel=$enableval
384 fi]) 392 fi])
385 393
386AC_ARG_ENABLE(slipwheeling, 394AC_ARG_ENABLE(slipwheeling,
387 [ --enable-slipwheeling enable slip wheel scrolling (requires previous)], 395 [ --enable-slipwheeling enable slip wheel scrolling (requires --enable-mousewheel)],
388 [if test x$enableval = xyes -o x$enableval = xno; then 396 [if test x$enableval = xyes -o x$enableval = xno; then
389 support_mouseslipwheel=$enableval 397 support_mouseslipwheel=$enableval
390 fi]) 398 fi])
391 399
392AC_ARG_ENABLE(smart-resize, 400AC_ARG_ENABLE(smart-resize,
419 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval" 427 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval"
420 fi]) 428 fi])
421 429
422dnl# -------------------------------------------------------------------------- 430dnl# --------------------------------------------------------------------------
423 431
432LIBEV_M4_AVOID_LIBRT=1
433m4_include([libev/libev.m4])
434
435dnl# --------------------------------------------------------------------------
436
424AC_PATH_PROG(TIC, tic, :) 437AC_PATH_PROG(TIC, tic, :)
425
426dnl# need a neat way to detect SVR4 or its features
427dnl# in src/command.c we use these functions:
428dnl# grantpt(), unlockpt(), ptsname(), which are defined in <sys/ptms.h>
429dnl# - but are these also defined for other systems?
430
431dnl# hack to find if this is SVR4 -- who knows?
432dnl## AC_MSG_CHECKING(for SVR4)
433dnl## AC_EGREP_CPP(yes,
434dnl## [#if defined (SVR4) || defined (_SVR4) || defined (__svr4__)
435dnl## yes;
436dnl## #endif
437dnl## ], [AC_MSG_RESULT(yes); AC_DEFINE(PERHAPS_SVR4)], AC_MSG_RESULT(perhaps not?))
438 438
439AC_PATH_XTRA 439AC_PATH_XTRA
440 440
441AFTERIMAGE_CFLAGS= 441AFTERIMAGE_CFLAGS=
442AFTERIMAGE_LIBS= 442AFTERIMAGE_LIBS=
474fi 474fi
475 475
476dnl# -------------------------------------------------------------------------- 476dnl# --------------------------------------------------------------------------
477dnl# CHECKING FOR HEADER FILES 477dnl# CHECKING FOR HEADER FILES
478dnl# -------------------------------------------------------------------------- 478dnl# --------------------------------------------------------------------------
479AC_HEADER_SYS_WAIT
480AC_CHECK_HEADERS( \ 479AC_CHECK_HEADERS( \
481 assert.h \ 480 assert.h \
482 fcntl.h \ 481 fcntl.h \
483 stdarg.h \ 482 stdarg.h \
484 stdlib.h \ 483 stdlib.h \
489 sys/ioctl.h \ 488 sys/ioctl.h \
490 sys/select.h \ 489 sys/select.h \
491 sys/sockio.h \ 490 sys/sockio.h \
492 sys/strredir.h \ 491 sys/strredir.h \
493 sys/time.h \ 492 sys/time.h \
493 time.h \
494 stdint.h \ 494 stdint.h \
495 wchar.h \ 495 wchar.h \
496 cwchar \ 496 cwchar \
497 clocale \ 497 clocale \
498) 498)
499
500AC_HEADER_TIME
501 499
502dnl# check to allow both <termios.h> and <sys/ioctl.h> 500dnl# check to allow both <termios.h> and <sys/ioctl.h>
503AC_CACHE_CHECK(whether termios.h and sys/ioctl.h may both be included, rxvt_cv_header_sysioctl, 501AC_CACHE_CHECK(whether termios.h and sys/ioctl.h may both be included, rxvt_cv_header_sysioctl,
504[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h> 502[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
505#include <sys/ioctl.h> 503#include <sys/ioctl.h>
525 [rxvt_xlib_illegal_access=yes],[rxvt_xlib_illegal_access=no] 523 [rxvt_xlib_illegal_access=yes],[rxvt_xlib_illegal_access=no]
526)]) 524)])
527if test x$rxvt_xlib_illegal_access = xyes; then 525if test x$rxvt_xlib_illegal_access = xyes; then
528 AC_DEFINE(XLIB_ILLEGAL_ACCESS, 1, Define ONLY iff Xlib.h supports it) 526 AC_DEFINE(XLIB_ILLEGAL_ACCESS, 1, Define ONLY iff Xlib.h supports it)
529fi 527fi
530
531AC_C_CONST
532AC_C_INLINE
533
534dnl> AC_HEADER_STDC dnl# skip this test, Sun always fails anyhow.
535 528
536dnl# -------------------------------------------------------------------------- 529dnl# --------------------------------------------------------------------------
537dnl# CHECKING FOR MISSING TYPEDEFS 530dnl# CHECKING FOR MISSING TYPEDEFS
538dnl# -------------------------------------------------------------------------- 531dnl# --------------------------------------------------------------------------
539dnl# Missing typedefs and replacements 532dnl# Missing typedefs and replacements
623AC_SUBST(rxvt_u_intp_define) 616AC_SUBST(rxvt_u_intp_define)
624 617
625dnl# -------------------------------------------------------------------------- 618dnl# --------------------------------------------------------------------------
626dnl# CHECKING FOR LIBRARY FUNCTIONS 619dnl# CHECKING FOR LIBRARY FUNCTIONS
627dnl# -------------------------------------------------------------------------- 620dnl# --------------------------------------------------------------------------
628AC_TYPE_SIGNAL 621AC_CHECK_FUNCS(unsetenv)
629dnl> AC_FUNC_VPRINTF
630
631AC_CHECK_FUNCS( \
632 unsetenv \
633 setutent \
634 on_exit \
635)
636 622
637UTMP_CHECK 623UTMP_CHECK
638 624
639dnl# -------------------------------------------------------------------------- 625dnl# --------------------------------------------------------------------------
640 626
641dnl# find ttys/ttytab
642AC_CACHE_CHECK(where ttys/ttytab is located, rxvt_cv_path_ttytab,
643[for ttys_file in dnl
644 /etc/ttys /etc/ttytab;
645do
646 if test -f "$ttys_file" ; then
647 rxvt_cv_path_ttytab=$ttys_file
648 break
649 fi
650done
651])
652if test x$rxvt_cv_path_ttytab != x; then
653 AC_DEFINE_UNQUOTED(TTYTAB_FILENAME, "$rxvt_cv_path_ttytab", Define location of ttys/ttytab)
654fi
655
656dnl# -------------------------------------------------------------------------- 627dnl# --------------------------------------------------------------------------
657dnl# -------------------------------------------------------------------------- 628dnl# --------------------------------------------------------------------------
658 629
659dnl# this is a really hack test for some basic Xlocale stuff 630dnl# this is a really hack test for some basic Xlocale stuff
660ac_save_LIBS=$LIBS 631save_LIBS=$LIBS
661ac_save_CFLAGS=$CFLAGS 632save_CFLAGS=$CFLAGS
662CFLAGS="$CFLAGS $X_CFLAGS" 633CFLAGS="$CFLAGS $X_CFLAGS"
663LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" 634LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
664if test x$support_xim = xyes; then 635if test x$support_xim = xyes; then
665 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale, 636 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
666 [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <X11/Xlib.h> 637 [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <X11/Xlib.h>
697[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define X_LOCALE 1 668[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define X_LOCALE 1
698#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])]) 669#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])])
699if test x$rxvt_cv_func_xsetlocale = xyes; then 670if test x$rxvt_cv_func_xsetlocale = xyes; then
700 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works) 671 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works)
701fi 672fi
702LIBS=$ac_save_LIBS 673LIBS=$save_LIBS
703CFLAGS=$ac_save_CFLAGS 674CFLAGS=$save_CFLAGS
704 675
705AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale, 676AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale,
706[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <clocale>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_setlocale=yes],[rxvt_cv_func_setlocale=no])]) 677[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <clocale>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_setlocale=yes],[rxvt_cv_func_setlocale=no])])
707if test x$rxvt_cv_func_setlocale = xyes; then 678if test x$rxvt_cv_func_setlocale = xyes; then
708 AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works) 679 AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works)
724dnl# now add and remove other stuff 695dnl# now add and remove other stuff
725dnl# -------------------------------------------------------------------------- 696dnl# --------------------------------------------------------------------------
726if test x$support_xft = xyes; then 697if test x$support_xft = xyes; then
727 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 698 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
728 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then 699 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then
729 LIBS="$LIBS `$PKG_CONFIG xft --libs`" 700 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS"
730 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`" 701 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`"
731 else 702 else
732 AC_PATH_PROG(XFT_CONFIG, xft-config, no) 703 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
733 if test $XFT_CONFIG != no; then 704 if test $XFT_CONFIG != no; then
734 LIBS="$LIBS `$XFT_CONFIG --libs`" 705 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
735 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`" 706 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
736 fi 707 fi
737 fi 708 fi
738 709
710 save_LIBS="$LIBS"
711 LIBS="$LIBS $X_LIBS"
739 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no]) 712 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
740 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no]) 713 AC_CHECK_LIB(Xft,XftDrawString32,:,[support_xft=no])
714 LIBS="$save_LIBS"
741 715
742 if test x$support_xft = xyes; then 716 if test x$support_xft = xyes; then
743 AC_DEFINE(XFT, 1, Define to enable xft support) 717 AC_DEFINE(XFT, 1, Define to enable xft support)
744 fi 718 fi
745fi 719fi
899RXVT_DEFINE_TO_INCLUDE(include_stdarg_h, cstdarg, ac_cv_header_stdarg_h, yes, notset, dontmatch) 873RXVT_DEFINE_TO_INCLUDE(include_stdarg_h, cstdarg, ac_cv_header_stdarg_h, yes, notset, dontmatch)
900RXVT_DEFINE_TO_INCLUDE(include_stdlib_h, cstdlib, ac_cv_header_stdlib_h, yes, notset, dontmatch) 874RXVT_DEFINE_TO_INCLUDE(include_stdlib_h, cstdlib, ac_cv_header_stdlib_h, yes, notset, dontmatch)
901RXVT_DEFINE_TO_INCLUDE(include_unistd_h, unistd.h, ac_cv_header_unistd_h, yes, notset, dontmatch) 875RXVT_DEFINE_TO_INCLUDE(include_unistd_h, unistd.h, ac_cv_header_unistd_h, yes, notset, dontmatch)
902RXVT_DEFINE_TO_INCLUDE(include_string_h, cstring, ac_cv_header_string_h, yes, notset, dontmatch) 876RXVT_DEFINE_TO_INCLUDE(include_string_h, cstring, ac_cv_header_string_h, yes, notset, dontmatch)
903RXVT_DEFINE_TO_INCLUDE(include_fcntl_h, fcntl.h, ac_cv_header_fcntl_h, yes, notset, dontmatch) 877RXVT_DEFINE_TO_INCLUDE(include_fcntl_h, fcntl.h, ac_cv_header_fcntl_h, yes, notset, dontmatch)
904RXVT_DEFINE_TO_INCLUDE(include_util_h, util.h, ac_cv_header_util_h, yes, notset, dontmatch)
905RXVT_DEFINE_TO_INCLUDE(include_assert_h, assert.h, ac_cv_header_assert_h, yes, notset, dontmatch) 878RXVT_DEFINE_TO_INCLUDE(include_assert_h, assert.h, ac_cv_header_assert_h, yes, notset, dontmatch)
906RXVT_DEFINE_TO_INCLUDE(include_sys_ioctl_h, sys/ioctl.h, rxvt_cv_header_sysioctl, yes, notset, dontmatch) 879RXVT_DEFINE_TO_INCLUDE(include_sys_ioctl_h, sys/ioctl.h, rxvt_cv_header_sysioctl, yes, notset, dontmatch)
907RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch) 880RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch)
908RXVT_DEFINE_TO_INCLUDE(include_sys_strredir_h, sys/strredir.h, ac_cv_header_sys_strredir_h, yes, notset, dontmatch) 881RXVT_DEFINE_TO_INCLUDE(include_sys_strredir_h, sys/strredir.h, ac_cv_header_sys_strredir_h, yes, notset, dontmatch)
909RXVT_DEFINE_TO_INCLUDE(include_sys_time_h, sys/time.h, ac_cv_header_sys_time_h, yes, notset, dontmatch) 882RXVT_DEFINE_TO_INCLUDE(include_sys_time_h, sys/time.h, ac_cv_header_sys_time_h, yes, notset, dontmatch)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines