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.2 by ayin, Tue Jan 17 12:53:29 2006 UTC vs.
Revision 1.163 by sf-exg, Sun May 28 10:25:52 2023 UTC

1dnl# -*- sh -*-
2dnl# 1dnl#
3dnl# Process this file with autoconf to produce a configure script. 2dnl# Process this file with autoconf to produce a configure script.
4dnl# 3dnl#
5 4
6AC_INIT 5AC_INIT
7AC_PREREQ(2.50) 6AC_PREREQ(2.71)
8AC_CONFIG_SRCDIR([src/feature.h]) 7AC_CONFIG_SRCDIR([src/feature.h])
9AC_CONFIG_HEADER(config.h:config.h.in) 8AC_CONFIG_HEADERS(config.h:config.h.in)
10
11AC_CANONICAL_HOST
12 9
13dnl RXVT version 10dnl RXVT version
14changequote(, )dnl
15VERSION=`sed -n -e 's/^.*[ \t]VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 11VERSION=`sed -n -e 's/^.* VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
16DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 12DATE=`sed -n -e 's/^.* DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
17dnl LIBVERSION=`sed -n -e 's/^.*[ \t]LIBVERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
18changequote([, ])dnl
19AC_SUBST(VERSION)dnl 13AC_SUBST(VERSION)dnl
20AC_SUBST(DATE)dnl 14AC_SUBST(DATE)dnl
21AC_SUBST(LSMDATE)dnl 15
22AC_SUBST(LIBVERSION)dnl
23echo "" 16echo ""
24echo "configuring for rxvt $VERSION" 17echo "configuring for rxvt $VERSION"
25echo "" 18echo ""
26 19
27orig_CXXFLAGS="$CXXFLAGS" 20orig_CXXFLAGS="$CXXFLAGS"
28 21
29dnl# Checks for programs. 22dnl# Checks for programs.
30dnl AC_MAKE_SET
31
32AC_PROG_CC 23AC_PROG_CC
33AC_PROG_CXX 24AC_PROG_CXX
34AC_PROG_CPP
35AC_PROG_INSTALL 25AC_PROG_INSTALL
36AC_PROG_AWK
37 26
27AC_USE_SYSTEM_EXTENSIONS
38AC_LANG(C) 28AC_LANG(C++)
39 29
30LINKER="$CXX"
31dnl check whether we can link with gcc -lsupc++
32if test x$GCC = xyes && test x$GXX = xyes; then
33 dnl FreeBSD (at least up to 5.3) has a broken GCC, workaround it
34 AC_MSG_CHECKING([for working libsupc++])
35 save_CXX="$CXX"
36 save_LIBS="$LIBS"
37 CXX="$CC"
38 LIBS="$LIBS -lsupc++"
39 AC_LINK_IFELSE(
40 [AC_LANG_PROGRAM([struct test { }; void f() try { throw new test; } catch (...) { throw; }],[])],
41 [AC_MSG_RESULT(ok)
42 LINKER="$CC"],
43 [
44 AC_MSG_RESULT([no, making everything bigger and slower])
45 LIBS="$save_LIBS"
46 ]
47 )
48 CXX="$save_CXX"
49fi
50AC_SUBST(LINKER,[$LINKER])
51
40dnl# -------------------------------------------------------------------------- 52dnl# --------------------------------------------------------------------------
41dnl# Supply default CFLAGS, if not specified by `CFLAGS=flags ./configure' 53dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure'
42dnl# 54dnl#
43if test -z "$orig_CXXFLAGS"; then 55if test -z "$orig_CXXFLAGS"; then
44 if test x$GCC = xyes && test "x$GXX" = xyes; then 56 if test x$GCC = xyes && test "x$GXX" = xyes; then
45 CXXFLAGS="-g -O3" 57 CXXFLAGS="-g -O3 -fno-rtti -fvisibility-inlines-hidden -fno-threadsafe-statics -fno-enforce-eh-specs"
58 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="-g -O3"])
46 else 59 else
47 CXXFLAGS="-O" 60 CXXFLAGS="-O"
48 fi 61 fi
49 CFLAGS="$CXXFLAGS" 62 CFLAGS="$CXXFLAGS"
50fi 63fi
51 64
52LINKER="$CXX"
53if test x$GCC = xyes && test x$GXX = xyes; then
54 AC_CHECK_LIB(supc++, main, [
55 LINKER="$CC"
56 LIBS="$LIBS -lsupc++"
57 ])
58fi
59AC_SUBST(LINKER,[$LINKER])
60
61AC_DEFINE(_GNU_SOURCE, 1, Use all glibc features.)
62
63case $host in
64 *-*-solaris* )
65 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
66 AC_DEFINE(_XOPEN_SOURCE, 2, Needed to get declarations for msg_control and msg_controllen on Solaris)
67 AC_DEFINE(__EXTENSIONS__, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
68 ;;
69esac
70
71dnl if test x$GXX = xyes; then
72dnl CXXFLAGS="$CXXFLAGS" dnl I once had -fno-exceptions, but I am using them now...
73dnl fi
74
75AC_LANG(C++)
76
77dnl# system hacks
78AC_AIX
79AC_ISC_POSIX
80
81dnl# FreeBSD needs to link libxpg4 65dnl# FreeBSD needs to link libxpg4
82AC_CHECK_FUNC(setlocale, [], [AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])]) 66AC_SEARCH_LIBS(setlocale, xpg4)
83 67
84dnl# solaris needs to link libnsl and socket 68dnl# solaris needs to link libnsl and socket
85AC_CHECK_FUNC(gethostbyname, [], [AC_CHECK_LIB(nsl, gethostbyname, [LIBS="$LIBS -lnsl"])]) 69AC_SEARCH_LIBS(gethostbyname, nsl)
86AC_CHECK_FUNC(socket, [], [AC_CHECK_LIB(socket, socket, [LIBS="$LIBS -lsocket"])]) 70AC_SEARCH_LIBS(socket, socket)
87
88dnl# more solaris
89AC_CHECK_FUNC(sched_yield, [], [AC_CHECK_LIB(rt, sched_yield, [LIBS="$LIBS -lrt"])])
90
91dnl# sched_yield to improve terminal efficiency
92AC_MSG_CHECKING(for sched_yield support)
93AC_TRY_LINK([#include <sched.h>],[sched_yield ()],
94 [AC_MSG_RESULT(yes)
95 AC_DEFINE(HAVE_SCHED_YIELD, 1, Define if you have sched-h and sched_yield)],
96 [AC_MSG_RESULT(no)])
97
98dnl AC_ENABLE_SHARED(no)dnl# libtool
99dnl AC_ENABLE_STATIC(yes)dnl# libtool
100dnl AC_PROG_LIBTOOL()dnl# libtool
101
102MALLOC_TYPE=S
103 71
104support_frills=yes 72support_frills=yes
105support_inheritpixmap=yes 73support_inheritpixmap=yes
106support_tinting=yes
107support_fading=yes 74support_fading=yes
108support_keepscrolling=yes 75support_keepscrolling=yes
109support_selectionscrolling=yes 76support_selectionscrolling=yes
110support_mousewheel=yes 77support_mousewheel=yes
111support_mouseslipwheel=yes 78support_mouseslipwheel=yes
112support_utmp=yes
113support_wtmp=yes
114support_lastlog=yes
115support_text_blink=yes 79support_text_blink=yes
116support_pointer_blank=yes 80support_pointer_blank=yes
117support_scroll_rxvt=yes 81support_scroll_rxvt=yes
118support_scroll_next=yes 82support_scroll_next=yes
119support_scroll_xterm=yes 83support_scroll_xterm=yes
120support_scroll_plain=yes
121support_xim=yes 84support_xim=yes
122support_xpm=yes 85support_pixbuf=yes
86support_startup_notification=yes
123support_xft=yes 87support_xft=yes
124support_unicode3=no 88support_unicode3=no
125support_combining=yes 89support_combining=yes
126support_8bitctrls=no 90support_8bitctrls=no
127support_iso14755=yes 91support_iso14755=yes
131 95
132dnl# -------------------------------------------------------------------------- 96dnl# --------------------------------------------------------------------------
133dnl# CHECKING COMMAND LINE OPTIONS 97dnl# CHECKING COMMAND LINE OPTIONS
134dnl# -------------------------------------------------------------------------- 98dnl# --------------------------------------------------------------------------
135 99
136if test "x$enable_shared" = xyes; then
137 AC_DEFINE(LIBRXVT, 1, Build shared library version - specify via configure only)
138 INSTALL_LIBRXVT=yes
139fi
140AC_SUBST(INSTALL_LIBRXVT)
141
142AC_ARG_ENABLE(everything, 100AC_ARG_ENABLE(everything,
143 [ --enable-everything enable standard non-multichoice features 101 [AS_HELP_STRING([--enable-everything],
102 [enable standard non-multichoice features
144 NOTE: this option is order dependent 103 NOTE: this option is order dependent])],
145 NOTE: automatically enabled with --enable-shared],
146 [ 104 [
147 if test x$enableval = xno; then 105 if test x$enableval = xno; then
148 support_24bit=no
149 support_frills=no 106 support_frills=no
150 support_inheritpixmap=no 107 support_inheritpixmap=no
151 support_tinting=no
152 support_fading=no 108 support_fading=no
153 support_keepscrolling=no 109 support_keepscrolling=no
154 support_selectionscrolling=no 110 support_selectionscrolling=no
155 support_lastlog=no
156 support_mousewheel=no 111 support_mousewheel=no
157 support_mouseslipwheel=no 112 support_mouseslipwheel=no
158 support_text_blink=no 113 support_text_blink=no
159 support_pointer_blank=no 114 support_pointer_blank=no
160 support_scroll_rxvt=no 115 support_scroll_rxvt=no
161 support_scroll_next=no 116 support_scroll_next=no
162 support_scroll_xterm=no 117 support_scroll_xterm=no
163 support_scroll_plain=no
164 support_utmp=no
165 support_wtmp=no
166 support_xim=no 118 support_xim=no
167 support_xpm=no 119 support_pixbuf=no
120 support_startup_notification=no
168 support_xft=no 121 support_xft=no
169 support_unicode3=no 122 support_unicode3=no
170 support_combining=no 123 support_combining=no
171 support_8bitctrls=no 124 support_8bitctrls=no
172 support_iso14755=no 125 support_iso14755=no
173 support_styles=no 126 support_styles=no
174 support_perl=no 127 support_perl=no
175 codesets= 128 codesets=
176 fi 129 fi
177 if test x$enableval = xyes; then 130 if test x$enableval = xyes; then
178 support_24bit=yes
179 support_frills=yes 131 support_frills=yes
180 support_inheritpixmap=yes 132 support_inheritpixmap=yes
181 support_tinting=yes
182 support_fading=yes 133 support_fading=yes
183 support_keepscrolling=yes 134 support_keepscrolling=yes
184 support_selectionscrolling=yes 135 support_selectionscrolling=yes
185 support_lastlog=yes
186 support_mousewheel=yes 136 support_mousewheel=yes
187 support_mouseslipwheel=yes 137 support_mouseslipwheel=yes
188 support_text_blink=yes 138 support_text_blink=yes
189 support_pointer_blank=yes 139 support_pointer_blank=yes
190 support_scroll_rxvt=yes 140 support_scroll_rxvt=yes
191 support_scroll_next=yes 141 support_scroll_next=yes
192 support_scroll_xterm=yes 142 support_scroll_xterm=yes
193 support_scroll_plain=yes
194 support_utmp=yes
195 support_wtmp=yes
196 support_xim=yes 143 support_xim=yes
197 support_xpm=yes 144 support_pixbuf=yes
145 support_startup_notification=yes
198 support_xft=yes 146 support_xft=yes
199 support_unicode3=yes 147 support_unicode3=yes
200 support_combining=yes 148 support_combining=yes
201 #support_8bitctrls=yes 149 #support_8bitctrls=yes
202 support_iso14755=yes 150 support_iso14755=yes
204 support_perl=yes 152 support_perl=yes
205 codesets=all 153 codesets=all
206 fi 154 fi
207 ]) 155 ])
208 156
157support_assertions=no
158AC_ARG_ENABLE(assert,
159 [AS_HELP_STRING([--enable-assert],
160 [enable assertions])],
161 [if test x$enableval = xyes; then
162 support_assertions=yes
163 fi])
164if test x$support_assertions = xno; then
165 AC_DEFINE(NDEBUG, 1, Disable assertions (good for debugging))
166fi
167
168support_warnings=no
169AC_ARG_ENABLE(warnings,
170 [AS_HELP_STRING([--enable-warnings],
171 [turn on g++ warnings])],
172 [if test x$enableval = xyes; then
173 support_warnings=yes
174 fi])
175if test x$GXX = xyes; then
176 if test $support_warnings = yes; then
177 save_CXXFLAGS="$CXXFLAGS"
178 for warning in \
179 -Wall \
180 -Wno-parentheses \
181 -Wno-reorder \
182 -Wno-sign-compare \
183 -Wno-unused-value \
184 ; do
185 CXXFLAGS="$CXXFLAGS $warning"
186 done
187 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="$save_CXXFLAGS"])
188 else
189 CXXFLAGS="$CXXFLAGS -w"
190 fi
191fi
192
193support_256_color=no
194AC_ARG_ENABLE(256-color,
195 [AS_HELP_STRING([--enable-256-color],
196 [enable 256-color support])],
197 [if test x$enableval = xyes; then
198 support_256_color=yes
199 fi])
200if test x$support_256_color = xyes; then
201 AC_DEFINE(USE_256_COLORS, 1, Define if you want 256-color support)
202fi
203
209AC_ARG_ENABLE(unicode3, 204AC_ARG_ENABLE(unicode3,
205 [AS_HELP_STRING([--enable-unicode3],
210 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters], 206 [use 21 instead of 16 bits to represent unicode characters])],
211 [if test x$enableval = xyes -o x$enableval = xno; then 207 [if test x$enableval = xyes -o x$enableval = xno; then
212 support_unicode3=$enableval 208 support_unicode3=$enableval
213 fi]) 209 fi])
214 210
215AC_ARG_ENABLE(combining, 211AC_ARG_ENABLE(combining,
212 [AS_HELP_STRING([--enable-combining],
216 [ --enable-combining enable composition of base and combining characters], 213 [enable composition of base and combining characters])],
217 [if test x$enableval = xyes -o x$enableval = xno; then 214 [if test x$enableval = xyes -o x$enableval = xno; then
218 support_combining=$enableval 215 support_combining=$enableval
219 fi]) 216 fi])
220 217
221AC_ARG_ENABLE(xft, 218AC_ARG_ENABLE(xft,
222 [ --enable-xft enable xft support on systems that have it], 219 [AS_HELP_STRING([--enable-xft],
220 [enable xft support on systems that have it])],
223 [if test x$enableval = xyes -o x$enableval = xno; then 221 [if test x$enableval = xyes -o x$enableval = xno; then
224 support_xft=$enableval 222 support_xft=$enableval
225 fi]) 223 fi])
226 224
227AC_ARG_ENABLE(font-styles, 225AC_ARG_ENABLE(font-styles,
228 [ --enable-font-styles enable bold and italic support], 226 [AS_HELP_STRING([--enable-font-styles],
227 [enable bold and italic support])],
229 [if test x$enableval = xyes -o x$enableval = xno; then 228 [if test x$enableval = xyes -o x$enableval = xno; then
230 support_styles=$enableval 229 support_styles=$enableval
231 fi]) 230 fi])
232 231
233AC_ARG_ENABLE(utmp, 232AC_ARG_ENABLE(pixbuf,
234 [ --enable-utmp enable utmp (utmpx) support], 233 [AS_HELP_STRING([--enable-pixbuf],
234 [enable integration with gdk-pixbuf for background images])],
235 [if test x$enableval = xyes -o x$enableval = xno; then 235 [if test x$enableval = xyes -o x$enableval = xno; then
236 support_utmp=$enableval
237 fi])
238
239AC_ARG_ENABLE(wtmp,
240 [ --enable-wtmp enable wtmp (wtmpx) support (requires --enable-utmp)],
241 [if test x$enableval = xyes -o x$enableval = xno; then
242 support_wtmp=$enableval
243 fi])
244
245AC_ARG_ENABLE(lastlog,
246 [ --enable-lastlog enable lastlog support (requires --enable-utmp)],
247 [if test x$enableval = xyes -o x$enableval = xno; then
248 support_lastlog=$enableval
249 fi])
250
251AC_ARG_ENABLE(xpm-background,
252 [ --enable-xpm-background enable XPM background pixmaps],
253 [if test x$enableval = xyes -o x$enableval = xno; then
254 support_xpm=$enableval 236 support_pixbuf=$enableval
237 fi])
238
239AC_ARG_ENABLE(startup-notification,
240 [AS_HELP_STRING([--enable-startup-notification],
241 [enable freedesktop startup notification support])],
242 [if test x$enableval = xyes -o x$enableval = xno; then
243 support_startup_notification=$enableval
255 fi]) 244 fi])
256 245
257AC_ARG_ENABLE(transparency, 246AC_ARG_ENABLE(transparency,
258 [ --enable-transparency enable transparent backgrounds], 247 [AS_HELP_STRING([--enable-transparency],
248 [enable transparent backgrounds])],
259 [if test x$enableval = xyes -o x$enableval = xno; then 249 [if test x$enableval = xyes -o x$enableval = xno; then
260 support_inheritpixmap=$enableval 250 support_inheritpixmap=$enableval
261 fi]) 251 fi])
262 252
263AC_ARG_ENABLE(tinting,
264 [ --enable-tinting enable tinting of transparent bg],
265 [if test x$enableval = xyes -o x$enableval = xno; then
266 support_tinting=$enableval
267 fi])
268
269AC_ARG_ENABLE(fading, 253AC_ARG_ENABLE(fading,
270 [ --enable-fading enable colors fading when off focus], 254 [AS_HELP_STRING([--enable-fading],
255 [enable colors fading when off focus])],
271 [if test x$enableval = xyes -o x$enableval = xno; then 256 [if test x$enableval = xyes -o x$enableval = xno; then
272 support_fading=$enableval 257 support_fading=$enableval
273 fi]) 258 fi])
274 259
275AC_ARG_ENABLE(rxvt-scroll, 260AC_ARG_ENABLE(rxvt-scroll,
276 [ --enable-rxvt-scroll enable rxvt style scrollbar], 261 [AS_HELP_STRING([--enable-rxvt-scroll],
262 [enable rxvt style scrollbar])],
277 [if test x$enableval = xyes -o x$enableval = xno; then 263 [if test x$enableval = xyes -o x$enableval = xno; then
278 support_scroll_rxvt=$enableval 264 support_scroll_rxvt=$enableval
279 fi]) 265 fi])
280 266
281AC_ARG_ENABLE(next-scroll, 267AC_ARG_ENABLE(next-scroll,
282 [ --enable-next-scroll enable NeXT style scrollbar], 268 [AS_HELP_STRING([--enable-next-scroll],
269 [enable NeXT style scrollbar])],
283 [if test x$enableval = xyes -o x$enableval = xno; then 270 [if test x$enableval = xyes -o x$enableval = xno; then
284 support_scroll_next=$enableval 271 support_scroll_next=$enableval
285 fi]) 272 fi])
286 273
287AC_ARG_ENABLE(xterm-scroll, 274AC_ARG_ENABLE(xterm-scroll,
288 [ --enable-xterm-scroll enable Xterm style scrollbar], 275 [AS_HELP_STRING([--enable-xterm-scroll],
276 [enable Xterm style scrollbar])],
289 [if test x$enableval = xyes -o x$enableval = xno; then 277 [if test x$enableval = xyes -o x$enableval = xno; then
290 support_scroll_xterm=$enableval 278 support_scroll_xterm=$enableval
291 fi]) 279 fi])
292 280
293AC_ARG_ENABLE(perl, 281AC_ARG_ENABLE(perl,
294 [ --enable-perl enable embedded perl interpreter], 282 [AS_HELP_STRING([--enable-perl],
283 [enable embedded perl interpreter])],
295 [if test x$enableval = xyes -o x$enableval = xno; then 284 [if test x$enableval = xyes -o x$enableval = xno; then
296 support_perl=$enableval 285 support_perl=$enableval
297 fi]) 286 fi])
298 287
299AC_ARG_ENABLE(plain-scroll,
300 [ --enable-plain-scroll enable plain style scrollbar],
301 [if test x$enableval = xyes -o x$enableval = xno; then
302 support_scroll_plain=$enableval
303 fi])
304
305dnl AC_ARG_ENABLE(half-shadow,
306dnl [ --enable-half-shadow use half width/height shadow on rxvt scrollbar],
307dnl [if test x$enableval = xyes; then
308dnl AC_DEFINE(HALFSHADOW, 1, Define if you want the depth of scrollbars and menus to be less)
309dnl fi])
310
311AC_ARG_WITH(codesets, 288AC_ARG_WITH(codesets,
289 [AS_HELP_STRING([--with-codesets=CS,...],
312 [ --with-codesets=NAME,.. compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)], 290 [compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)])],
313 [codesets="$withval"]) 291 [codesets="$withval"])
314 292
315AC_ARG_ENABLE(xim, 293AC_ARG_ENABLE(xim,
316 [ --enable-xim XIM (X Input Method) protocol support], 294 [AS_HELP_STRING([--enable-xim],
295 [XIM (X Input Method) protocol support])],
317 [if test x$enableval = xyes -o x$enableval = xno; then 296 [if test x$enableval = xyes -o x$enableval = xno; then
318 support_xim=$enableval 297 support_xim=$enableval
319 fi]) 298 fi])
320 299
321AC_ARG_ENABLE(ttygid,
322 [ --enable-ttygid enable tty setting to group named "tty"],
323 [if test x$enableval = xyes; then
324 AC_DEFINE(TTY_GID_SUPPORT, 1, Define to change gid of ttys to group tty)
325 fi])
326
327AC_ARG_ENABLE(backspace-key, 300AC_ARG_ENABLE(backspace-key,
328 [ --disable-backspace-key disable handling of the backspace key], 301 [AS_HELP_STRING([--disable-backspace-key],
302 [disable handling of the backspace key])],
329 [if test x$enableval = xno; then 303 [if test x$enableval = xno; then
330 AC_DEFINE(NO_BACKSPACE_KEY, 1, Define if you don't want support for the backspace key) 304 AC_DEFINE(NO_BACKSPACE_KEY, 1, Define if you don't want support for the backspace key)
331 fi]) 305 fi])
332 306
333AC_ARG_ENABLE(delete-key, 307AC_ARG_ENABLE(delete-key,
334 [ --disable-delete-key disable handling of the delete key], 308 [AS_HELP_STRING([--disable-delete-key],
309 [disable handling of the delete key])],
335 [if test x$enableval = xno; then 310 [if test x$enableval = xno; then
336 AC_DEFINE(NO_DELETE_KEY, 1, Define if you don't want support for the (non-keypad) delete key) 311 AC_DEFINE(NO_DELETE_KEY, 1, Define if you don't want support for the (non-keypad) delete key)
337 fi]) 312 fi])
338 313
314support_resources=yes
339AC_ARG_ENABLE(resources, 315AC_ARG_ENABLE(resources,
340 [ --disable-resources disable all resource checking], 316 [AS_HELP_STRING([--disable-resources],
317 [disable all resource checking])],
341 [if test x$enableval = xno; then 318 [if test x$enableval = xno; then
342 AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read) 319 support_resources=no
343 fi]) 320 fi])
344 321
345AC_ARG_ENABLE(8bitctrls, 322AC_ARG_ENABLE(8bitctrls,
346 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)], 323 [AS_HELP_STRING([--enable-8bitctrls],
324 [enable 8 bit control sequences (not recommended)])],
347 [if test x$enableval = xyes -o x$enableval = xno; then 325 [if test x$enableval = xyes -o x$enableval = xno; then
348 support_8bitctrls=$enableval 326 support_8bitctrls=$enableval
349 fi]) 327 fi])
350 328
351RESFALLBACK=Rxvt 329RESFALLBACK=Rxvt
352AC_ARG_ENABLE(fallback, 330AC_ARG_ENABLE(fallback,
331 [AS_HELP_STRING([--enable-fallback@<:@=CLASS@:>@],
353 [ --enable-fallback(=CLASS) fall back on CLASS resources in addition to URxvt ones (default: Rxvt)], 332 [fall back on CLASS resources in addition to URxvt ones (default: Rxvt)])],
354 [ 333 [
355 test x$enableval = xyes && enableval=Rxvt 334 test x$enableval = xyes && enableval=Rxvt
356 test x$enableval = xno && enableval= 335 test x$enableval = xno && enableval=
357 RESFALLBACK="$enableval" 336 RESFALLBACK="$enableval"
358 ]) 337 ])
361 AC_DEFINE_UNQUOTED(RESFALLBACK, "$RESFALLBACK", [Fallback resource class]) 340 AC_DEFINE_UNQUOTED(RESFALLBACK, "$RESFALLBACK", [Fallback resource class])
362fi 341fi
363 342
364RESNAME=urxvt 343RESNAME=urxvt
365AC_ARG_WITH(res-name, 344AC_ARG_WITH(res-name,
366 [ --with-res-name=NAME use this as default resource name (default: urxvt)], 345 [AS_HELP_STRING([--with-res-name=NAME],
346 [set the default resource name (default: urxvt)])],
367 [RESNAME="$withval"]) 347 [RESNAME="$withval"])
368AC_DEFINE_UNQUOTED(RESNAME,"$RESNAME", [Default resource name]) 348AC_DEFINE_UNQUOTED(RESNAME,"$RESNAME", [Default resource name])
369 349
370RESCLASS=URxvt 350RESCLASS=URxvt
371AC_ARG_WITH(res-class, 351AC_ARG_WITH(res-class,
372 [ --with-res-class=CLASS use this as the resource class (default: URxvt)], 352 [AS_HELP_STRING([--with-res-class=CLASS],
353 [set the resource class (default: URxvt)])],
373 [RESCLASS="$withval"]) 354 [RESCLASS="$withval"])
374AC_DEFINE_UNQUOTED(RESCLASS,"$RESCLASS", [Resource class]) 355AC_DEFINE_UNQUOTED(RESCLASS,"$RESCLASS", [Resource class])
375 356
376RXVTNAME=urxvt 357RXVTNAME=urxvt
377AC_ARG_WITH(name, 358AC_ARG_WITH(name,
359 [AS_HELP_STRING([--with-name=NAME],
378 [ --with-name=NAME set the basename for the installed binaries (default: urxvt)], 360 [set the basename for the installed binaries (default: urxvt)])],
379 [RXVTNAME="$withval"]) 361 [RXVTNAME="$withval"])
380AC_DEFINE_UNQUOTED(RXVTNAME,"$RXVTNAME", [Binary base name]) 362AC_DEFINE_UNQUOTED(RXVTNAME,"$RXVTNAME", [Binary base name])
381 363
382RXVTNAME=`echo "$RXVTNAME"|sed "$program_transform_name"`
383AC_SUBST(RXVTNAME) 364AC_SUBST(RXVTNAME)
384 365
385AC_ARG_ENABLE(swapscreen, 366AC_ARG_ENABLE(swapscreen,
386 [ --disable-swapscreen disable swap screen support], 367 [AS_HELP_STRING([--disable-swapscreen],
368 [disable swap screen support])],
387 [if test x$enableval = xno; then 369 [if test x$enableval = xno; then
388 AC_DEFINE(NO_SECONDARY_SCREEN, 1, Disable the secondary screen. Many programs use the secondary screen as their workplace) 370 AC_DEFINE(NO_SECONDARY_SCREEN, 1, Disable the secondary screen. Many programs use the secondary screen as their workplace)
389 fi]) 371 fi])
390 372
391AC_ARG_ENABLE(iso14755, 373AC_ARG_ENABLE(iso14755,
374 [AS_HELP_STRING([--enable-iso14755],
392 [ --enable-iso14755 enable support for extended ISO 14755 modes], 375 [enable support for extended ISO 14755 modes])],
393 [if test x$enableval = xyes -o x$enableval = xno; then 376 [if test x$enableval = xyes -o x$enableval = xno; then
394 support_iso14755=$enableval 377 support_iso14755=$enableval
395 fi]) 378 fi])
396 379
397AC_ARG_ENABLE(frills, 380AC_ARG_ENABLE(frills,
398 [ --enable-frills enable support for rarely used features], 381 [AS_HELP_STRING([--enable-frills],
382 [enable support for rarely used features])],
399 [if test x$enableval = xyes -o x$enableval = xno; then 383 [if test x$enableval = xyes -o x$enableval = xno; then
400 support_frills=$enableval 384 support_frills=$enableval
401 fi]) 385 fi])
402 386
403AC_ARG_ENABLE(24bit,
404 [ --enable-24bit enable support for using 24bit visuals if available],
405 [if test x$enableval = xyes -o x$enableval = xno; then
406 support_24bit=$enableval
407 fi])
408
409AC_ARG_ENABLE(keepscrolling, 387AC_ARG_ENABLE(keepscrolling,
410 [ --enable-keepscrolling enable continual scrolling on scrollbar arrow press], 388 [AS_HELP_STRING([--enable-keepscrolling],
389 [enable continual scrolling on scrollbar arrow press])],
411 [if test x$enableval = xyes -o x$enableval = xno; then 390 [if test x$enableval = xyes -o x$enableval = xno; then
412 support_keepscrolling=$enableval 391 support_keepscrolling=$enableval
413 fi]) 392 fi])
414 393
415AC_ARG_ENABLE(selectionscrolling, 394AC_ARG_ENABLE(selectionscrolling,
416 [ --enable-selectionscrolling enable scrolling during selections], 395 [AS_HELP_STRING([--enable-selectionscrolling],
396 [enable scrolling during selections])],
417 [if test x$enableval = xyes -o x$enableval = xno; then 397 [if test x$enableval = xyes -o x$enableval = xno; then
418 support_selectionscrolling=$enableval 398 support_selectionscrolling=$enableval
419 fi]) 399 fi])
420 400
421AC_ARG_ENABLE(mousewheel, 401AC_ARG_ENABLE(mousewheel,
402 [AS_HELP_STRING([--enable-mousewheel],
422 [ --enable-mousewheel enable scrolling via mouse wheel or buttons 4 & 5], 403 [enable scrolling via mouse wheel or buttons 4 & 5])],
423 [if test x$enableval = xyes -o x$enableval = xno; then 404 [if test x$enableval = xyes -o x$enableval = xno; then
424 support_mousewheel=$enableval 405 support_mousewheel=$enableval
425 fi]) 406 fi])
426 407
427AC_ARG_ENABLE(slipwheeling, 408AC_ARG_ENABLE(slipwheeling,
428 [ --enable-slipwheeling enable slip wheel scrolling (requires previous)], 409 [AS_HELP_STRING([--enable-slipwheeling],
410 [enable slip wheel scrolling (requires --enable-mousewheel)])],
429 [if test x$enableval = xyes -o x$enableval = xno; then 411 [if test x$enableval = xyes -o x$enableval = xno; then
430 support_mouseslipwheel=$enableval 412 support_mouseslipwheel=$enableval
431 fi]) 413 fi])
432 414
433AC_ARG_ENABLE(dmalloc,
434 [ --enable-dmalloc enable Gray Watson's malloc - for debugging use],
435 [if test x$enableval = xyes; then
436 MALLOC_TYPE=G
437 DEBUG=-DDEBUG_MALLOC
438 DLIB="-L/usr/local/lib -ldmalloc"
439 DINCLUDE=-I/usr/local/include
440 fi])
441
442AC_ARG_ENABLE(dlmalloc,
443 [ --enable-dlmalloc enable Doug Lea's malloc - for production use
444 NOTE: enable only one malloc package],
445 [if test x$enableval = xyes; then
446 MALLOC_TYPE=D
447 DEBUG=
448 DLIB="-L/usr/local/lib -ldlmalloc"
449 DINCLUDE=
450 fi])
451
452AC_ARG_ENABLE(smart-resize, 415AC_ARG_ENABLE(smart-resize,
453 [ --enable-smart-resize enable smart growth/shrink behaviour], 416 [AS_HELP_STRING([--enable-smart-resize],
417 [enable smart growth/shrink behaviour])],
454 [if test x$enableval = xyes; then 418 [if test x$enableval = xyes; then
455 AC_DEFINE(SMART_RESIZE, 1, Define to use "smart" resize behavior) 419 AC_DEFINE(SMART_RESIZE, 1, Define to use "smart" resize behavior)
456 fi]) 420 fi])
457 421
458AC_ARG_ENABLE(text-blink, 422AC_ARG_ENABLE(text-blink,
459 [ --enable-text-blink enable blinking text], 423 [AS_HELP_STRING([--enable-text-blink],
424 [enable blinking text])],
460 [if test x$enableval = xyes -o x$enableval = xno; then 425 [if test x$enableval = xyes -o x$enableval = xno; then
461 support_text_blink=$enableval 426 support_text_blink=$enableval
462 fi]) 427 fi])
463 428
464AC_ARG_ENABLE(pointer-blank, 429AC_ARG_ENABLE(pointer-blank,
465 [ --enable-pointer-blank enable pointer blank when typing or inactive pointer], 430 [AS_HELP_STRING([--enable-pointer-blank],
431 [enable pointer blanking when typing or inactive])],
466 [if test x$enableval = xyes -o x$enableval = xno; then 432 [if test x$enableval = xyes -o x$enableval = xno; then
467 support_pointer_blank=$enableval 433 support_pointer_blank=$enableval
468 fi]) 434 fi])
469 435
470AC_ARG_WITH(term, 436AC_ARG_WITH(term,
471 [ --with-term=NAME set the terminal to NAME (default: rxvt)], 437 [AS_HELP_STRING([--with-term=VALUE],
438 [set the value of the TERM environment variable (default: rxvt)])],
472 [if test x$withval != x; then 439 [if test x$withval != x; then
473 AC_DEFINE_UNQUOTED(TERMENV, "$withval",Set TERM to the value given by configure) term="$withval" 440 AC_DEFINE_UNQUOTED(TERMENV, "$withval",Set TERM to the value given by configure) term="$withval"
474 fi]) 441 fi])
475 442
476AC_ARG_WITH(terminfo, 443AC_ARG_WITH(terminfo,
477 [ --with-terminfo=PATH set the path to the terminfo tree to PATH], 444 [AS_HELP_STRING([--with-terminfo=VALUE],
445 [set the value of the TERMINFO environment variable])],
478 [if test x$withval != x; then 446 [if test x$withval != x; then
479 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval" 447 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval"
480 fi]) 448 fi])
481 449
482dnl# -------------------------------------------------------------------------- 450if test x$support_resources = xno; then
451 if test x$support_frills = xyes || test x$support_perl = xyes; then
452 AC_MSG_ERROR([--disable-resources requires --disable-frills --disable-perl])
453 fi
483 454
484AC_DEFINE(PROTOTYPES, 1, Define if you need function prototypes) 455 AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read)
456fi
485 457
486AC_PATH_PROG(MV, mv, mv) 458dnl# --------------------------------------------------------------------------
487AC_PATH_PROG(RM, rm, rm) 459
488AC_PATH_PROG(CP, cp, cp) 460LIBEV_M4_AVOID_LIBRT=1
489AC_PATH_PROG(LN, ln, ln) 461m4_include([libev/libev.m4])
490AC_PATH_PROG(SED, sed, sed) 462
491AC_PATH_PROG(ECHO, echo, echo) 463dnl# --------------------------------------------------------------------------
492AC_PATH_PROG(CMP, cmp, cmp) 464
493AC_PATH_PROG(TBL, tbl)
494AC_PATH_PROG(TIC, tic) 465AC_PATH_PROG(TIC, tic, :)
495
496dnl# need a neat way to detect SVR4 or its features
497dnl# in src/command.c we use these functions:
498dnl# grantpt(), unlockpt(), ptsname(), which are defined in <sys/ptms.h>
499dnl# - but are these also defined for other systems?
500
501dnl# hack to find if this is SVR4 -- who knows?
502dnl## AC_MSG_CHECKING(for SVR4)
503dnl## AC_EGREP_CPP(yes,
504dnl## [#if defined (SVR4) || defined (_SVR4) || defined (__svr4__)
505dnl## yes;
506dnl## #endif
507dnl## ], [AC_MSG_RESULT(yes); AC_DEFINE(PERHAPS_SVR4)], AC_MSG_RESULT(perhaps not?))
508 466
509AC_PATH_XTRA 467AC_PATH_XTRA
510 468
511dnl# the only reasonable way to find libXpm is do-it-yourself 469AC_PATH_TOOL(PKG_CONFIG, pkg-config, no)
512dnl# only check if we want xpm-background
513 470
471RXVT_CHECK_MODULES([PTYTTY], [libptytty], [:], [
472 AC_MSG_ERROR([unable to find libptytty])
473])
474
475AC_SUBST(PTYTTY_CFLAGS)
476AC_SUBST(PTYTTY_LIBS)
477
478image_lib=none
479
480PIXBUF_CFLAGS=
481PIXBUF_LIBS=
482
514if test x$support_xpm = xyes; then 483if test x$support_pixbuf = xyes; then
515 VT_FIND_LIBXPM 484 RXVT_CHECK_MODULES([PIXBUF], [gdk-pixbuf-2.0], [
516 if test x$no_xpm = xyes; then 485 image_lib=gdk-pixbuf
517 support_xpm=needsmanualspecification 486 AC_DEFINE(HAVE_PIXBUF, 1, Define if you want to use gdk-pixbuf for image processing)
518 fi 487 ], [:])
488fi
489
490AC_SUBST(PIXBUF_CFLAGS)
491AC_SUBST(PIXBUF_LIBS)
492
493STARTUP_NOTIFICATION_CFLAGS=
494STARTUP_NOTIFICATION_LIBS=
495
496if test x$support_startup_notification = xyes; then
497 RXVT_CHECK_MODULES([STARTUP_NOTIFICATION], [libstartup-notification-1.0], [
498 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, Define if freedesktop startup notifications should be supported)
499 ], [:])
500fi
501
502AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
503AC_SUBST(STARTUP_NOTIFICATION_LIBS)
504
505if test x$support_frills = xyes; then
506 RXVT_CHECK_MODULES([XMU], [xmu], [
507 X_LIBS="$XMU_LIBS $X_LIBS"
508 CPPFLAGS="$CPPFLAGS $XMU_CFLAGS"
509 AC_DEFINE(HAVE_XMU, 1, Define to enable Xmu support)
510 ], [:])
519fi 511fi
520 512
521dnl# -------------------------------------------------------------------------- 513dnl# --------------------------------------------------------------------------
522dnl# CHECKING FOR HEADER FILES 514dnl# CHECKING FOR HEADER FILES
523dnl# -------------------------------------------------------------------------- 515dnl# --------------------------------------------------------------------------
524AC_HEADER_SYS_WAIT
525AC_CHECK_HEADERS( \ 516AC_CHECK_HEADERS( \
526 assert.h \
527 fcntl.h \
528 grp.h \
529 libc.h \
530 lastlog.h \
531 stdarg.h \
532 stdlib.h \
533 string.h \
534 termios.h \
535 unistd.h \
536 sys/byteorder.h \ 517 sys/byteorder.h \
537 sys/ioctl.h \ 518 sys/ioctl.h \
538 sys/select.h \
539 sys/sockio.h \ 519 sys/sockio.h \
540 sys/strredir.h \ 520 sys/strredir.h \
541 sys/stropts.h \ 521 stdint.h \
542 sys/time.h \ 522 wchar.h \
543 utmp.h \
544 utmpx.h \
545 stdint.h \
546 pty.h \
547 util.h \
548 libutil.h \
549 wchar.h \
550 cwchar \
551 clocale \
552) 523)
553 524
554AC_HEADER_TIME 525AC_CACHE_CHECK([for XLIB_ILLEGAL_ACCESS], rxvt_cv_xlib_illegal_access,
555 526[AC_COMPILE_IFELSE(
556dnl# check to allow both <termios.h> and <sys/ioctl.h> 527 [AC_LANG_PROGRAM([
557AC_CACHE_CHECK(whether termios.h and sys/ioctl.h may both be included, rxvt_cv_header_sysioctl, 528#define XLIB_ILLEGAL_ACCESS
558[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h> 529#include <X11/Xlib.h>
559#include <sys/ioctl.h> 530 ],[
560#ifdef HAVE_TERMIOS_H 531 Display *dpy;
561#include <termios.h> 532 dpy->xdefaults = (char *)0;
562#endif]], [[int a = ECHO;]])],[rxvt_cv_header_sysioctl=yes],[rxvt_cv_header_sysioctl=no])]) 533 ])],
563 534 [rxvt_cv_xlib_illegal_access=yes],[rxvt_cv_xlib_illegal_access=no]
564dnl# ELF systems may want to store paths for dynamic libraries. 535)])
565dnl# Lets see if the compiler can accept "-Rpath" or "-Wl,-Rpath"
566dnl# At least one version of SunOS wants "-R path" but it's not checked yet.
567if test -n "$GCC"; then
568 LDARG="-Wl,"
569else
570 LDARG=""
571fi
572changequote(, )dnl
573R_TRANSLATE='s/-L\([^ ]*\)/-L\1 '$LDARG'-rpath '$LDARG'\1/g'
574changequote([, ])dnl
575
576ac_save_CFLAGS=$CFLAGS
577ac_save_LIBS=$LIBS
578CFLAGS="$CFLAGS $X_CFLAGS"
579LIBS=`echo "$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" | sed "$R_TRANSLATE"`
580AC_CACHE_CHECK([for -rpath dynamic library path recording], rxvt_cv_rpath,
581[AC_RUN_IFELSE([AC_LANG_SOURCE([[
582main()
583{
584 exit(0);
585 (void) XOpenDisplay("foobar");
586}]])],[rxvt_cv_rpath=yes],[rxvt_cv_rpath=no],[dnl
587 AC_MSG_WARN(You may need to check the LIBS line)])])
588if test x$rxvt_cv_rpath != xyes; then
589 changequote(, )dnl
590 R_TRANSLATE='s/-L\([^ ]*\)/-L\1 '$LDARG'-R\1/g'
591 changequote([, ])dnl
592 LIBS=`echo "$ac_save_LIBS $X_LIBS $X_EXTRA_LIBS -lX11" | sed "$R_TRANSLATE"`
593 AC_CACHE_CHECK([for -R dynamic library path recording], rxvt_cv_R,
594[AC_RUN_IFELSE([AC_LANG_SOURCE([[
595main()
596{
597 exit(0);
598 (void) XOpenDisplay("foobar");
599}]])],[rxvt_cv_R=yes],[rxvt_cv_R=no],[rxvt_cv_R=no])])
600 if test x$rxvt_cv_R != xyes; then
601 LIBS="$ac_save_LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
602 fi
603fi
604
605AC_CACHE_CHECK([for XPointer], rxvt_cv_xpointer,
606[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>]], [[XPointer dummy;]])],[rxvt_cv_xpointer=yes],[rxvt_cv_xpointer=no])])
607if test x$rxvt_cv_xpointer = xyes; then 536if test x$rxvt_cv_xlib_illegal_access = xyes; then
608 AC_DEFINE(HAVE_XPOINTER, 1, Define if you have XPointer typedef) 537 AC_DEFINE(XLIB_ILLEGAL_ACCESS, 1, Define ONLY iff Xlib.h supports it)
609fi 538fi
610LIBS=$ac_save_LIBS
611CFLAGS=$ac_save_CFLAGS
612
613
614AC_C_CONST
615AC_C_INLINE
616
617dnl> AC_HEADER_STDC dnl# skip this test, Sun always fails anyhow.
618 539
619dnl# -------------------------------------------------------------------------- 540dnl# --------------------------------------------------------------------------
620dnl# CHECKING FOR MISSING TYPEDEFS 541dnl# CHECKING FOR MISSING TYPEDEFS
621dnl# -------------------------------------------------------------------------- 542dnl# --------------------------------------------------------------------------
622dnl# Missing typedefs and replacements 543dnl# Missing typedefs and replacements
623AC_TYPE_MODE_T 544AC_TYPE_MODE_T
624dnl> AC_CHECK_TYPE(umode_t, int)
625dnl> AC_CHECK_TYPE(off_t, long)
626AC_TYPE_PID_T 545AC_TYPE_PID_T
627AC_TYPE_UID_T 546AC_TYPE_UID_T
547AC_TYPE_INT16_T
548AC_TYPE_UINT16_T
549AC_TYPE_INT32_T
550AC_TYPE_UINT32_T
628 551
629AC_CHECK_SIZEOF(short, 2) 552dnl# --------------------------------------------------------------------------
630AC_CHECK_SIZEOF(int, 4) 553dnl# CHECKING FOR LIBRARY FUNCTIONS
631dnl AC_CHECK_SIZEOF(long, 4) 554dnl# --------------------------------------------------------------------------
632AC_CHECK_SIZEOF(long long, 8) 555AC_CHECK_FUNCS(unsetenv)
633AC_CHECK_SIZEOF(int *, 4)
634 556
635dnl# see usage below 557dnl# --------------------------------------------------------------------------
636AC_DEFUN(RXVT_CHECK_SIZE, 558
637 [AC_CACHE_CHECK([for $2], $1, 559dnl# --------------------------------------------------------------------------
638 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdint.h>]], [[$2 dummy;]])],[$1=yes],[dnl 560dnl# --------------------------------------------------------------------------
639if test "$ac_cv_sizeof_char" -ge $3; then 561
640 $1="$4 char" 562dnl# this is a really hack test for some basic Xlocale stuff
641else 563save_LIBS=$LIBS
642 if test "$ac_cv_sizeof_short" -ge $3; then 564save_CXXFLAGS=$CXXFLAGS
643 $1="$4 short" 565CXXFLAGS="$CXXFLAGS $X_CFLAGS"
644 else 566LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
645 if test "$ac_cv_sizeof_int" -ge $3; then 567if test x$support_xim = xyes; then
646 $1="$4 int" 568 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
569 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
570 #include <X11/Xlib.h>
571 #include <stdlib.h>
572 int main() {
573 char *p;
574 if ((p = XSetLocaleModifiers("@im=none")) != NULL && *p)
575 exit (XSupportsLocale() ? 0 : 1);
647 else 576 else
648 if test "$ac_cv_sizeof_long" -ge $3; then 577 exit (1);
649 $1="$4 long" 578 }
650 else 579 ]])],[rxvt_cv_func_xlocale=yes],[rxvt_cv_func_xlocale=no],[:])])
651 if test "$ac_cv_sizeof_long_long" -ge $3; then 580 if test x$rxvt_cv_func_xlocale = xyes; then
652 $1="$4 long long" 581 AC_DEFINE(USE_XIM, 1, Define if you want to have XIM (X Input Method) protocol support - required for multibyte characters input)
653 else 582 AC_CACHE_CHECK(for broken XIM callback, rxvt_cv_broken_ximcb,
654 $1="$4 $5" # we _must_ have a (possibly wrong) default 583 [AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
655 fi 584 #include <X11/Xlib.h>
656 fi 585
586 void im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3);
587
588 void f() {
589 XIMCallback cb;
590 cb.callback = im_destroy_cb;
591 }
592 ]])],rxvt_cv_broken_ximcb=yes,rxvt_cv_broken_ximcb=no)])
593
594 if test x$rxvt_cv_broken_ximcb = xyes; then
595 AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.)
657 fi 596 fi
658 fi 597 fi
659fi])])]
660if test x"$$1" != xyes; then
661 $6="typedef $$1 $2;"
662else
663 if test x"$4" = x; then
664 $6="/* typedef $5 $2; */"
665 else
666 $6="/* typedef $4 $5 $2; */"
667 fi
668fi dnl
669)
670dnl#
671dnl# Look for types the system may know about anyway.
672dnl#
673RXVT_CHECK_SIZE(rxvt_cv_int16_t, int16_t, 2, , short, rxvt_int16_typedef)
674AC_SUBST(rxvt_int16_typedef)
675RXVT_CHECK_SIZE(rxvt_cv_uint16_t, uint16_t, 2, unsigned, short, rxvt_uint16_typedef)
676AC_SUBST(rxvt_uint16_typedef)
677RXVT_CHECK_SIZE(rxvt_cv_int32_t, int32_t, 4, , int, rxvt_int32_typedef)
678AC_SUBST(rxvt_int32_typedef)
679RXVT_CHECK_SIZE(rxvt_cv_uint32_t, uint32_t, 4, unsigned, int, rxvt_uint32_typedef)
680AC_SUBST(rxvt_uint32_typedef)
681dnl RXVT_CHECK_SIZE(rxvt_cv_int64_t, int64_t, 8, , long long, rxvt_int64_typedef)
682dnl AC_SUBST(rxvt_int64_typedef)
683dnl RXVT_CHECK_SIZE(rxvt_cv_uint64_t, uint64_t, 8, unsigned, long long, rxvt_uint64_typedef)
684dnl AC_SUBST(rxvt_uint64_typedef)
685dnl#
686dnl# Now look for another we use
687dnl#
688if test "$ac_cv_sizeof_int_p" -eq 8; then
689 rxvt_intp_define="#define intp_t int64_t"
690 rxvt_u_intp_define="#define u_intp_t u_int64_t"
691else
692 if test "$ac_cv_sizeof_int_p" -eq 4; then
693 rxvt_intp_define="#define intp_t int32_t"
694 rxvt_u_intp_define="#define u_intp_t u_int32_t"
695 else
696 if test "$ac_cv_sizeof_int_p" -eq 2; then
697 rxvt_intp_define="#define intp_t int16_t"
698 rxvt_u_intp_define="#define u_intp_t u_int16_t"
699 else
700 rxvt_intp_define="#error set intp_t"
701 rxvt_u_intp_define="#error set u_intp_t"
702 fi
703 fi
704fi
705AC_SUBST(rxvt_intp_define)
706AC_SUBST(rxvt_u_intp_define)
707
708dnl# --------------------------------------------------------------------------
709dnl# CHECKING FOR LIBRARY FUNCTIONS
710dnl# --------------------------------------------------------------------------
711AC_TYPE_SIGNAL
712dnl> AC_FUNC_VPRINTF
713
714AC_CHECK_FUNCS( \
715 revoke \
716 unsetenv \
717 setutent \
718 seteuid \
719 setreuid \
720 _getpty \
721 getpt \
722 posix_openpt \
723 grantpt \
724 unlockpt \
725 isastream \
726 on_exit \
727 nanosleep \
728 updwtmp \
729 updwtmpx \
730 ttyslot \
731)
732
733dnl# --------------------------------------------------------------------------
734dnl# DO ALL UTMP AND WTMP CHECKING
735dnl# --------------------------------------------------------------------------
736dnl# check for host field in utmp structure
737
738dnl# --------------------------------------------
739AC_CHECK_HEADER(utmp.h,
740[AC_CACHE_CHECK([for struct utmp], rxvt_cv_struct_utmp,
741[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
742#include <stdint.h>
743#include <utmp.h>]], [[struct utmp ut;]])],[rxvt_cv_struct_utmp=yes],[rxvt_cv_struct_utmp=no])])
744if test x$rxvt_cv_struct_utmp = xyes; then
745 AC_DEFINE(HAVE_STRUCT_UTMP, 1, Define if utmp.h has struct utmp)
746fi
747]
748
749AC_CACHE_CHECK(for ut_host in utmp struct, rxvt_cv_struct_utmp_host,
750[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
751#include <utmp.h>]], [[struct utmp ut; ut.ut_host;]])],[rxvt_cv_struct_utmp_host=yes],[rxvt_cv_struct_utmp_host=no])])
752if test x$rxvt_cv_struct_utmp_host = xyes; then
753 AC_DEFINE(HAVE_UTMP_HOST, 1, Define if struct utmp contains ut_host)
754fi
755
756AC_CACHE_CHECK(for ut_pid in utmp struct, rxvt_cv_struct_utmp_pid,
757[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
758#include <utmp.h>]], [[struct utmp ut; ut.ut_pid;]])],[rxvt_cv_struct_utmp_pid=yes],[rxvt_cv_struct_utmp_pid=no])])
759if test x$rxvt_cv_struct_utmp_pid = xyes; then
760 AC_DEFINE(HAVE_UTMP_PID, 1, Define if struct utmp contains ut_pid)
761fi
762) dnl# AC_CHECK_HEADER(utmp.h
763
764dnl# --------------------------------------------
765
766AC_CHECK_HEADER(utmpx.h,
767[AC_CACHE_CHECK([for struct utmpx], rxvt_cv_struct_utmpx,
768[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
769#include <utmpx.h>]], [[struct utmpx ut;]])],[rxvt_cv_struct_utmpx=yes],[rxvt_cv_struct_utmpx=no])])
770if test x$rxvt_cv_struct_utmpx = xyes; then
771 AC_DEFINE(HAVE_STRUCT_UTMPX, 1, Define if utmpx.h has struct utmpx)
772fi
773]
774
775AC_CACHE_CHECK(for host in utmpx struct, rxvt_cv_struct_utmpx_host,
776[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
777#include <utmpx.h>]], [[struct utmpx utx; utx.ut_host;]])],[rxvt_cv_struct_utmpx_host=yes],[rxvt_cv_struct_utmpx_host=no])])
778if test x$rxvt_cv_struct_utmpx_host = xyes; then
779 AC_DEFINE(HAVE_UTMPX_HOST, 1, Define if struct utmpx contains ut_host)
780fi
781
782AC_CACHE_CHECK(for session in utmpx struct, rxvt_cv_struct_utmpx_session,
783[AC_TRY_COMPILE([#include <sys/types.h>
784#include <utmpx.h>],
785[struct utmpx utx; utx.ut_session;],
786rxvt_cv_struct_utmpx_session=yes, rxvt_cv_struct_utmpx_session=no)])
787if test x$rxvt_cv_struct_utmpx_session = xyes; then
788 AC_DEFINE(HAVE_UTMPX_SESSION, 1, Define if struct utmpx contains ut_session)
789fi
790) dnl# AC_CHECK_HEADER(utmpx.h
791
792dnl# --------------------------------------------------------------------------
793dnl# check for struct lastlog
794AC_CACHE_CHECK(for struct lastlog, rxvt_cv_struct_lastlog,
795[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
796#include <utmp.h>
797#ifdef HAVE_LASTLOG_H
798#include <lastlog.h>
799#endif
800]], [[struct lastlog ll;]])],[rxvt_cv_struct_lastlog=yes],[rxvt_cv_struct_lastlog=no])])
801if test x$rxvt_cv_struct_lastlog = xyes; then
802 AC_DEFINE(HAVE_STRUCT_LASTLOG, 1, Define if utmp.h or lastlog.h has struct lastlog)
803fi
804
805dnl# check for struct lastlogx
806AC_CACHE_CHECK(for struct lastlogx, rxvt_cv_struct_lastlogx,
807[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
808#include <utmpx.h>
809#ifdef HAVE_LASTLOG_H
810#include <lastlog.h>
811#endif
812]], [[struct lastlogx ll;]])],[rxvt_cv_struct_lastlogx=yes],[rxvt_cv_struct_lastlogx=no])])
813if test x$rxvt_cv_struct_lastlogx = xyes; then
814 AC_DEFINE(HAVE_STRUCT_LASTLOGX, 1, Define if utmpx.h or lastlog.h has struct lastlogx)
815fi
816
817dnl# --------------------------------------------------------------------------
818dnl# FIND FILES
819dnl# --------------------------------------------------------------------------
820
821dnl# find utmp
822AC_CACHE_CHECK(where utmp is located, rxvt_cv_path_utmp,
823[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
824#include <sys/types.h>
825#include <utmp.h>
826#include <errno.h>
827main()
828{
829 char **u, *utmplist[] = {
830 "/var/run/utmp", "/var/adm/utmp", "/etc/utmp", "/usr/etc/utmp", "/usr/adm/utmp", NULL };
831 FILE *a, *f=fopen("conftestval", "w");
832 if (!f) exit(1);
833#ifdef UTMP_FILE
834 fprintf(f, "%s\n", UTMP_FILE);
835 exit(0);
836#endif
837#ifdef _PATH_UTMP
838 fprintf(f, "%s\n", _PATH_UTMP);
839 exit(0);
840#endif
841 for (u = utmplist; *u; u++) {
842 if ((a = fopen(*u, "r")) != NULL || errno == EACCES) {
843 fprintf(f, "%s\n", *u);
844 exit(0);
845 }
846 }
847 exit(0);
848}]])],[rxvt_cv_path_utmp=`cat conftestval`],[rxvt_cv_path_utmp=],[dnl
849 AC_MSG_WARN(Define RXVT_UTMP_FILE in config.h manually)])])
850if test x$rxvt_cv_path_utmp != x; then
851 AC_DEFINE_UNQUOTED(RXVT_UTMP_FILE, "$rxvt_cv_path_utmp", Define location of utmp)
852fi
853
854dnl# --------------------------------------------------------------------------
855
856dnl# find utmpx - if a utmp file exists at the same location and is more than
857dnl# a day newer, then dump the utmpx. People leave lots of junk around.
858AC_CACHE_CHECK(where utmpx is located, rxvt_cv_path_utmpx,
859[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
860#include <sys/types.h>
861#include <utmpx.h>
862#include <errno.h>
863#include <sys/stat.h>
864#ifdef HAVE_STRING_H
865#include <string.h>
866#endif
867main()
868{
869 char **u, *p, *utmplist[] = {
870#ifdef UTMPX_FILE
871 UTMPX_FILE,
872#endif
873#ifdef _PATH_UTMPX
874 _PATH_UTMPX,
875#endif
876 "/var/adm/utmpx", "/etc/utmpx", NULL };
877 FILE *a, *f=fopen("conftestval", "w");
878 struct stat statu, statux;
879 if (!f) exit(1);
880 for (u = utmplist; *u; u++) {
881 if ((a = fopen(*u, "r")) != NULL || errno == EACCES) {
882 if (stat(*u, &statux) < 0)
883 continue;
884 p = strdup(*u);
885 p[strlen(p) - 1] = '\0';
886 if (stat(p, &statu) >= 0
887 && (statu.st_mtime - statux.st_mtime > 86400))
888 continue;
889 fprintf(f, "%s\n", *u);
890 exit(0);
891 }
892 }
893 exit(0);
894}]])],[rxvt_cv_path_utmpx=`cat conftestval`],[rxvt_cv_path_utmpx=],[dnl
895 AC_MSG_WARN(Define RXVT_UTMPX_FILE in config.h manually)])])
896if test x$rxvt_cv_path_utmpx != x; then
897 AC_DEFINE_UNQUOTED(RXVT_UTMPX_FILE, "$rxvt_cv_path_utmpx", Define location of utmpx)
898fi
899
900dnl# --------------------------------------------------------------------------
901
902dnl# find wtmp
903AC_CACHE_CHECK(where wtmp is located, rxvt_cv_path_wtmp,
904[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
905#include <sys/types.h>
906#ifdef HAVE_UTMP_H
907#include <utmp.h>
908#endif
909#include <errno.h>
910main()
911{
912 char **w, *wtmplist[] = {
913 "/var/log/wtmp", "/var/adm/wtmp", "/etc/wtmp", "/usr/etc/wtmp", "/usr/adm/wtmp", NULL };
914 FILE *a, *f=fopen("conftestval", "w");
915 if (!f) exit(1);
916#ifdef WTMP_FILE
917 fprintf(f, "%s\n", WTMP_FILE);
918 exit(0);
919#endif
920#ifdef _PATH_WTMP
921 fprintf(f, "%s\n", _PATH_WTMP);
922 exit(0);
923#endif
924 for (w = wtmplist; *w; w++) {
925 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
926 fprintf(f, "%s\n", *w);
927 exit(0);
928 }
929 }
930 exit(0);
931}]])],[rxvt_cv_path_wtmp=`cat conftestval`],[rxvt_cv_path_wtmp=],[dnl
932 AC_MSG_WARN(Define RXVT_WTMP_FILE in config.h manually)])])
933if test x$rxvt_cv_path_wtmp != x; then
934 AC_DEFINE_UNQUOTED(RXVT_WTMP_FILE, "$rxvt_cv_path_wtmp", Define location of wtmp)
935fi
936dnl# --------------------------------------------------------------------------
937
938dnl# find wtmpx
939AC_CACHE_CHECK(where wtmpx is located, rxvt_cv_path_wtmpx,
940[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
941#ifdef HAVE_UTMPX_H
942#include <utmpx.h>
943#endif
944#include <errno.h>
945main()
946{
947 char **w, *wtmplist[] = {
948 "/var/log/wtmpx", "/var/adm/wtmpx", NULL };
949 FILE *a, *f=fopen("conftestval", "w");
950 if (!f) exit(1);
951#ifdef WTMPX_FILE
952 fprintf(f, "%s\n", WTMPX_FILE);
953 exit(0);
954#endif
955#ifdef _PATH_WTMPX
956 fprintf(f, "%s\n", _PATH_WTMPX);
957 exit(0);
958#endif
959 for (w = wtmplist; *w; w++) {
960 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
961 fprintf(f, "%s\n", *w);
962 exit(0);
963 }
964 }
965 exit(0);
966}]])],[rxvt_cv_path_wtmpx=`cat conftestval`],[rxvt_cv_path_wtmpx=],[dnl
967 AC_MSG_WARN(Define RXVT_WTMPX_FILE in config.h manually)])])
968if test x$rxvt_cv_path_wtmpx != x; then
969 AC_DEFINE_UNQUOTED(RXVT_WTMPX_FILE, "$rxvt_cv_path_wtmpx", Define location of wtmpx)
970fi
971dnl# --------------------------------------------------------------------------
972
973dnl# find lastlog
974AC_CACHE_CHECK(where lastlog is located, rxvt_cv_path_lastlog,
975[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
976#include <sys/types.h>
977#ifdef HAVE_UTMPX_H
978#include <utmpx.h>
979#elif defined(HAVE_UTMP_H)
980#include <utmp.h>
981#endif
982#ifdef HAVE_LASTLOG_H
983#include <lastlog.h>
984#endif
985#include <errno.h>
986main()
987{
988 char **w, *lastloglist[] = { "/var/log/lastlog", NULL };
989 FILE *a, *f=fopen("conftestval", "w");
990 if (!f) exit(1);
991#ifdef LASTLOG_FILE
992 fprintf(f, "%s\n", LASTLOG_FILE);
993 exit(0);
994#endif
995#ifdef _PATH_LASTLOG
996 fprintf(f, "%s\n", _PATH_LASTLOG);
997 exit(0);
998#endif
999 for (w = lastloglist; *w; w++) {
1000 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
1001 fprintf(f, "%s\n", *w);
1002 exit(0);
1003 }
1004 }
1005 exit(0);
1006}]])],[rxvt_cv_path_lastlog=`cat conftestval`],[rxvt_cv_path_lastlog=],[dnl
1007 AC_MSG_WARN(Define RXVT_LASTLOG_FILE in config.h manually)])])
1008if test x$rxvt_cv_path_lastlog != x; then
1009 AC_DEFINE_UNQUOTED(RXVT_LASTLOG_FILE, "$rxvt_cv_path_lastlog", Define location of lastlog)
1010 if test -d "$rxvt_cv_path_lastlog"; then
1011 AC_DEFINE(LASTLOG_IS_DIR, 1, Define if lastlog is provided via a directory)
1012 fi
1013fi
1014dnl# --------------------------------------------------------------------------
1015
1016dnl# find lastlogx
1017AC_CACHE_CHECK(where lastlogx is located, rxvt_cv_path_lastlogx,
1018[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
1019#ifdef HAVE_UTMPX_H
1020#include <utmpx.h>
1021#endif
1022#include <errno.h>
1023main()
1024{
1025 char **w, *wtmplist[] = { "/var/log/lastlogx", "/var/adm/lastlogx", NULL };
1026 FILE *a, *f=fopen("conftestval", "w");
1027 if (!f) exit(1);
1028#ifdef LASTLOGX_FILE
1029 fprintf(f, "%s\n", LASTLOGX_FILE);
1030 exit(0);
1031#endif
1032#ifdef _PATH_LASTLOGX
1033 fprintf(f, "%s\n", _PATH_LASTLOGX);
1034 exit(0);
1035#endif
1036 for (w = wtmplist; *w; w++) {
1037 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
1038 fprintf(f, "%s\n", *w);
1039 exit(0);
1040 }
1041 }
1042 exit(0);
1043}]])],[rxvt_cv_path_lastlogx=`cat conftestval`],[rxvt_cv_path_lastlogx=],[dnl
1044 AC_MSG_WARN(Define RXVT_LASTLOGX_FILE in config.h manually)])])
1045if test x$rxvt_cv_path_lastlogx != x; then
1046 AC_DEFINE_UNQUOTED(RXVT_LASTLOGX_FILE, "$rxvt_cv_path_lastlogx", Define location of lastlogx)
1047fi
1048
1049dnl# --------------------------------------------------------------------------
1050
1051dnl# find ttys/ttytab
1052AC_CACHE_CHECK(where ttys/ttytab is located, rxvt_cv_path_ttytab,
1053[for ttys_file in dnl
1054 /etc/ttys /etc/ttytab;
1055do
1056 if test -f "$ttys_file" ; then
1057 rxvt_cv_path_ttytab=$ttys_file
1058 break
1059 fi
1060done
1061])
1062if test x$rxvt_cv_path_ttytab != x; then
1063 AC_DEFINE_UNQUOTED(TTYTAB_FILENAME, "$rxvt_cv_path_ttytab", Define location of ttys/ttytab)
1064fi
1065
1066dnl# --------------------------------------------------------------------------
1067dnl# --------------------------------------------------------------------------
1068
1069dnl# this is a really hack test for some basic Xlocale stuff
1070ac_save_LIBS=$LIBS
1071ac_save_CFLAGS=$CFLAGS
1072CFLAGS="$CFLAGS $X_CFLAGS"
1073LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
1074if test x$rxvt_cv_rpath = xyes -o x$rxvt_cv_R = xyes; then
1075 LIBS=`echo $LIBS | sed "$R_TRANSLATE"`
1076fi
1077AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
1078[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <X11/Xlib.h>
1079main() {
1080char *p;
1081if ((p = XSetLocaleModifiers("@im=none")) != NULL && *p)
1082exit (XSupportsLocale() ? 0 : 1);
1083else
1084exit (1);}]])],[dnl
1085 rxvt_cv_func_xlocale=yes],[rxvt_cv_func_xlocale=no],[dnl
1086 AC_MSG_WARN(Define NO_XLOCALE in config.h manually)])])
1087if test x$rxvt_cv_func_xlocale = xyes; then
1088 AC_DEFINE(HAVE_XLOCALE, 1, Define if Xlocale support works)
1089fi 598fi
1090 599
1091AC_CACHE_CHECK(for working X setlocale, rxvt_cv_func_xsetlocale, 600AC_CACHE_CHECK(for working X setlocale, rxvt_cv_func_xsetlocale,
1092[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define X_LOCALE 1 601[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define X_LOCALE 1
1093#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])]) 602#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])])
1094if test x$rxvt_cv_func_xsetlocale = xyes; then 603if test x$rxvt_cv_func_xsetlocale = xyes; then
1095 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works) 604 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works)
1096fi 605fi
1097LIBS=$ac_save_LIBS 606LIBS=$save_LIBS
1098CFLAGS=$ac_save_CFLAGS 607CXXFLAGS=$save_CXXFLAGS
1099
1100AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale,
1101[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <clocale>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_setlocale=yes],[rxvt_cv_func_setlocale=no])])
1102if test x$rxvt_cv_func_setlocale = xyes; then
1103 AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works)
1104fi
1105 608
1106AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo, 609AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo,
1107[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])]) 610[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])])
1108if test x$rxvt_cv_func_nl_langinfo = xyes; then 611if test x$rxvt_cv_func_nl_langinfo = xyes; then
1109 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 612 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
1110fi 613fi
1111 614
1112AC_CACHE_CHECK(for unix-compliant filehandle passing ability, rxvt_can_pass_fds,
1113[AC_TRY_LINK([
1114#include <sys/types.h>
1115#include <sys/socket.h>
1116],[
1117{
1118 msghdr msg;
1119 iovec iov;
1120 char buf [100];
1121 char data = 0;
1122
1123 iov.iov_base = &data;
1124 iov.iov_len = 1;
1125
1126 msg.msg_iov = &iov;
1127 msg.msg_iovlen = 1;
1128 msg.msg_control = buf;
1129 msg.msg_controllen = sizeof buf;
1130
1131 cmsghdr *cmsg = CMSG_FIRSTHDR (&msg);
1132 cmsg->cmsg_level = SOL_SOCKET;
1133 cmsg->cmsg_type = SCM_RIGHTS;
1134 cmsg->cmsg_len = 100;
1135
1136 *(int *)CMSG_DATA (cmsg) = 5;
1137
1138 return sendmsg (3, &msg, 0);
1139}
1140],[rxvt_can_pass_fds=yes],[rxvt_can_pass_fds=no])])
1141if test x$rxvt_can_pass_fds = xyes; then
1142 AC_DEFINE(HAVE_UNIX_FDPASS, 1, Define if sys/socket.h defines the necessary macros/functions for file handle passing)
1143fi
1144
1145AC_CACHE_CHECK(for broken XIM callback, rxvt_broken_ximcb,
1146[AC_COMPILE_IFELSE([
1147#include <X11/Xlib.h>
1148
1149void im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3);
1150
1151void f() {
1152 XIMCallback cb;
1153 cb.callback = im_destroy_cb;
1154}
1155],rxvt_broken_ximcb=yes,rxvt_broken_ximcb=no)])
1156
1157if test x$rxvt_broken_ximcb = xyes; then
1158 AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.)
1159fi
1160
1161if test x$ac_cv_func_getpt = xno -a x$ac_cv_func_posix_openpt = xno; then
1162 AC_CHECK_FUNC(openpty, [], [AC_CHECK_LIB(util, openpty, [LIBS="$LIBS -lutil"])])
1163fi
1164
1165dnl# if we don't guess right then it's up to the user
1166AC_CACHE_CHECK(for pty/tty type, rxvt_cv_ptys,
1167[if test x$ac_cv_func_openpty = xyes -o x$ac_cv_lib_util_openpty = xyes; then
1168 rxvt_cv_ptys=OPENPTY
1169 else if test x$ac_cv_func_getpt = xyes; then
1170 rxvt_cv_ptys=GLIBC
1171 else if test x$ac_cv_func_posix_openpt = xyes; then
1172 rxvt_cv_ptys=POSIX
1173 else if test x$ac_cv_func__getpty = xyes; then
1174 rxvt_cv_ptys=SGI4
1175 else if test -c /dev/ttyp20; then
1176 rxvt_cv_ptys=SCO
1177 else if test -c /dev/ptym/clone; then
1178 rxvt_cv_ptys=HPUX
1179 else if test -c /dev/ptc -a -c /dev/pts; then
1180 rxvt_cv_ptys=PTC
1181 else if test -c /dev/ptc -a -d /dev/pts; then
1182 rxvt_cv_ptys=PTC
1183 else if test -c /dev/ptmx -a -c /dev/pts/0; then
1184 rxvt_cv_ptys=STREAMS
1185 else if test x$ac_cv_func_grantpt = xyes && test x$ac_cv_func_unlockpt = xyes; then
1186dnl# catch CYGWIN
1187 rxvt_cv_ptys=STREAMS
1188 else
1189 rxvt_cv_ptys=BSD
1190fi
1191fi
1192fi
1193fi
1194fi
1195fi
1196fi
1197fi
1198fi
1199fi
1200])
1201
1202if test x$rxvt_cv_ptys = xGLIBC; then
1203 AC_DEFINE(PTYS_ARE_GETPT, 1, Define for this pty type)
1204fi
1205if test x$rxvt_cv_ptys = xPOSIX; then
1206 AC_DEFINE(PTYS_ARE_POSIX, 1, Define for this pty type)
1207fi
1208if test x$rxvt_cv_ptys = xOPENPTY; then
1209 AC_DEFINE(PTYS_ARE_OPENPTY, 1, Define for this pty type)
1210fi
1211if test x$rxvt_cv_ptys = xSCO; then
1212 AC_DEFINE(PTYS_ARE_NUMERIC, 1, Define for this pty type)
1213fi
1214if test x$rxvt_cv_ptys = xSTREAMS; then
1215 AC_DEFINE(PTYS_ARE_PTMX, 1, Define for this pty type)
1216fi
1217if test x$rxvt_cv_ptys = xPTC; then
1218 AC_DEFINE(PTYS_ARE_PTC, 1, Define for this pty type)
1219fi
1220if test x$rxvt_cv_ptys = xSGI4; then
1221 AC_DEFINE(PTYS_ARE__GETPTY, 1, Define for this pty type)
1222fi
1223if test x$rxvt_cv_ptys = xHPUX; then
1224 AC_DEFINE(PTYS_ARE_CLONE, 1, Define for this pty type)
1225fi
1226if test x$rxvt_cv_ptys = xBSD -o x$rxvt_cv_ptys = xHPUX -o x$rxvt_cv_ptys = xPOSIX; then
1227 AC_DEFINE(PTYS_ARE_SEARCHED, 1, Define for this pty type)
1228fi
1229
1230
1231AS_MESSAGE(checking for pty ranges...)
1232ptys=`echo /dev/pty??`
1233pch1=`echo $ptys | tr ' ' '\012' | sed -e 's/^.*\(.\).$/\1/g' | sort -u | tr -d '\012'`
1234pch2=`echo $ptys | tr ' ' '\012' | sed -e 's/^.*\(.\)$/\1/g' | sort -u | tr -d '\012'`
1235if test x$pch1 != x; then
1236 AC_DEFINE_UNQUOTED(PTYCHAR1, "$pch1", Define for first char in devptyXX)
1237fi
1238if test x$pch2 != x; then
1239 AC_DEFINE_UNQUOTED(PTYCHAR2, "$pch2", Define for second char in devptyXX)
1240fi
1241
1242dnl# -------------------------------------------------------------------------- 615dnl# --------------------------------------------------------------------------
1243dnl# now add and remove other stuff 616dnl# now add and remove other stuff
1244dnl# -------------------------------------------------------------------------- 617dnl# --------------------------------------------------------------------------
1245if test x$support_xft = xyes; then 618support_image=no
1246 LIBS="$LIBS `pkg-config xft --libs`" 619if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then
1247 CPPFLAGS="$CPPFLAGS `pkg-config xft --cflags`" 620 support_image=yes
621fi
622if test x$support_xft = xyes || test x$support_image = xyes; then
623 rxvt_have_xrender=no
624 RXVT_CHECK_MODULES([XRENDER], [xrender], [
625 X_LIBS="$XRENDER_LIBS $X_LIBS"
626 CPPFLAGS="$CPPFLAGS $XRENDER_CFLAGS"
627 rxvt_have_xrender=yes
1248 628
629 save_LIBS="$LIBS"
630 LIBS="$LIBS $X_LIBS"
631 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no])
632 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no])
633 LIBS="$save_LIBS"
634 ], [:])
635fi
636
637if test x$support_xft = xyes && test x$rxvt_have_xrender = xyes; then
638 RXVT_CHECK_MODULES([XFT], [fontconfig xft], [
639 X_LIBS="$XFT_LIBS $X_LIBS"
640 CPPFLAGS="$CPPFLAGS $XFT_CFLAGS"
641 ], [
642 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
643 if test $XFT_CONFIG != no; then
644 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
645 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
646 fi
647 ])
648
649 save_LIBS="$LIBS"
650 LIBS="$LIBS $X_LIBS"
1249 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no]) 651 AC_CHECK_HEADERS(X11/Xft/Xft.h fontconfig/fontconfig.h,,[support_xft=no])
1250 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no]) 652 AC_CHECK_FUNCS(XftDrawString32 FcPatternGet,,[support_xft=no])
653 LIBS="$save_LIBS"
1251 654
1252 if test x$support_xft = xyes; then 655 if test x$support_xft = xyes; then
1253 AC_DEFINE(XFT, 1, Define to enable xft support) 656 AC_DEFINE(XFT, 1, Define to enable xft support)
1254 fi 657 fi
1255fi 658fi
659
660if test x$support_image = xyes && test x$rxvt_have_xrender = xyes; then
661 AC_MSG_CHECKING(for Render >= 0.11)
662 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
663#include <X11/extensions/Xrender.h>
664#if RENDER_MAJOR == 0 && RENDER_MINOR <= 10
665error
666#endif
667]])],[],[support_image=no])
668 if test x$support_image = xyes; then
669 AC_MSG_RESULT(ok)
670 LIBS="$LIBS -lm"
671 AC_DEFINE(XRENDER, 1, Define to enable xrender support)
672
673 if test x$support_inheritpixmap = xyes; then
674 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background)
675 fi
676 else
677 AC_MSG_RESULT(no)
678 fi
679fi
680
1256if test x$support_styles = xyes; then 681if test x$support_styles = xyes; then
1257 AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support) 682 AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support)
1258fi 683fi
1259if test x$support_iso14755 = xyes; then 684if test x$support_iso14755 = xyes; then
1260 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support) 685 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support)
1263 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences) 688 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
1264fi 689fi
1265if test x$support_fading = xyes; then 690if test x$support_fading = xyes; then
1266 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost) 691 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost)
1267fi 692fi
1268if test x$support_tinting = xyes; then
1269 AC_DEFINE(TINTING, 1, Define if you want your background to be tinted)
1270fi
1271if test x$support_inheritpixmap = xyes; then
1272 AC_DEFINE(TRANSPARENT, 1, Define if you want your background to use the parent window background)
1273fi
1274if test x$support_keepscrolling = xno; then 693if test x$support_keepscrolling = xno; then
1275 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed) 694 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
1276fi 695fi
1277if test x$support_selectionscrolling = xyes; then 696if test x$support_selectionscrolling = xyes; then
1278 AC_DEFINE(SELECTION_SCROLLING, 1, Define to allow scrolling when the selection moves to the top or bottom of the screen) 697 AC_DEFINE(SELECTION_SCROLLING, 1, Define to allow scrolling when the selection moves to the top or bottom of the screen)
1279fi 698fi
1280if test x$support_frills = xyes; then 699if test x$support_frills = xyes; then
1281 AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features) 700 AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features)
1282fi 701fi
1283if test x$support_24bit = xyes; then
1284 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)
1285fi
1286if test x$support_mousewheel = xyes; then 702if test x$support_mousewheel = xyes; then
1287 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll) 703 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll)
1288fi 704fi
1289if test x$support_mouseslipwheel = xyes; then 705if test x$support_mouseslipwheel = xyes; then
1290 AC_DEFINE(MOUSE_SLIP_WHEELING, 1, Define to have CTRL cause wheel events to accelerate scrolling. Release CTRL to halt scrolling) 706 AC_DEFINE(MOUSE_SLIP_WHEELING, 1, Define to have CTRL cause wheel events to accelerate scrolling. Release CTRL to halt scrolling)
1291fi 707fi
1292if test x$support_utmp = xyes; then 708
1293 AC_DEFINE(UTMP_SUPPORT, 1, Define if you want to have utmp/utmpx support) 709scrolltypes=plain
1294fi 710AC_DEFINE(PLAIN_SCROLLBAR, 1, Support plain style scrollbars)
1295if test x$support_wtmp = xyes; then 711
1296 AC_DEFINE(WTMP_SUPPORT, 1, Define if you want to have wtmp support when utmp/utmpx is enabled)
1297fi
1298if test x$support_lastlog = xyes; then
1299 AC_DEFINE(LASTLOG_SUPPORT, 1, Define if you want to have lastlog support when utmp/utmpx is enabled)
1300fi
1301if test x$support_xim = xyes -o x$multichar_set = xyes; then
1302 if test x$rxvt_cv_func_xlocale = xyes; then
1303 AC_DEFINE(USE_XIM, 1, Define if you want to have XIM (X Input Method) protocol support - required for multibyte characters input)
1304 fi
1305fi
1306if test x$support_xpm = xyes; then
1307 AC_DEFINE(XPM_BACKGROUND, 1, Define if you want to have sexy-looking background pixmaps. Needs libXpm)
1308fi
1309if test x$support_scroll_rxvt = xyes; then 712if test x$support_scroll_rxvt = xyes; then
1310 AC_DEFINE(RXVT_SCROLLBAR, 1, Support Rxvt original style scrollbars) 713 AC_DEFINE(RXVT_SCROLLBAR, 1, Support Rxvt original style scrollbars)
1311 scrolltypes="rxvt" 714 scrolltypes="$scrolltypes rxvt"
1312fi 715fi
1313if test x$support_scroll_next = xyes; then 716if test x$support_scroll_next = xyes; then
1314 AC_DEFINE(NEXT_SCROLLBAR, 1, Support NeXT style scrollbars) 717 AC_DEFINE(NEXT_SCROLLBAR, 1, Support NeXT style scrollbars)
1315 scrolltypes="$scrolltypes next" 718 scrolltypes="$scrolltypes next"
1316fi 719fi
1317if test x$support_scroll_xterm = xyes; then 720if test x$support_scroll_xterm = xyes; then
1318 AC_DEFINE(XTERM_SCROLLBAR, 1, Support Xterm style scrollbars) 721 AC_DEFINE(XTERM_SCROLLBAR, 1, Support Xterm style scrollbars)
1319 scrolltypes="$scrolltypes xterm" 722 scrolltypes="$scrolltypes xterm"
1320fi 723fi
1321if test x$support_scroll_plain = xyes; then
1322 AC_DEFINE(PLAIN_SCROLLBAR, 1, Support plain style scrollbars)
1323 scrolltypes="$scrolltypes plain"
1324fi
1325if test x$support_pointer_blank = xyes; then 724if test x$support_pointer_blank = xyes; then
1326 AC_DEFINE(POINTER_BLANK, 1, Define if you want hide the pointer while typing) 725 AC_DEFINE(POINTER_BLANK, 1, Define if you want to hide the pointer while typing)
1327fi 726fi
1328if test x$support_text_blink = xyes; then 727if test x$support_text_blink = xyes; then
1329 AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support) 728 AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support)
1330fi 729fi
1331if test x$support_unicode3 = xyes; then 730if test x$support_unicode3 = xyes; then
1349 esac 748 esac
1350done 749done
1351 750
1352IF_PERL=\# 751IF_PERL=\#
1353if test x$support_perl = xyes; then 752if test x$support_perl = xyes; then
1354 AC_PATH_PROG(PERL, perl5) 753 AC_PATH_PROG(PERL, perl5, perl)
1355 AC_PATH_PROG(PERL, perl) 754
755 RXVT_CHECK_MODULES([XEXT], [xext], [:], [
756 AC_MSG_ERROR([unable to find xext, required for perl])
757 ])
758
759 X_LIBS="$XEXT_LIBS $X_LIBS"
760 CPPFLAGS="$CPPFLAGS $XEXT_CFLAGS"
1356 761
1357 AC_MSG_CHECKING(for $PERL suitability) 762 AC_MSG_CHECKING(for $PERL suitability)
1358 if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then 763 if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then
1359 764
1360 save_CXXFLAGS="$CXXFLAGS" 765 save_CXXFLAGS="$CXXFLAGS"
1361 save_LIBS="$LIBS" 766 save_LIBS="$LIBS"
1362 CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts`" 767 CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts`"
1363 LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`" 768 LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`"
1364 AC_TRY_LINK([ 769 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
1365#include <EXTERN.h> 770#include <EXTERN.h>
1366#include <perl.h> 771#include <perl.h>
1367#include <XSUB.h> 772#include <XSUB.h>
1368],[ 773]], [[
1369 PerlInterpreter *perl = perl_alloc (); 774 PerlInterpreter *perl = perl_alloc ();
1370],[rxvt_perl_link=yes],[rxvt_perl_link=no]) 775]])],[rxvt_perl_link=yes],[rxvt_perl_link=no])
1371 CXXFLAGS="$save_CXXFLAGS" 776 CXXFLAGS="$save_CXXFLAGS"
1372 LIBS="$save_LIBS" 777 LIBS="$save_LIBS"
1373 778
1374 if test x$rxvt_perl_link = xyes; then 779 if test x$rxvt_perl_link = xyes; then
1375 AC_MSG_RESULT(ok) 780 AC_MSG_RESULT(ok)
1378 PERL_O=rxvtperl.o 783 PERL_O=rxvtperl.o
1379 PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`" 784 PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`"
1380 PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`" 785 PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`"
1381 PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`" 786 PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`"
1382 else 787 else
1383 support_perl=no
1384 AC_MSG_RESULT([no, unable to link]) 788 AC_MSG_ERROR([no, unable to link])
1385 fi 789 fi
1386 else 790 else
1387 AC_MSG_ERROR(no working perl found, or perl not version >= 5.8) 791 AC_MSG_ERROR([no working perl found, or perl not version >= 5.8])
1388 support_perl=no
1389 fi 792 fi
1390fi 793fi
1391AC_SUBST(PERLLIB) 794AC_SUBST(PERLLIB)
1392AC_SUBST(PERLFLAGS) 795AC_SUBST(PERLFLAGS)
1393AC_SUBST(PERLPRIVLIBEXP) 796AC_SUBST(PERLPRIVLIBEXP)
1394AC_SUBST(PERL) 797AC_SUBST(PERL)
1395AC_SUBST(IF_PERL) 798AC_SUBST(IF_PERL)
1396AC_SUBST(PERL_O) 799AC_SUBST(PERL_O)
1397 800
1398if test x$support_perl = xyes; then
1399 support_frills=yes
1400fi
1401
1402dnl> AC_CHECK_FUNCS(gettimeofday putenv select socket)
1403
1404CFLAGS=${CFLAGS--O}
1405LDFLAGS=${LDFLAGS--O}
1406
1407CPPFLAGS="$CPPFLAGS"
1408AC_SUBST(DEBUG)
1409AC_SUBST(DINCLUDE)
1410AC_SUBST(CFLAGS)
1411AC_SUBST(CPPFLAGS)
1412AC_SUBST(LDFLAGS)
1413AC_SUBST(X_CFLAGS)
1414
1415dnl# Attack the libs
1416if test x$rxvt_cv_rpath = xyes -o x$rxvt_cv_R = xyes; then
1417 DLIB=`echo $DLIB | sed "$R_TRANSLATE"`
1418 LIBS=`echo $LIBS | sed "$R_TRANSLATE"`
1419 X_LIBS=`echo $X_LIBS | sed "$R_TRANSLATE"`
1420 X_EXTRA_LIBS=`echo $X_EXTRA_LIBS | sed "$R_TRANSLATE"`
1421 XPM_LIBS=`echo $XPM_LIBS | sed "$R_TRANSLATE"`
1422fi
1423AC_SUBST(DLIB)
1424AC_SUBST(LIBS)
1425AC_SUBST(X_LIBS)
1426AC_SUBST(X_EXTRA_LIBS)
1427
1428AC_ARG_PROGRAM
1429
1430dnl# test for "sun" or "__sun__" before include sys_ioctl
1431
1432dnl# revert HAVE_BLAH_H into a "#include <blah.h>"
1433AC_DEFUN(RXVT_DEFINE_TO_INCLUDE, dnl
1434[if test "$$3" = "$4" -o "$$5" = "$6"; then
1435 $1="#include <$2>"
1436else
1437 $1="/* #include <$2> */"
1438fi dnl
1439AC_SUBST($1)])
1440
1441RXVT_DEFINE_TO_INCLUDE(include_stdint_h, stdint.h, ac_cv_header_stdint_h, yes, notset, dontmatch)
1442RXVT_DEFINE_TO_INCLUDE(include_stdarg_h, cstdarg, ac_cv_header_stdarg_h, yes, notset, dontmatch)
1443RXVT_DEFINE_TO_INCLUDE(include_stdlib_h, cstdlib, ac_cv_header_stdlib_h, yes, notset, dontmatch)
1444RXVT_DEFINE_TO_INCLUDE(include_unistd_h, unistd.h, ac_cv_header_unistd_h, yes, notset, dontmatch)
1445RXVT_DEFINE_TO_INCLUDE(include_string_h, cstring, ac_cv_header_string_h, yes, notset, dontmatch)
1446RXVT_DEFINE_TO_INCLUDE(include_fcntl_h, fcntl.h, ac_cv_header_fcntl_h, yes, notset, dontmatch)
1447RXVT_DEFINE_TO_INCLUDE(include_util_h, util.h, ac_cv_header_util_h, yes, notset, dontmatch)
1448RXVT_DEFINE_TO_INCLUDE(include_assert_h, assert.h, ac_cv_header_assert_h, yes, notset, dontmatch)
1449RXVT_DEFINE_TO_INCLUDE(include_sys_ioctl_h, sys/ioctl.h, rxvt_cv_header_sysioctl, yes, notset, dontmatch)
1450RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch)
1451RXVT_DEFINE_TO_INCLUDE(include_sys_strredir_h, sys/strredir.h, ac_cv_header_sys_strredir_h, yes, notset, dontmatch)
1452RXVT_DEFINE_TO_INCLUDE(include_sys_time_h, sys/time.h, ac_cv_header_sys_time_h, yes, notset, dontmatch)
1453RXVT_DEFINE_TO_INCLUDE(include_time_h, time.h, ac_cv_header_sys_time_h, no, ac_cv_header_time, yes)
1454 801
1455AC_CONFIG_FILES([Makefile \ 802AC_CONFIG_FILES([Makefile \
1456doc/Makefile \ 803doc/Makefile \
1457src/Makefile \ 804src/Makefile \
1458src/rxvtlib.h \
1459]) 805])
1460AC_OUTPUT 806AC_OUTPUT
1461 807
1462echo "Configuration: 808echo "Configuration:
1463 809
1464 Rxvt version: $VERSION : $DATE 810 Rxvt version: $VERSION : $DATE
1465 Source code location: $srcdir 811 Source code location: $srcdir
1466 Install path: ${prefix}/bin 812 Install path: ${prefix}/bin
1467 Compiler: $CXX 813 Compiler: $CXX
1468 Compiler flags: $CFLAGS 814 Compiler flags: $CXXFLAGS
1469 Linker: $LINKER" 815 Linker: $LINKER"
1470 816
1471if test "$MALLOC_TYPE" = S; then
1472 echo " malloc support: system default"
1473fi
1474if test "$MALLOC_TYPE" = G; then
1475 echo " malloc support: Gray Watson's dmalloc"
1476fi
1477if test "$MALLOC_TYPE" = D; then
1478 echo " malloc support: Doug Lea's malloc"
1479fi
1480
1481if test x$support_xpm = xyes; then
1482 echo " Xpm library: $XPM_LIBS"
1483fi
1484
1485echo "
1486The following are set in config.h
1487"
1488echo " pty/tty type: "$rxvt_cv_ptys
1489if test x$support_utmp != xyes; then
1490 echo " utmp support: disabled"
1491 echo
1492else
1493 echo " utmp support: enabled
1494 utmp file: $rxvt_cv_path_utmp
1495 utmpx file: $rxvt_cv_path_utmpx
1496 wtmp file: $rxvt_cv_path_wtmp
1497 wtmpx file: $rxvt_cv_path_wtmpx
1498 lastlog file: $rxvt_cv_path_lastlog
1499 ttys/ttytab file: $rxvt_cv_path_ttytab
1500 embedded perl: $support_perl"
1501 echo
1502fi
1503if test x$term != x; then 817if test x$term != x; then
1504 echo " set TERM to: $term" 818 echo " set TERM to: $term"
1505fi 819fi
1506if test x$terminfo != x; then 820if test x$terminfo != x; then
1507 echo " set TERMINFO to: $terminfo" 821 echo " set TERMINFO to: $terminfo"
1510echo " resource class: $RESCLASS" 824echo " resource class: $RESCLASS"
1511if test x$RESFALLBACK != x; then 825if test x$RESFALLBACK != x; then
1512 echo " resource class fallback: $RESFALLBACK" 826 echo " resource class fallback: $RESFALLBACK"
1513fi 827fi
1514echo 828echo
1515if test x$rxvt_cv_ptys = xUNKNOWN; then 829echo " embedded perl: $support_perl"
1516 echo ".----------------------------------------------------------------." 830echo " image library: $image_lib"
1517 echo ". WARNING: could not determine pty/tty type. Do not build until ." 831echo
1518 echo ". the appropriate PTYS_ARE_* is defined in config.h ."
1519 echo ".----------------------------------------------------------------."
1520fi
1521if test x$support_xpm = xneedsmanualspecification; then
1522 echo ".----------------------------------------------------------------."
1523 echo ". WARNING: --enable-xpm-background was specified however the ."
1524 echo ". XPM includes files and libraries could not be found. ."
1525 echo ". XPM backgrounds are now being DISABLED! If you want ."
1526 echo ". to use them you should rerun configure with the ."
1527 echo ". appropriate --with-xpm-includes=/path/to/xpm/includes ."
1528 echo ". and --with-xpm-library=/path/to/xpm/library lines. ."
1529 echo ".----------------------------------------------------------------."
1530fi
1531if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then 832if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then
1532 echo ".----------------------------------------------------------------." 833 echo ".----------------------------------------------------------------."
1533 echo ". WARNING: --enable-xim was specified however the locale support ." 834 echo ". WARNING: --enable-xim was specified however the locale support ."
1534 echo ". functions could not be found. ." 835 echo ". functions could not be found. ."
1535 echo ". XIM is now being DISABLED! ." 836 echo ". XIM is now being DISABLED! ."
1536 echo ".----------------------------------------------------------------." 837 echo ".----------------------------------------------------------------."
1537fi 838fi
1538 839
1539echo " *** Optionally check src/feature.h for further options ***" 840echo "*** Optionally check src/feature.h for further, rarely used options ***"
1540echo 841echo
1541 842
1542echo ".----------------------------------------------------------------."
1543echo ". NOTE: some features are disabled by default, try ."
1544echo ". configure --help to get an idea of the optional features, ."
1545echo ". or read ./README.configure ."
1546echo ". ."
1547echo ". The script ./reconf gives a reasonable baseline, try it if ."
1548echo ". you do not want to read documentation and still want some ."
1549echo ". useful features. ."
1550echo ".----------------------------------------------------------------."
1551echo
1552

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines