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.35 by root, Tue Aug 17 09:16:40 2004 UTC vs.
Revision 1.65 by root, Tue Jan 10 18:09:22 2006 UTC

1dnl# -*- sh -*- 1dnl# -*- sh -*-
2dnl# 2dnl#
3dnl# Process this file with autoconf to produce a configure script. 3dnl# Process this file with autoconf to produce a configure script.
4dnl# 4dnl#
5orig_CXXFLAGS="$CXXFLAGS"
6
5AC_INIT 7AC_INIT
6AC_CONFIG_SRCDIR([src/feature.h]) 8AC_CONFIG_SRCDIR([src/feature.h])
7AC_CONFIG_AUX_DIR(autoconf) 9AC_CONFIG_AUX_DIR(autoconf)
8AC_CONFIG_HEADER(config.h:autoconf/config.h.in) 10AC_CONFIG_HEADER(config.h:autoconf/config.h.in)
9 11
12AC_CANONICAL_HOST
13
10dnl RXVT version 14dnl RXVT version
11changequote(, )dnl 15changequote(, )dnl
12VERSION=`sed -n -e 's/^.*[ \t]VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 16VERSION=`sed -n -e 's/^.*[ \t]VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
13DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 17DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
14LSMDATE=`sed -n -e 's/^.*[ \t]LSMDATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
15LIBVERSION=`sed -n -e 's/^.*[ \t]LIBVERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 18dnl LIBVERSION=`sed -n -e 's/^.*[ \t]LIBVERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
16changequote([, ])dnl 19changequote([, ])dnl
17AC_SUBST(VERSION)dnl 20AC_SUBST(VERSION)dnl
18AC_SUBST(DATE)dnl 21AC_SUBST(DATE)dnl
19AC_SUBST(LSMDATE)dnl 22AC_SUBST(LSMDATE)dnl
20AC_SUBST(LIBVERSION)dnl 23AC_SUBST(LIBVERSION)dnl
31AC_PROG_INSTALL 34AC_PROG_INSTALL
32AC_PROG_AWK 35AC_PROG_AWK
33 36
34AC_LANG(C) 37AC_LANG(C)
35 38
39dnl# --------------------------------------------------------------------------
40dnl# Supply default CFLAGS, if not specified by `CFLAGS=flags ./configure'
41dnl#
42if test -z "$orig_CXXFLAGS"; then
43 CXXFLAGS='-O'
44 if test x$GCC = xyes && test "x$GXX" = xyes; then
45 CXXFLAGS="-g -O3"
46 fi
47 CFLAGS="$CXXFLAGS"
48fi
49
36LINKER="$CXX" 50LINKER="$CXX"
37if test x$GCC = xyes && test x$GXX = xyes; then 51if test x$GCC = xyes && test x$GXX = xyes; then
38 AC_CHECK_LIB(supc++, main, [ 52 AC_CHECK_LIB(supc++, main, [
39 LINKER="$CC" 53 LINKER="$CC"
40 LIBS="$LIBS -lsupc++" 54 LIBS="$LIBS -lsupc++"
41 ]) 55 ])
42fi 56fi
43AC_SUBST(LINKER,[$LINKER]) 57AC_SUBST(LINKER,[$LINKER])
44 58
45CPPFLAGS="-D_GNU_SOURCE -D_XOPEN_SOURCE" 59AC_DEFINE(_GNU_SOURCE, 1, Use all glibc features.)
60
61case $host in
62 *-*-solaris* )
63 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
64 AC_DEFINE(_XOPEN_SOURCE, 2, Needed to get declarations for msg_control and msg_controllen on Solaris)
65 AC_DEFINE(__EXTENSIONS__, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
66 ;;
67esac
46 68
47dnl if test x$GXX = xyes; then 69dnl if test x$GXX = xyes; then
48dnl CXXFLAGS="$CXXFLAGS" dnl I once had -fno-exceptions, but I am using them now... 70dnl CXXFLAGS="$CXXFLAGS" dnl I once had -fno-exceptions, but I am using them now...
49dnl fi 71dnl fi
50 72
53dnl# system hacks 75dnl# system hacks
54AC_AIX 76AC_AIX
55AC_ISC_POSIX 77AC_ISC_POSIX
56 78
57dnl# FreeBSD needs to link libxpg4 79dnl# FreeBSD needs to link libxpg4
58AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"]) 80AC_CHECK_FUNC(setlocale, [], [AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])])
59 81
60dnl solaris needs to link libnsl and socket 82dnl# solaris needs to link libnsl and socket
61AC_CHECK_LIB(nsl, gethostbyname, [LIBS="$LIBS -lnsl"]) 83AC_CHECK_FUNC(gethostbyname, [], [AC_CHECK_LIB(nsl, gethostbyname, [LIBS="$LIBS -lnsl"])])
62AC_CHECK_LIB(socket, socket, [LIBS="$LIBS -lsocket"]) 84AC_CHECK_FUNC(socket, [], [AC_CHECK_LIB(socket, socket, [LIBS="$LIBS -lsocket"])])
63 85
86dnl# more solaris
87AC_CHECK_FUNC(sched_yield, [], [AC_CHECK_LIB(rt, sched_yield, [LIBS="$LIBS -lrt"])])
88
89dnl# sched_yield to improve terminal efficiency
90AC_MSG_CHECKING(for sched_yield support)
91AC_TRY_LINK([#include <sched.h>],[sched_yield ()],
92 [AC_MSG_RESULT(yes)
93 AC_DEFINE(HAVE_SCHED_YIELD, 1, Define if you have sched-h and sched_yield)],
94 [AC_MSG_RESULT(no)])
95
64AC_ENABLE_SHARED(no)dnl# libtool 96dnl AC_ENABLE_SHARED(no)dnl# libtool
65AC_ENABLE_STATIC(yes)dnl# libtool 97dnl AC_ENABLE_STATIC(yes)dnl# libtool
66AC_PROG_LIBTOOL()dnl# libtool 98dnl AC_PROG_LIBTOOL()dnl# libtool
67 99
68MALLOC_TYPE=S 100MALLOC_TYPE=S
101
69support_addstrings=no 102support_addstrings=no
70support_frills=no 103support_frills=yes
71support_linespace=no
72support_inheritpixmap=no 104support_inheritpixmap=yes
73support_tinting=no 105support_tinting=yes
74support_fading=no 106support_fading=yes
75support_keepscrolling=no 107support_keepscrolling=yes
76support_selectionscrolling=no 108support_selectionscrolling=yes
77support_menubar=no 109support_menubar=no
78support_mousewheel=no 110support_mousewheel=yes
79support_mouseslipwheel=no 111support_mouseslipwheel=yes
80support_utmp=no 112support_utmp=yes
81support_wtmp=no 113support_wtmp=yes
82support_lastlog=no 114support_lastlog=yes
83support_cursor_blink=no
84support_text_blink=no 115support_text_blink=yes
85support_pointer_blank=no 116support_pointer_blank=yes
86support_scroll_rxvt=no 117support_scroll_rxvt=yes
87support_scroll_next=no 118support_scroll_next=yes
88support_scroll_xterm=no 119support_scroll_xterm=yes
89support_scroll_plain=no 120support_scroll_plain=yes
90support_xim=no 121support_xim=yes
91support_xpm=no 122support_xpm=yes
92support_xft=no 123support_xft=yes
93support_unicode3=no 124support_unicode3=no
94support_combining=no 125support_combining=yes
95support_8bitctrls=no 126support_8bitctrls=no
96support_iso14755=no 127support_iso14755=yes
128support_styles=yes
129support_perl=yes
97codesets= 130codesets=all
98 131
99dnl# -------------------------------------------------------------------------- 132dnl# --------------------------------------------------------------------------
100dnl# CHECKING COMMAND LINE OPTIONS 133dnl# CHECKING COMMAND LINE OPTIONS
101dnl# -------------------------------------------------------------------------- 134dnl# --------------------------------------------------------------------------
102 135
108 141
109AC_ARG_ENABLE(everything, 142AC_ARG_ENABLE(everything,
110 [ --enable-everything enable standard non-multichoice features 143 [ --enable-everything enable standard non-multichoice features
111 NOTE: this option is order dependent 144 NOTE: this option is order dependent
112 NOTE: automatically enabled with --enable-shared], 145 NOTE: automatically enabled with --enable-shared],
146 [
147 if test x$enableval = xno; then
148 support_24bit=no
149 support_frills=no
150 support_inheritpixmap=no
151 support_tinting=no
152 support_fading=no
153 support_keepscrolling=no
154 support_selectionscrolling=no
155 support_lastlog=no
156 support_menubar=no
157 support_mousewheel=no
158 support_mouseslipwheel=no
159 support_text_blink=no
160 support_pointer_blank=no
161 support_scroll_rxvt=no
162 support_scroll_next=no
163 support_scroll_xterm=no
164 support_scroll_plain=no
165 support_utmp=no
166 support_wtmp=no
167 support_xim=no
168 support_xpm=no
169 support_xft=no
170 support_unicode3=no
171 support_combining=no
172 support_8bitctrls=no
173 support_iso14755=no
174 support_styles=no
175 support_perl=no
176 codesets=
177 fi
113 [if test x$enableval = xyes; then 178 if test x$enableval = xyes; then
114 support_24bit=yes 179 support_24bit=yes
115 support_frills=yes 180 support_frills=yes
116 support_linespace=yes
117 support_inheritpixmap=yes 181 support_inheritpixmap=yes
118 support_tinting=yes 182 support_tinting=yes
119 support_fading=yes 183 support_fading=yes
120 support_keepscrolling=yes 184 support_keepscrolling=yes
121 support_selectionscrolling=yes 185 support_selectionscrolling=yes
122 support_lastlog=yes 186 support_lastlog=yes
123 support_menubar=yes 187 support_menubar=yes
124 support_mousewheel=yes 188 support_mousewheel=yes
125 support_mouseslipwheel=yes 189 support_mouseslipwheel=yes
126 support_cursor_blink=yes
127 support_text_blink=yes 190 support_text_blink=yes
128 support_pointer_blank=yes 191 support_pointer_blank=yes
129 support_scroll_rxvt=yes 192 support_scroll_rxvt=yes
130 support_scroll_next=yes 193 support_scroll_next=yes
131 support_scroll_xterm=yes 194 support_scroll_xterm=yes
132 support_scroll_plain=yes 195 support_scroll_plain=yes
133 support_utmp=yes 196 support_utmp=yes
134 support_wtmp=yes 197 support_wtmp=yes
135 support_xim=yes 198 support_xim=yes
136 support_xpm=yes 199 support_xpm=yes
137 support_xft=yes 200 support_xft=yes
138 support_unicode3=yes 201 support_unicode3=yes
139 support_combining=yes 202 support_combining=yes
140 #support_8bitctrls=yes 203 #support_8bitctrls=yes
141 support_iso14755=yes 204 support_iso14755=yes
205 support_styles=yes
206 support_perl=yes
142 codesets=all 207 codesets=all
208 fi
143 fi]) 209 ])
144 210
145AC_ARG_ENABLE(unicode3, 211AC_ARG_ENABLE(unicode3,
146 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters], 212 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters],
147 [if test x$enableval = xyes -o x$enableval = xno; then 213 [if test x$enableval = xyes -o x$enableval = xno; then
148 support_unicode3=yes 214 support_unicode3=$enableval
149 fi]) 215 fi])
150 216
151AC_ARG_ENABLE(combining, 217AC_ARG_ENABLE(combining,
152 [ --enable-combining enable composition of base and combining characters], 218 [ --enable-combining enable composition of base and combining characters],
153 [if test x$enableval = xyes -o x$enableval = xno; then 219 [if test x$enableval = xyes -o x$enableval = xno; then
154 support_combining=yes 220 support_combining=$enableval
155 fi]) 221 fi])
156 222
157AC_ARG_ENABLE(xft, 223AC_ARG_ENABLE(xft,
158 [ --enable-xft enable xft support on systems that have it], 224 [ --enable-xft enable xft support on systems that have it],
159 [if test x$enableval = xyes -o x$enableval = xno; then 225 [if test x$enableval = xyes -o x$enableval = xno; then
160 support_xft=yes 226 support_xft=$enableval
227 fi])
228
229AC_ARG_ENABLE(font-styles,
230 [ --enable-font-styles enable bold and italic support],
231 [if test x$enableval = xyes -o x$enableval = xno; then
232 support_styles=$enableval
161 fi]) 233 fi])
162 234
163AC_ARG_ENABLE(utmp, 235AC_ARG_ENABLE(utmp,
164 [ --enable-utmp enable utmp (utmpx) support], 236 [ --enable-utmp enable utmp (utmpx) support],
165 [if test x$enableval = xyes -o x$enableval = xno; then 237 [if test x$enableval = xyes -o x$enableval = xno; then
222 294
223AC_ARG_ENABLE(xterm-scroll, 295AC_ARG_ENABLE(xterm-scroll,
224 [ --enable-xterm-scroll enable Xterm style scrollbar], 296 [ --enable-xterm-scroll enable Xterm style scrollbar],
225 [if test x$enableval = xyes -o x$enableval = xno; then 297 [if test x$enableval = xyes -o x$enableval = xno; then
226 support_scroll_xterm=$enableval 298 support_scroll_xterm=$enableval
299 fi])
300
301AC_ARG_ENABLE(perl,
302 [ --enable-perl enable embedded perl interpreter],
303 [if test x$enableval = xyes -o x$enableval = xno; then
304 support_perl=$enableval
227 fi]) 305 fi])
228 306
229AC_ARG_ENABLE(plain-scroll, 307AC_ARG_ENABLE(plain-scroll,
230 [ --enable-plain-scroll enable plain style scrollbar], 308 [ --enable-plain-scroll enable plain style scrollbar],
231 [if test x$enableval = xyes -o x$enableval = xno; then 309 [if test x$enableval = xyes -o x$enableval = xno; then
237 [if test x$enableval = xyes; then 315 [if test x$enableval = xyes; then
238 AC_DEFINE(HALFSHADOW, 1, Define if you want the depth of scrollbars and menus to be less) 316 AC_DEFINE(HALFSHADOW, 1, Define if you want the depth of scrollbars and menus to be less)
239 fi]) 317 fi])
240 318
241AC_ARG_WITH(codesets, 319AC_ARG_WITH(codesets,
242 [ --with-codesets=NAME,.. compile in additional codesets (jp,jp_ext,kr,cn,cn_ext,all)], 320 [ --with-codesets=NAME,.. compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)],
243 [codesets="$withval"]) 321 [codesets="$withval"])
244 322
245AC_ARG_ENABLE(xim, 323AC_ARG_ENABLE(xim,
246 [ --enable-xim XIM (X Input Method) protocol support], 324 [ --enable-xim XIM (X Input Method) protocol support],
247 [if test x$enableval = xyes -o x$enableval = xno; then 325 [if test x$enableval = xyes -o x$enableval = xno; then
279 fi]) 357 fi])
280 358
281AC_ARG_ENABLE(8bitctrls, 359AC_ARG_ENABLE(8bitctrls,
282 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)], 360 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)],
283 [if test x$enableval = xyes -o x$enableval = xno; then 361 [if test x$enableval = xyes -o x$enableval = xno; then
284 support_8bitctrls=yes 362 support_8bitctrls=$enableval
285 fi]) 363 fi])
286 364
287RESFALLBACK=Rxvt 365RESFALLBACK=Rxvt
288AC_ARG_ENABLE(fallback, 366AC_ARG_ENABLE(fallback,
289 [ --enable-fallback(=CLASS) fall back on CLASS resources in addition to URxvt ones (default: Rxvt)], 367 [ --enable-fallback(=CLASS) fall back on CLASS resources in addition to URxvt ones (default: Rxvt)],
311 389
312RXVTNAME=urxvt 390RXVTNAME=urxvt
313AC_ARG_WITH(name, 391AC_ARG_WITH(name,
314 [ --with-name=NAME set the basename for the installed binaries (default: urxvt)], 392 [ --with-name=NAME set the basename for the installed binaries (default: urxvt)],
315 [RXVTNAME="$withval"]) 393 [RXVTNAME="$withval"])
394AC_DEFINE_UNQUOTED(RXVTNAME,"$RXVTNAME", [Binary base name])
316 395
317RXVTNAME=`echo "$RXVTNAME"|sed "$program_transform_name"` 396RXVTNAME=`echo "$RXVTNAME"|sed "$program_transform_name"`
318AC_SUBST(RXVTNAME) 397AC_SUBST(RXVTNAME)
319 398
320AC_ARG_ENABLE(strings, 399AC_ARG_ENABLE(strings,
337 416
338AC_ARG_ENABLE(frills, 417AC_ARG_ENABLE(frills,
339 [ --enable-frills enable support for rarely used features], 418 [ --enable-frills enable support for rarely used features],
340 [if test x$enableval = xyes -o x$enableval = xno; then 419 [if test x$enableval = xyes -o x$enableval = xno; then
341 support_frills=$enableval 420 support_frills=$enableval
342 fi])
343
344AC_ARG_ENABLE(linespace,
345 [ --enable-linespace enable support for linespace],
346 [if test x$enableval = xyes -o x$enableval = xno; then
347 support_linespace=$enableval
348 fi]) 421 fi])
349 422
350AC_ARG_ENABLE(24bit, 423AC_ARG_ENABLE(24bit,
351 [ --enable-24bit enable support for using 24bit visuals if available], 424 [ --enable-24bit enable support for using 24bit visuals if available],
352 [if test x$enableval = xyes -o x$enableval = xno; then 425 [if test x$enableval = xyes -o x$enableval = xno; then
400 [ --enable-smart-resize enable smart growth/shrink behaviour], 473 [ --enable-smart-resize enable smart growth/shrink behaviour],
401 [if test x$enableval = xyes; then 474 [if test x$enableval = xyes; then
402 AC_DEFINE(SMART_RESIZE, 1, Define to use "smart" resize behavior) 475 AC_DEFINE(SMART_RESIZE, 1, Define to use "smart" resize behavior)
403 fi]) 476 fi])
404 477
405AC_ARG_ENABLE(cursor-blink,
406 [ --enable-cursor-blink enable blinking cursor],
407 [if test x$enableval = xyes -o x$enableval = xno; then
408 support_cursor_blink=$enableval
409 fi])
410
411AC_ARG_ENABLE(text-blink, 478AC_ARG_ENABLE(text-blink,
412 [ --enable-text-blink enable blinking text], 479 [ --enable-text-blink enable blinking text],
413 [if test x$enableval = xyes -o x$enableval = xno; then 480 [if test x$enableval = xyes -o x$enableval = xno; then
414 support_text_blink=$enableval 481 support_text_blink=$enableval
415 fi]) 482 fi])
433 fi]) 500 fi])
434 501
435dnl# -------------------------------------------------------------------------- 502dnl# --------------------------------------------------------------------------
436 503
437AC_DEFINE(PROTOTYPES, 1, Define if you need function prototypes) 504AC_DEFINE(PROTOTYPES, 1, Define if you need function prototypes)
438
439dnl# --------------------------------------------------------------------------
440dnl# Supply default CFLAGS, if not specified by `CFLAGS=flags ./configure'
441dnl#
442if test -z "$CFLAGS"; then
443 if test -z "$CCOPTS"; then
444 CCOPTS='-O'
445dnl> if test "x$GCC" = xyes; then
446dnl> if test x$system = xLinux; then
447dnl> CCOPTS="$CCOPTS "'-O2 -fno-strength-reduce'
448dnl> fi
449dnl> fi
450 fi
451 CFLAGS="$CCOPTS"
452fi
453 505
454AC_PATH_PROG(MV, mv, mv) 506AC_PATH_PROG(MV, mv, mv)
455AC_PATH_PROG(RM, rm, rm) 507AC_PATH_PROG(RM, rm, rm)
456AC_PATH_PROG(CP, cp, cp) 508AC_PATH_PROG(CP, cp, cp)
457AC_PATH_PROG(LN, ln, ln) 509AC_PATH_PROG(LN, ln, ln)
509 sys/stropts.h \ 561 sys/stropts.h \
510 sys/time.h \ 562 sys/time.h \
511 utmp.h \ 563 utmp.h \
512 utmpx.h \ 564 utmpx.h \
513 stdint.h \ 565 stdint.h \
566 pty.h \
567 util.h \
568 libutil.h \
569 wchar.h \
570 cwchar \
571 clocale \
514) 572)
515 573
516AC_HEADER_TIME 574AC_HEADER_TIME
517 575
518dnl# check to allow both <termios.h> and <sys/ioctl.h> 576dnl# check to allow both <termios.h> and <sys/ioctl.h>
586dnl> AC_CHECK_TYPE(umode_t, int) 644dnl> AC_CHECK_TYPE(umode_t, int)
587dnl> AC_CHECK_TYPE(off_t, long) 645dnl> AC_CHECK_TYPE(off_t, long)
588AC_TYPE_PID_T 646AC_TYPE_PID_T
589AC_TYPE_UID_T 647AC_TYPE_UID_T
590 648
591AC_CHECK_SIZEOF(char, 1)
592AC_CHECK_SIZEOF(short, 2) 649AC_CHECK_SIZEOF(short, 2)
593AC_CHECK_SIZEOF(int, 4) 650AC_CHECK_SIZEOF(int, 4)
594AC_CHECK_SIZEOF(long, 4) 651dnl AC_CHECK_SIZEOF(long, 4)
595AC_CHECK_SIZEOF(long long, 8) 652AC_CHECK_SIZEOF(long long, 8)
596AC_CHECK_SIZEOF(int *, 4) 653AC_CHECK_SIZEOF(int *, 4)
597 654
598dnl# see usage below 655dnl# see usage below
599AC_DEFUN(RXVT_CHECK_SIZE, 656AC_DEFUN(RXVT_CHECK_SIZE,
600 [AC_CACHE_CHECK([for $2], $1, 657 [AC_CACHE_CHECK([for $2], $1,
601 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdint.h>]], [[$2 dummy;]])],[$1=yes],[dnl 658 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdint.h>]], [[$2 dummy;]])],[$1=yes],[dnl
602if test $ac_cv_sizeof_char -ge $3; then 659if test "$ac_cv_sizeof_char" -ge $3; then
603 $1="$4 char" 660 $1="$4 char"
604else 661else
605 if test $ac_cv_sizeof_short -ge $3; then 662 if test "$ac_cv_sizeof_short" -ge $3; then
606 $1="$4 short" 663 $1="$4 short"
607 else 664 else
608 if test $ac_cv_sizeof_int -ge $3; then 665 if test "$ac_cv_sizeof_int" -ge $3; then
609 $1="$4 int" 666 $1="$4 int"
610 else 667 else
611 if test $ac_cv_sizeof_long -ge $3; then 668 if test "$ac_cv_sizeof_long" -ge $3; then
612 $1="$4 long" 669 $1="$4 long"
613 else 670 else
614 if test $ac_cv_sizeof_long_long -ge $3; then 671 if test "$ac_cv_sizeof_long_long" -ge $3; then
615 $1="$4 long long" 672 $1="$4 long long"
616 else 673 else
617 $1="$4 $5" # we _must_ have a (possibly wrong) default 674 $1="$4 $5" # we _must_ have a (possibly wrong) default
618 fi 675 fi
619 fi 676 fi
646dnl RXVT_CHECK_SIZE(rxvt_cv_uint64_t, uint64_t, 8, unsigned, long long, rxvt_uint64_typedef) 703dnl RXVT_CHECK_SIZE(rxvt_cv_uint64_t, uint64_t, 8, unsigned, long long, rxvt_uint64_typedef)
647dnl AC_SUBST(rxvt_uint64_typedef) 704dnl AC_SUBST(rxvt_uint64_typedef)
648dnl# 705dnl#
649dnl# Now look for another we use 706dnl# Now look for another we use
650dnl# 707dnl#
651if test $ac_cv_sizeof_int_p -eq 8; then 708if test "$ac_cv_sizeof_int_p" -eq 8; then
652 rxvt_intp_define="#define intp_t int64_t" 709 rxvt_intp_define="#define intp_t int64_t"
653 rxvt_u_intp_define="#define u_intp_t u_int64_t" 710 rxvt_u_intp_define="#define u_intp_t u_int64_t"
654else 711else
655 if test $ac_cv_sizeof_int_p -eq 4; then 712 if test "$ac_cv_sizeof_int_p" -eq 4; then
656 rxvt_intp_define="#define intp_t int32_t" 713 rxvt_intp_define="#define intp_t int32_t"
657 rxvt_u_intp_define="#define u_intp_t u_int32_t" 714 rxvt_u_intp_define="#define u_intp_t u_int32_t"
658 else 715 else
659 if test $ac_cv_sizeof_int_p -eq 2; then 716 if test "$ac_cv_sizeof_int_p" -eq 2; then
660 rxvt_intp_define="#define intp_t int16_t" 717 rxvt_intp_define="#define intp_t int16_t"
661 rxvt_u_intp_define="#define u_intp_t u_int16_t" 718 rxvt_u_intp_define="#define u_intp_t u_int16_t"
662 else 719 else
663 rxvt_intp_define="#error set intp_t" 720 rxvt_intp_define="#error set intp_t"
664 rxvt_u_intp_define="#error set u_intp_t" 721 rxvt_u_intp_define="#error set u_intp_t"
696 unlockpt \ 753 unlockpt \
697 isastream \ 754 isastream \
698 on_exit \ 755 on_exit \
699 nanosleep \ 756 nanosleep \
700 updwtmp \ 757 updwtmp \
758 updwtmpx \
701 ttyslot \ 759 ttyslot \
702) 760)
703dnl# Note: On NetBSD, openpty() exists in libutil. Don't pull it in 761dnl# Note: On NetBSD, openpty() exists in libutil. Don't pull it in
704 762
705dnl# -------------------------------------------------------------------------- 763dnl# --------------------------------------------------------------------------
748[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h> 806[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
749#include <utmpx.h>]], [[struct utmpx utx; utx.ut_host;]])],[rxvt_cv_struct_utmpx_host=yes],[rxvt_cv_struct_utmpx_host=no])]) 807#include <utmpx.h>]], [[struct utmpx utx; utx.ut_host;]])],[rxvt_cv_struct_utmpx_host=yes],[rxvt_cv_struct_utmpx_host=no])])
750if test x$rxvt_cv_struct_utmpx_host = xyes; then 808if test x$rxvt_cv_struct_utmpx_host = xyes; then
751 AC_DEFINE(HAVE_UTMPX_HOST, 1, Define if struct utmpx contains ut_host) 809 AC_DEFINE(HAVE_UTMPX_HOST, 1, Define if struct utmpx contains ut_host)
752fi 810fi
811
812AC_CACHE_CHECK(for session in utmpx struct, rxvt_cv_struct_utmpx_session,
813[AC_TRY_COMPILE([#include <sys/types.h>
814#include <utmpx.h>],
815[struct utmpx utx; utx.ut_session;],
816rxvt_cv_struct_utmpx_session=yes, rxvt_cv_struct_utmpx_session=no)])
817if test x$rxvt_cv_struct_utmpx_session = xyes; then
818 AC_DEFINE(HAVE_UTMPX_SESSION, 1, Define if struct utmpx contains ut_session)
819fi
753) dnl# AC_CHECK_HEADER(utmpx.h 820) dnl# AC_CHECK_HEADER(utmpx.h
754
755 821
756dnl# -------------------------------------------------------------------------- 822dnl# --------------------------------------------------------------------------
757dnl# check for struct lastlog 823dnl# check for struct lastlog
758AC_CACHE_CHECK(for struct lastlog, rxvt_cv_struct_lastlog, 824AC_CACHE_CHECK(for struct lastlog, rxvt_cv_struct_lastlog,
759[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h> 825[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
1069 1135
1070AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo, 1136AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo,
1071[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])]) 1137[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])])
1072if test x$rxvt_cv_func_nl_langinfo = xyes; then 1138if test x$rxvt_cv_func_nl_langinfo = xyes; then
1073 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 1139 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
1140fi
1141
1142AC_CACHE_CHECK(for unix-compliant filehandle passing ability, rxvt_can_pass_fds,
1143[AC_TRY_LINK([
1144#include <sys/types.h>
1145#include <sys/socket.h>
1146],[
1147{
1148 msghdr msg;
1149 iovec iov;
1150 char buf [100];
1151 char data = 0;
1152
1153 iov.iov_base = &data;
1154 iov.iov_len = 1;
1155
1156 msg.msg_iov = &iov;
1157 msg.msg_iovlen = 1;
1158 msg.msg_control = buf;
1159 msg.msg_controllen = sizeof buf;
1160
1161 cmsghdr *cmsg = CMSG_FIRSTHDR (&msg);
1162 cmsg->cmsg_level = SOL_SOCKET;
1163 cmsg->cmsg_type = SCM_RIGHTS;
1164 cmsg->cmsg_len = 100;
1165
1166 *(int *)CMSG_DATA (cmsg) = 5;
1167
1168 return sendmsg (3, &msg, 0);
1169}
1170],[rxvt_can_pass_fds=yes],[rxvt_can_pass_fds=no])])
1171if test x$rxvt_can_pass_fds = xyes; then
1172 AC_DEFINE(HAVE_UNIX_FDPASS, 1, Define if sys/socket.h defines the necessary macros/functions for file handle passing)
1074fi 1173fi
1075 1174
1076AC_CACHE_CHECK(for broken XIM callback, rxvt_broken_ximcb, 1175AC_CACHE_CHECK(for broken XIM callback, rxvt_broken_ximcb,
1077[AC_COMPILE_IFELSE([ 1176[AC_COMPILE_IFELSE([
1078#include <X11/Xlib.h> 1177#include <X11/Xlib.h>
1173fi 1272fi
1174 1273
1175dnl# -------------------------------------------------------------------------- 1274dnl# --------------------------------------------------------------------------
1176dnl# now add and remove other stuff 1275dnl# now add and remove other stuff
1177dnl# -------------------------------------------------------------------------- 1276dnl# --------------------------------------------------------------------------
1277if test x$support_xft = xyes; then
1278 LIBS="$LIBS `pkg-config xft --libs`"
1279 CPPFLAGS="$CPPFLAGS `pkg-config xft --cflags`"
1280
1281 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
1282 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no])
1283
1284 if test x$support_xft = xyes; then
1285 AC_DEFINE(XFT, 1, Define to enable xft support)
1286 fi
1287fi
1288if test x$support_styles = xyes; then
1289 AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support)
1290fi
1178if test x$support_iso14755 = xyes; then 1291if test x$support_iso14755 = xyes; then
1179 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support) 1292 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support)
1180fi 1293fi
1181if test x$support_8bitctrls = xyes; then 1294if test x$support_8bitctrls = xyes; then
1182 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences) 1295 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
1199if test x$support_menubar = xyes; then 1312if test x$support_menubar = xyes; then
1200 AC_DEFINE(MENUBAR, 1, Define if you want Menubar support) 1313 AC_DEFINE(MENUBAR, 1, Define if you want Menubar support)
1201fi 1314fi
1202if test x$support_frills = xyes; then 1315if test x$support_frills = xyes; then
1203 AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features) 1316 AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features)
1204fi
1205if test x$support_linespace = xno; then
1206 AC_DEFINE(NO_LINESPACE, 1, Define if you don't want support linespace)
1207fi 1317fi
1208if test x$support_24bit = xyes; then 1318if test x$support_24bit = xyes; then
1209 AC_DEFINE(PREFER_24BIT, 1, Define to use a 24 bit visual if the screen has 24 bit mode, even if the default is 8 bit) 1319 AC_DEFINE(PREFER_24BIT, 1, Define to use a 24 bit visual if the screen has 24 bit mode, even if the default is 8 bit)
1210fi 1320fi
1211if test x$support_mousewheel = xyes; then 1321if test x$support_mousewheel = xyes; then
1248 scrolltypes="$scrolltypes plain" 1358 scrolltypes="$scrolltypes plain"
1249fi 1359fi
1250if test x$support_pointer_blank = xyes; then 1360if test x$support_pointer_blank = xyes; then
1251 AC_DEFINE(POINTER_BLANK, 1, Define if you want hide the pointer while typing) 1361 AC_DEFINE(POINTER_BLANK, 1, Define if you want hide the pointer while typing)
1252fi 1362fi
1253if test x$support_cursor_blink = xyes; then
1254 AC_DEFINE(CURSOR_BLINK, 1, Define if you want blinking cursor support)
1255fi
1256if test x$support_text_blink = xyes; then 1363if test x$support_text_blink = xyes; then
1257 AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support) 1364 AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support)
1258fi 1365fi
1259if test x$support_unicode3 = xyes; then 1366if test x$support_unicode3 = xyes; then
1260 AC_DEFINE(UNICODE_3, 1, Define if you want to represent unicode characters outside plane 0) 1367 AC_DEFINE(UNICODE_3, 1, Define if you want to represent unicode characters outside plane 0)
1261fi 1368fi
1262if test x$support_combining = xyes; then 1369if test x$support_combining = xyes; then
1263 AC_DEFINE(ENABLE_COMBINING, 1, Define if you want to automatically compose combining characters) 1370 AC_DEFINE(ENABLE_COMBINING, 1, Define if you want to automatically compose combining characters)
1264fi 1371fi
1265if test x$codesets = xall; then 1372if test x$codesets = xall; then
1266 codesets=jp,jp-ext,kr,cn,cn-ext 1373 codesets=jp,jp-ext,kr,zh,zh-ext
1267fi 1374fi
1268AC_DEFINE(ENCODING_EU, 1, Define if you want european extended codesets) 1375AC_DEFINE(ENCODING_EU, 1, Define if you want european extended codesets)
1269AC_DEFINE(ENCODING_VN, 1, Define if you want vietnamese codesets) 1376AC_DEFINE(ENCODING_VN, 1, Define if you want vietnamese codesets)
1270for codeset in `echo $codesets | tr "[a-z,\\-]" "[A-Z _]"`; do 1377for codeset in `echo $codesets | tr "[a-z,\\-]" "[A-Z _]"`; do
1271 case "$codeset" in 1378 case "$codeset" in
1272 JP ) AC_DEFINE(ENCODING_JP, 1, Define if you want japanese codesets) ;; 1379 JP ) AC_DEFINE(ENCODING_JP, 1, Define if you want japanese codesets) ;;
1273 JP_EXT ) AC_DEFINE(ENCODING_JP_EXT, 1, Define if you want extended japanese codesets) ;; 1380 JP_EXT ) AC_DEFINE(ENCODING_JP_EXT, 1, Define if you want extended japanese codesets) ;;
1274 KR ) AC_DEFINE(ENCODING_KR, 1, Define if you want korean codesets) ;; 1381 KR ) AC_DEFINE(ENCODING_KR, 1, Define if you want korean codesets) ;;
1275 CN ) AC_DEFINE(ENCODING_CN, 1, Define if you want chinese codesets) ;; 1382 ZH ) AC_DEFINE(ENCODING_ZH, 1, Define if you want chinese codesets) ;;
1276 CN_EXT ) AC_DEFINE(ENCODING_CN_EXT, 1, Define if you want extended chinese codesets) ;; 1383 ZH_EXT ) AC_DEFINE(ENCODING_ZH_EXT, 1, Define if you want extended chinese codesets) ;;
1277 esac 1384 esac
1278done 1385done
1386
1387IF_PERL=\#
1388if test x$support_perl = xyes; then
1389 AC_PATH_PROG(PERL, perl5)
1390 AC_PATH_PROG(PERL, perl)
1391
1392 AC_MSG_CHECKING(for $PERL suitability)
1393 if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then
1394
1395 save_CXXFLAGS="$CXXFLAGS"
1396 save_LIBS="$LIBS"
1397 CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts`"
1398 LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`"
1399 AC_TRY_LINK([
1400#include <EXTERN.h>
1401#include <perl.h>
1402#include <XSUB.h>
1403],[
1404 PerlInterpreter *perl = perl_alloc ();
1405],[rxvt_perl_link=yes],[rxvt_perl_link=no])
1406 CXXFLAGS="$save_CXXFLAGS"
1407 LIBS="$save_LIBS"
1408
1409 if test x$rxvt_perl_link = xyes; then
1410 AC_MSG_RESULT(ok)
1411 AC_DEFINE(ENABLE_PERL, 1, Define if you can embed a perl interpreter)
1412 IF_PERL=
1413 PERL_O=rxvtperl.o
1414 PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`"
1415 PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`"
1416 PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`"
1417 else
1418 support_perl=no
1419 AC_MSG_RESULT([no, unable to link])
1420 fi
1421 else
1422 AC_MSG_ERROR(no working perl found, or perl not version >= 5.8)
1423 support_perl=no
1424 fi
1425fi
1426AC_SUBST(PERLLIB)
1427AC_SUBST(PERLFLAGS)
1428AC_SUBST(PERLPRIVLIBEXP)
1429AC_SUBST(PERL)
1430AC_SUBST(IF_PERL)
1431AC_SUBST(PERL_O)
1432
1433if text x$support_perl = xyes; then
1434 support_frills=yes
1435fi
1279 1436
1280dnl> AC_CHECK_FUNCS(gettimeofday putenv select socket) 1437dnl> AC_CHECK_FUNCS(gettimeofday putenv select socket)
1281 1438
1282CFLAGS=${CFLAGS--O} 1439CFLAGS=${CFLAGS--O}
1283LDFLAGS=${LDFLAGS--O} 1440LDFLAGS=${LDFLAGS--O}
1336RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch) 1493RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch)
1337RXVT_DEFINE_TO_INCLUDE(include_sys_strredir_h, sys/strredir.h, ac_cv_header_sys_strredir_h, yes, notset, dontmatch) 1494RXVT_DEFINE_TO_INCLUDE(include_sys_strredir_h, sys/strredir.h, ac_cv_header_sys_strredir_h, yes, notset, dontmatch)
1338RXVT_DEFINE_TO_INCLUDE(include_sys_time_h, sys/time.h, ac_cv_header_sys_time_h, yes, notset, dontmatch) 1495RXVT_DEFINE_TO_INCLUDE(include_sys_time_h, sys/time.h, ac_cv_header_sys_time_h, yes, notset, dontmatch)
1339RXVT_DEFINE_TO_INCLUDE(include_time_h, time.h, ac_cv_header_sys_time_h, no, ac_cv_header_time, yes) 1496RXVT_DEFINE_TO_INCLUDE(include_time_h, time.h, ac_cv_header_sys_time_h, no, ac_cv_header_time, yes)
1340 1497
1341if test x$support_xft = xyes; then
1342 LIBS="$LIBS `pkg-config xft --libs`"
1343 CFLAGS="$CFLAGS `pkg-config xft --cflags`"
1344 CPPFLAGS="$CPPFLAGS `pkg-config xft --cflags`"
1345
1346 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
1347 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no])
1348
1349 if test x$support_xft = xyes; then
1350 AC_DEFINE(XFT, 1, Define to enable xft support)
1351 fi
1352fi
1353
1354AC_CONFIG_FILES([autoconf/Make.common \ 1498AC_CONFIG_FILES([autoconf/Make.common \
1355Makefile \ 1499Makefile \
1356doc/Makefile \ 1500doc/Makefile \
1357src/Makefile \ 1501src/Makefile \
1358src/test/Makefile \
1359src/rxvtlib.h \ 1502src/rxvtlib.h \
1360W11/Makefile \
1361]) 1503])
1362AC_OUTPUT 1504AC_OUTPUT
1363 1505
1364echo "Configuration: 1506echo "Configuration:
1365 1507
1396 utmp file: $rxvt_cv_path_utmp 1538 utmp file: $rxvt_cv_path_utmp
1397 utmpx file: $rxvt_cv_path_utmpx 1539 utmpx file: $rxvt_cv_path_utmpx
1398 wtmp file: $rxvt_cv_path_wtmp 1540 wtmp file: $rxvt_cv_path_wtmp
1399 wtmpx file: $rxvt_cv_path_wtmpx 1541 wtmpx file: $rxvt_cv_path_wtmpx
1400 lastlog file: $rxvt_cv_path_lastlog 1542 lastlog file: $rxvt_cv_path_lastlog
1401 ttys/ttytab file: $rxvt_cv_path_ttytab" 1543 ttys/ttytab file: $rxvt_cv_path_ttytab
1544 embedded perl: $support_perl"
1402 echo 1545 echo
1403fi 1546fi
1404if test x$term != x; then 1547if test x$term != x; then
1405 echo " set TERM to: $term" 1548 echo " set TERM to: $term"
1406fi 1549fi
1435 echo ". functions could not be found. ." 1578 echo ". functions could not be found. ."
1436 echo ". XIM is now being DISABLED! ." 1579 echo ". XIM is now being DISABLED! ."
1437 echo ".----------------------------------------------------------------." 1580 echo ".----------------------------------------------------------------."
1438fi 1581fi
1439 1582
1440echo " *** Please check src/feature.h for further options ***" 1583echo " *** Optionally check src/feature.h for further options ***"
1441echo 1584echo
1442 1585
1443echo ".----------------------------------------------------------------." 1586echo ".----------------------------------------------------------------."
1444echo ". NOTE: most features are disabled by default, try ." 1587echo ". NOTE: some features are disabled by default, try ."
1445echo ". configure --help to get an idea of the optional features ." 1588echo ". configure --help to get an idea of the optional features, ."
1589echo ". or read ./README.configure ."
1590echo ". ."
1591echo ". The script ./reconf gives a reasonable baseline, try it if ."
1592echo ". you do not want to read documentation and still want some ."
1593echo ". useful features. ."
1446echo ".----------------------------------------------------------------." 1594echo ".----------------------------------------------------------------."
1447echo 1595echo
1448 1596

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines