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.15 by pcg, Sun Feb 29 22:32:31 2004 UTC vs.
Revision 1.30 by root, Fri Jul 30 16:04:05 2004 UTC

28AC_PROG_CXX 28AC_PROG_CXX
29AC_PROG_CPP 29AC_PROG_CPP
30AC_PROG_INSTALL 30AC_PROG_INSTALL
31AC_PROG_AWK 31AC_PROG_AWK
32 32
33AC_LANG(C)
34
35LINKER="$CXX"
36if test x$GCC = xyes && test x$GXX = xyes; then
37 AC_CHECK_LIB(supc++, main, [
38 LINKER="$CC"
39 LIBS="$LIBS -lsupc++"
40 ])
41fi
42AC_SUBST(LINKER,[$LINKER])
43
44CPPFLAGS="-D_GNU_SOURCE -D_XOPEN_SOURCE"
45
46dnl if test x$GXX = xyes; then
47dnl CXXFLAGS="$CXXFLAGS" dnl I once had -fno-exceptions, but I am using them now...
48dnl fi
49
50AC_LANG(C++)
51
33dnl# system hacks 52dnl# system hacks
34AC_AIX 53AC_AIX
35AC_ISC_POSIX 54AC_ISC_POSIX
55
56dnl# FreeBSD needs to link libxpg4
57AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])
58
59dnl solaris needs to link libnsl and socket
60AC_CHECK_LIB(nsl, gethostbyname, [LIBS="$LIBS -lnsl"])
61AC_CHECK_LIB(socket, socket, [LIBS="$LIBS -lsocket"])
36 62
37AC_ENABLE_SHARED(no)dnl# libtool 63AC_ENABLE_SHARED(no)dnl# libtool
38AC_ENABLE_STATIC(yes)dnl# libtool 64AC_ENABLE_STATIC(yes)dnl# libtool
39AC_PROG_LIBTOOL()dnl# libtool 65AC_PROG_LIBTOOL()dnl# libtool
40 66
41MALLOC_TYPE=S 67MALLOC_TYPE=S
42support_addstrings=no 68support_addstrings=no
43support_frills=no 69support_frills=no
44support_linespace=no 70support_linespace=no
45support_inheritpixmap=no 71support_inheritpixmap=no
72support_tinting=no
73support_fading=no
46support_keepscrolling=no 74support_keepscrolling=no
47support_selectionscrolling=no 75support_selectionscrolling=no
48support_menubar=no 76support_menubar=no
49support_mousewheel=no 77support_mousewheel=no
50support_mouseslipwheel=no 78support_mouseslipwheel=no
51support_oldselection=no
52support_utmp=no 79support_utmp=no
53support_wtmp=no 80support_wtmp=no
54support_lastlog=no 81support_lastlog=no
55support_cursor_blink=no 82support_cursor_blink=no
56support_text_blink=no 83support_text_blink=no
61support_scroll_plain=no 88support_scroll_plain=no
62support_xim=no 89support_xim=no
63support_xpm=no 90support_xpm=no
64support_xft=no 91support_xft=no
65support_unicode3=no 92support_unicode3=no
93support_combining=no
94support_8bitctrls=no
66codesets= 95codesets=
67 96
68dnl# -------------------------------------------------------------------------- 97dnl# --------------------------------------------------------------------------
69dnl# CHECKING COMMAND LINE OPTIONS 98dnl# CHECKING COMMAND LINE OPTIONS
70dnl# -------------------------------------------------------------------------- 99dnl# --------------------------------------------------------------------------
82 [if test x$enableval = xyes; then 111 [if test x$enableval = xyes; then
83 support_24bit=yes 112 support_24bit=yes
84 support_frills=yes 113 support_frills=yes
85 support_linespace=yes 114 support_linespace=yes
86 support_inheritpixmap=yes 115 support_inheritpixmap=yes
116 support_tinting=yes
117 support_fading=yes
87 support_keepscrolling=yes 118 support_keepscrolling=yes
88 support_selectionscrolling=yes 119 support_selectionscrolling=yes
89 support_lastlog=yes 120 support_lastlog=yes
90 support_menubar=yes 121 support_menubar=yes
91 support_mousewheel=yes 122 support_mousewheel=yes
92 support_mouseslipwheel=yes 123 support_mouseslipwheel=yes
93 support_oldselection=yes
94 support_cursor_blink=yes 124 support_cursor_blink=yes
95 support_text_blink=yes 125 support_text_blink=yes
96 support_pointer_blank=yes 126 support_pointer_blank=yes
97 support_scroll_rxvt=yes 127 support_scroll_rxvt=yes
98 support_scroll_next=yes 128 support_scroll_next=yes
102 support_wtmp=yes 132 support_wtmp=yes
103 support_xim=yes 133 support_xim=yes
104 support_xpm=yes 134 support_xpm=yes
105 support_xft=yes 135 support_xft=yes
106 support_unicode3=yes 136 support_unicode3=yes
137 support_combining=yes
138 #support_8bitctrls=yes
107 codesets=all 139 codesets=all
108 fi]) 140 fi])
109 141
110AC_ARG_ENABLE(unicode3, 142AC_ARG_ENABLE(unicode3,
111 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters], 143 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters],
112 [if test x$enableval = xyes -o x$enableval = xno; then 144 [if test x$enableval = xyes -o x$enableval = xno; then
113 support_unicode3=yes 145 support_unicode3=yes
114 fi]) 146 fi])
115 147
148AC_ARG_ENABLE(combining,
149 [ --enable-combining enable composition of base and combining characters],
150 [if test x$enableval = xyes -o x$enableval = xno; then
151 support_combining=yes
152 fi])
153
116AC_ARG_ENABLE(xft, 154AC_ARG_ENABLE(xft,
117 [ --enable-xft enable xft support on systems that have it], 155 [ --enable-xft enable xft support on systems that have it],
118 [if test x$enableval = xyes -o x$enableval = xno; then 156 [if test x$enableval = xyes -o x$enableval = xno; then
119 support_xft=yes 157 support_xft=yes
120 fi]) 158 fi])
121
122AC_ARG_WITH(codesets,
123 [ --with-codesets=NAME,... compile in additional codesets (jp,jp_ext,kr,cn,cn_ext,vn,all)],
124 [codesets="$withval"])
125 159
126AC_ARG_ENABLE(utmp, 160AC_ARG_ENABLE(utmp,
127 [ --enable-utmp enable utmp (utmpx) support], 161 [ --enable-utmp enable utmp (utmpx) support],
128 [if test x$enableval = xyes -o x$enableval = xno; then 162 [if test x$enableval = xyes -o x$enableval = xno; then
129 support_utmp=$enableval 163 support_utmp=$enableval
149 183
150AC_ARG_ENABLE(transparency, 184AC_ARG_ENABLE(transparency,
151 [ --enable-transparency enable transparent backgrounds], 185 [ --enable-transparency enable transparent backgrounds],
152 [if test x$enableval = xyes -o x$enableval = xno; then 186 [if test x$enableval = xyes -o x$enableval = xno; then
153 support_inheritpixmap=$enableval 187 support_inheritpixmap=$enableval
188 fi])
189
190AC_ARG_ENABLE(tinting,
191 [ --enable-tinting enable tinting of transparent bg],
192 [if test x$enableval = xyes -o x$enableval = xno; then
193 support_tinting=$enableval
194 fi])
195
196AC_ARG_ENABLE(fading,
197 [ --enable-fading enable colors fading when off focus],
198 [if test x$enableval = xyes -o x$enableval = xno; then
199 support_fading=$enableval
154 fi]) 200 fi])
155 201
156AC_ARG_ENABLE(menubar, 202AC_ARG_ENABLE(menubar,
157 [ --enable-menubar enable menubar], 203 [ --enable-menubar enable menubar],
158 [if test x$enableval = xyes -o x$enableval = xno; then 204 [if test x$enableval = xyes -o x$enableval = xno; then
187 [ --enable-half-shadow use half width/height shadow on rxvt scrollbar], 233 [ --enable-half-shadow use half width/height shadow on rxvt scrollbar],
188 [if test x$enableval = xyes; then 234 [if test x$enableval = xyes; then
189 AC_DEFINE(HALFSHADOW, 1, Define if you want the depth of scrollbars and menus to be less) 235 AC_DEFINE(HALFSHADOW, 1, Define if you want the depth of scrollbars and menus to be less)
190 fi]) 236 fi])
191 237
238AC_ARG_WITH(codesets,
239 [ --with-codesets=NAME,.. compile in additional codesets (jp,jp_ext,kr,cn,cn_ext,all)],
240 [codesets="$withval"])
241
192AC_ARG_ENABLE(xim, 242AC_ARG_ENABLE(xim,
193 [ --enable-xim XIM (X Input Method) protocol support], 243 [ --enable-xim XIM (X Input Method) protocol support],
194 [if test x$enableval = xyes -o x$enableval = xno; then 244 [if test x$enableval = xyes -o x$enableval = xno; then
195 support_xim=$enableval 245 support_xim=$enableval
196 fi]) 246 fi])
223 [ --enable-xgetdefault enable resources via X instead of our small version], 273 [ --enable-xgetdefault enable resources via X instead of our small version],
224 [if test x$enableval = xyes; then 274 [if test x$enableval = xyes; then
225 AC_DEFINE(USE_XGETDEFAULT, 1, Define if you want to use XGetDefault instead of our internal version) 275 AC_DEFINE(USE_XGETDEFAULT, 1, Define if you want to use XGetDefault instead of our internal version)
226 fi]) 276 fi])
227 277
278AC_ARG_ENABLE(8bitctrls,
279 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)],
280 [if test x$enableval = xyes -o x$enableval = xno; then
281 support_8bitctrls=yes
282 fi])
283
284RESFALLBACK=Rxvt
285AC_ARG_ENABLE(fallback,
286 [ --enable-fallback(=CLASS) fall back on CLASS resources in addition to URxvt ones (default: Rxvt)],
287 [
288 test x$enableval = xyes && enableval=Rxvt
289 test x$enableval = xno && enableval=
290 RESFALLBACK="$enableval"
291 ])
292
293if test x$RESFALLBACK != x; then
294 AC_DEFINE_UNQUOTED(RESFALLBACK, "$RESFALLBACK", [Fallback resource class])
295fi
296
297RESNAME=urxvt
298AC_ARG_WITH(res-name,
299 [ --with-res-name=NAME use this as default resource name (default: urxvt)],
300 [RESNAME="$withval"])
301AC_DEFINE_UNQUOTED(RESNAME,"$RESNAME", [Default resource name])
302
303RESCLASS=URxvt
304AC_ARG_WITH(res-class,
305 [ --with-res-class=CLASS use this as the resource class (default: URxvt)],
306 [RESCLASS="$withval"])
307AC_DEFINE_UNQUOTED(RESCLASS,"$RESCLASS", [Resource class])
308
309RXVTNAME=urxvt
310AC_ARG_WITH(name,
311 [ --with-name=NAME set the basename for the installed binaries (default: urxvt)],
312 [RXVTNAME="$withval"])
313
314RXVTNAME=`echo "$RXVTNAME"|sed "$program_transform_name"`
315AC_SUBST(RXVTNAME)
316
228AC_ARG_ENABLE(strings, 317AC_ARG_ENABLE(strings,
229 [ --enable-strings enable some replacement system functions], 318 [ --enable-strings enable some replacement system functions],
230 [if test x$enableval = xyes -o x$enableval = xno; then 319 [if test x$enableval = xyes -o x$enableval = xno; then
231 support_addstrings=$enableval 320 support_addstrings=$enableval
232 fi]) 321 fi])
275 364
276AC_ARG_ENABLE(slipwheeling, 365AC_ARG_ENABLE(slipwheeling,
277 [ --enable-slipwheeling enable slip wheel scrolling (requires previous)], 366 [ --enable-slipwheeling enable slip wheel scrolling (requires previous)],
278 [if test x$enableval = xyes -o x$enableval = xno; then 367 [if test x$enableval = xyes -o x$enableval = xno; then
279 support_mouseslipwheel=$enableval 368 support_mouseslipwheel=$enableval
280 fi])
281
282AC_ARG_ENABLE(old-selection,
283 [ --enable-old-selection enable v2.20 (& prior) mouse selection style support],
284 [if test x$enableval = xyes -o x$enableval = xno; then
285 support_oldselection=$enableval
286 fi])
287
288AC_ARG_ENABLE(new-selection,
289 [ --disable-new-selection disable new mouse (xterm) selection style support],
290 [if test x$enableval = xno; then
291 AC_DEFINE(NO_NEW_SELECTION, 1, Define to remove xterm style mouse selection)
292 fi]) 369 fi])
293 370
294AC_ARG_ENABLE(dmalloc, 371AC_ARG_ENABLE(dmalloc,
295 [ --enable-dmalloc enable Gray Watson's malloc - for debugging use], 372 [ --enable-dmalloc enable Gray Watson's malloc - for debugging use],
296 [if test x$enableval = xyes; then 373 [if test x$enableval = xyes; then
339 [if test x$enableval = xyes -o x$enableval = xno; then 416 [if test x$enableval = xyes -o x$enableval = xno; then
340 support_pointer_blank=$enableval 417 support_pointer_blank=$enableval
341 fi]) 418 fi])
342 419
343AC_ARG_WITH(term, 420AC_ARG_WITH(term,
344 [ --with-term=NAME set the terminal to NAME (default \"rxvt\")], 421 [ --with-term=NAME set the terminal to NAME (default: rxvt)],
345 [if test x$withval != x; then 422 [if test x$withval != x; then
346 AC_DEFINE_UNQUOTED(TERMENV, "$withval",Set TERM to the value given by configure) term="$withval" 423 AC_DEFINE_UNQUOTED(TERMENV, "$withval",Set TERM to the value given by configure) term="$withval"
347 fi]) 424 fi])
348 425
349AC_ARG_WITH(terminfo, 426AC_ARG_WITH(terminfo,
998fi 1075fi
999LIBS=$ac_save_LIBS 1076LIBS=$ac_save_LIBS
1000CFLAGS=$ac_save_CFLAGS 1077CFLAGS=$ac_save_CFLAGS
1001 1078
1002AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale, 1079AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale,
1003[AC_TRY_LINK([#include <locale.h>], 1080[AC_TRY_LINK([#include <clocale>],
1004 [setlocale(LC_CTYPE, "");], 1081 [setlocale(LC_CTYPE, "");],
1005 rxvt_cv_func_setlocale=yes, rxvt_cv_func_setlocale=no)]) 1082 rxvt_cv_func_setlocale=yes, rxvt_cv_func_setlocale=no)])
1006if test x$rxvt_cv_func_setlocale = xyes; then 1083if test x$rxvt_cv_func_setlocale = xyes; then
1007 AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works) 1084 AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works)
1008fi 1085fi
1013 rxvt_cv_func_nl_langinfo=yes, rxvt_cv_func_nl_langinfo=no)]) 1090 rxvt_cv_func_nl_langinfo=yes, rxvt_cv_func_nl_langinfo=no)])
1014if test x$rxvt_cv_func_nl_langinfo = xyes; then 1091if test x$rxvt_cv_func_nl_langinfo = xyes; then
1015 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 1092 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
1016fi 1093fi
1017 1094
1095AC_CACHE_CHECK(for broken XIM callback, rxvt_broken_ximcb,
1096[AC_COMPILE_IFELSE([
1097#include <X11/Xlib.h>
1098
1099void im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3);
1100
1101void f() {
1102 XIMCallback cb;
1103 cb.callback = im_destroy_cb;
1104}
1105],rxvt_broken_ximcb=yes,rxvt_broken_ximcb=no)])
1106
1107if test x$rxvt_broken_ximcb = xyes; then
1108 AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.)
1109fi
1110
1018AC_CACHE_CHECK(for getpt, rxvt_cv_func_getpt, 1111AC_CACHE_CHECK(for getpt, rxvt_cv_func_getpt,
1019[AC_TRY_LINK([#define _GNU_SOURCE 1112[AC_TRY_LINK([#define _GNU_SOURCE
1020#ifdef HAVE_STDLIB_H 1113#ifdef HAVE_STDLIB_H
1021# include <stdlib.h> 1114# include <cstdlib>
1022#endif], 1115#endif],
1023 [(void)getpt();], 1116 [(void)getpt();],
1024 rxvt_cv_func_getpt=yes, rxvt_cv_func_getpt=no)]) 1117 rxvt_cv_func_getpt=yes, rxvt_cv_func_getpt=no)])
1025if test x$rxvt_cv_func_getpt = xyes; then 1118if test x$rxvt_cv_func_getpt = xyes; then
1026 AC_DEFINE(HAVE_GETPT, 1, Define if you have _GNU_SOURCE getpt() ) 1119 AC_DEFINE(HAVE_GETPT, 1, Define if you have _GNU_SOURCE getpt() )
1098fi 1191fi
1099if test x$pch2 != x; then 1192if test x$pch2 != x; then
1100 AC_DEFINE_UNQUOTED(PTYCHAR2, "$pch2", Define for second char in devptyXX) 1193 AC_DEFINE_UNQUOTED(PTYCHAR2, "$pch2", Define for second char in devptyXX)
1101fi 1194fi
1102 1195
1103dnl# FreeBSD needs to link libxpg4
1104AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])
1105
1106dnl# -------------------------------------------------------------------------- 1196dnl# --------------------------------------------------------------------------
1107dnl# now add and remove other stuff 1197dnl# now add and remove other stuff
1108dnl# -------------------------------------------------------------------------- 1198dnl# --------------------------------------------------------------------------
1199if test x$support_8bitctrls = xyes; then
1200 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
1201fi
1202if test x$support_fading = xyes; then
1203 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost)
1204fi
1205if test x$support_tinting = xyes; then
1206 AC_DEFINE(TINTING, 1, Define if you want your background to be tinted)
1207fi
1109if test x$support_inheritpixmap = xyes; then 1208if test x$support_inheritpixmap = xyes; then
1110 AC_DEFINE(TRANSPARENT, 1, Define if you want your background to use the parent window background) 1209 AC_DEFINE(TRANSPARENT, 1, Define if you want your background to use the parent window background)
1111fi 1210fi
1112if test x$support_keepscrolling = xno; then 1211if test x$support_keepscrolling = xno; then
1113 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed) 1212 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
1130if test x$support_mousewheel = xyes; then 1229if test x$support_mousewheel = xyes; then
1131 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll) 1230 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll)
1132fi 1231fi
1133if test x$support_mouseslipwheel = xyes; then 1232if test x$support_mouseslipwheel = xyes; then
1134 AC_DEFINE(MOUSE_SLIP_WHEELING, 1, Define to have CTRL cause wheel events to accelerate scrolling. Release CTRL to halt scrolling) 1233 AC_DEFINE(MOUSE_SLIP_WHEELING, 1, Define to have CTRL cause wheel events to accelerate scrolling. Release CTRL to halt scrolling)
1135fi
1136if test x$support_oldselection = xno; then
1137 AC_DEFINE(NO_OLD_SELECTION, 1, Define to remove old rxvt (ver 2.20 and before) style selection)
1138fi 1234fi
1139if test x$support_utmp = xyes; then 1235if test x$support_utmp = xyes; then
1140 AC_DEFINE(UTMP_SUPPORT, 1, Define if you want to have utmp/utmpx support) 1236 AC_DEFINE(UTMP_SUPPORT, 1, Define if you want to have utmp/utmpx support)
1141fi 1237fi
1142if test x$support_wtmp = xyes; then 1238if test x$support_wtmp = xyes; then
1179 AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support) 1275 AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support)
1180fi 1276fi
1181if test x$support_unicode3 = xyes; then 1277if test x$support_unicode3 = xyes; then
1182 AC_DEFINE(UNICODE_3, 1, Define if you want to represent unicode characters outside plane 0) 1278 AC_DEFINE(UNICODE_3, 1, Define if you want to represent unicode characters outside plane 0)
1183fi 1279fi
1280if test x$support_combining = xyes; then
1281 AC_DEFINE(ENABLE_COMBINING, 1, Define if you want to automatically compose combining characters)
1282fi
1184if test x$codesets = xall; then 1283if test x$codesets = xall; then
1185 codesets=jp,jp-ext,kr,cn,cn-ext,vn 1284 codesets=jp,jp-ext,kr,cn,cn-ext
1186fi 1285fi
1187for codeset in `echo $codesets | tr "[a-z,\\-]" "[A-Z _]"`; do 1286for codeset in `echo $codesets | tr "[a-z,\\-]" "[A-Z _]"`; do
1188 AC_DEFINE(ENCODING_EU, 1, Define if you want european extended codesets) 1287 AC_DEFINE(ENCODING_EU, 1, Define if you want european extended codesets)
1288 AC_DEFINE(ENCODING_VN, 1, Define if you want vietnamese codesets)
1189 case "$codeset" in 1289 case "$codeset" in
1190 VN ) AC_DEFINE(ENCODING_VN, 1, Define if you want vietnamese codesets) ;;
1191 JP ) AC_DEFINE(ENCODING_JP, 1, Define if you want japanese codesets) ;; 1290 JP ) AC_DEFINE(ENCODING_JP, 1, Define if you want japanese codesets) ;;
1192 JP_EXT ) AC_DEFINE(ENCODING_JP_EXT, 1, Define if you want extended japanese codesets) ;; 1291 JP_EXT ) AC_DEFINE(ENCODING_JP_EXT, 1, Define if you want extended japanese codesets) ;;
1193 KR ) AC_DEFINE(ENCODING_KR, 1, Define if you want korean codesets) ;; 1292 KR ) AC_DEFINE(ENCODING_KR, 1, Define if you want korean codesets) ;;
1194 CN ) AC_DEFINE(ENCODING_CN, 1, Define if you want chinese codesets) ;; 1293 CN ) AC_DEFINE(ENCODING_CN, 1, Define if you want chinese codesets) ;;
1195 CN_EXT ) AC_DEFINE(ENCODING_CN_EXT, 1, Define if you want extended chinese codesets) ;; 1294 CN_EXT ) AC_DEFINE(ENCODING_CN_EXT, 1, Define if you want extended chinese codesets) ;;
1229dnl# common parts of the Makefile 1328dnl# common parts of the Makefile
1230MCOMMON=./autoconf/Make.common 1329MCOMMON=./autoconf/Make.common
1231AC_SUBST_FILE(MCOMMON) 1330AC_SUBST_FILE(MCOMMON)
1232 1331
1233AC_ARG_PROGRAM 1332AC_ARG_PROGRAM
1234
1235RXVTNAME=`echo rxvt|sed "$program_transform_name"`
1236AC_SUBST(RXVTNAME)
1237 1333
1238dnl# test for "sun" or "__sun__" before include sys_ioctl 1334dnl# test for "sun" or "__sun__" before include sys_ioctl
1239 1335
1240dnl# revert HAVE_BLAH_H into a "#include <blah.h>" 1336dnl# revert HAVE_BLAH_H into a "#include <blah.h>"
1241AC_DEFUN(RXVT_DEFINE_TO_INCLUDE, dnl 1337AC_DEFUN(RXVT_DEFINE_TO_INCLUDE, dnl
1245 $1="/* #include <$2> */" 1341 $1="/* #include <$2> */"
1246fi dnl 1342fi dnl
1247AC_SUBST($1)]) 1343AC_SUBST($1)])
1248 1344
1249RXVT_DEFINE_TO_INCLUDE(include_stdint_h, stdint.h, ac_cv_header_stdint_h, yes, notset, dontmatch) 1345RXVT_DEFINE_TO_INCLUDE(include_stdint_h, stdint.h, ac_cv_header_stdint_h, yes, notset, dontmatch)
1250RXVT_DEFINE_TO_INCLUDE(include_stdarg_h, stdarg.h, ac_cv_header_stdarg_h, yes, notset, dontmatch) 1346RXVT_DEFINE_TO_INCLUDE(include_stdarg_h, cstdarg, ac_cv_header_stdarg_h, yes, notset, dontmatch)
1251RXVT_DEFINE_TO_INCLUDE(include_stdlib_h, stdlib.h, ac_cv_header_stdlib_h, yes, notset, dontmatch) 1347RXVT_DEFINE_TO_INCLUDE(include_stdlib_h, cstdlib, ac_cv_header_stdlib_h, yes, notset, dontmatch)
1252RXVT_DEFINE_TO_INCLUDE(include_unistd_h, unistd.h, ac_cv_header_unistd_h, yes, notset, dontmatch) 1348RXVT_DEFINE_TO_INCLUDE(include_unistd_h, unistd.h, ac_cv_header_unistd_h, yes, notset, dontmatch)
1253RXVT_DEFINE_TO_INCLUDE(include_string_h, string.h, ac_cv_header_string_h, yes, notset, dontmatch) 1349RXVT_DEFINE_TO_INCLUDE(include_string_h, cstring, ac_cv_header_string_h, yes, notset, dontmatch)
1254RXVT_DEFINE_TO_INCLUDE(include_fcntl_h, fcntl.h, ac_cv_header_fcntl_h, yes, notset, dontmatch) 1350RXVT_DEFINE_TO_INCLUDE(include_fcntl_h, fcntl.h, ac_cv_header_fcntl_h, yes, notset, dontmatch)
1255RXVT_DEFINE_TO_INCLUDE(include_util_h, util.h, ac_cv_header_util_h, yes, notset, dontmatch) 1351RXVT_DEFINE_TO_INCLUDE(include_util_h, util.h, ac_cv_header_util_h, yes, notset, dontmatch)
1256RXVT_DEFINE_TO_INCLUDE(include_assert_h, assert.h, ac_cv_header_assert_h, yes, notset, dontmatch) 1352RXVT_DEFINE_TO_INCLUDE(include_assert_h, assert.h, ac_cv_header_assert_h, yes, notset, dontmatch)
1257RXVT_DEFINE_TO_INCLUDE(include_sys_ioctl_h, sys/ioctl.h, rxvt_cv_header_sysioctl, yes, notset, dontmatch) 1353RXVT_DEFINE_TO_INCLUDE(include_sys_ioctl_h, sys/ioctl.h, rxvt_cv_header_sysioctl, yes, notset, dontmatch)
1258RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch) 1354RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch)
1285echo "Configuration: 1381echo "Configuration:
1286 1382
1287 Rxvt version: $VERSION : $DATE 1383 Rxvt version: $VERSION : $DATE
1288 Source code location: $srcdir 1384 Source code location: $srcdir
1289 Install path: ${prefix}/bin 1385 Install path: ${prefix}/bin
1290 Compiler: $CC 1386 Compiler: $CXX
1291 Compiler flags: $CFLAGS" 1387 Compiler flags: $CFLAGS
1388 Linker: $LINKER"
1292 1389
1293if test "$MALLOC_TYPE" = S; then 1390if test "$MALLOC_TYPE" = S; then
1294 echo " malloc support: system default" 1391 echo " malloc support: system default"
1295fi 1392fi
1296if test "$MALLOC_TYPE" = G; then 1393if test "$MALLOC_TYPE" = G; then
1307echo " 1404echo "
1308The following are set in config.h 1405The following are set in config.h
1309" 1406"
1310echo " pty/tty type: "$rxvt_cv_ptys 1407echo " pty/tty type: "$rxvt_cv_ptys
1311if test x$support_utmp != xyes; then 1408if test x$support_utmp != xyes; then
1312 echo " utmp support: disabled 1409 echo " utmp support: disabled"
1313" 1410 echo
1314else 1411else
1315 echo " utmp support: enabled 1412 echo " utmp support: enabled
1316 utmp file: $rxvt_cv_path_utmp 1413 utmp file: $rxvt_cv_path_utmp
1317 utmpx file: $rxvt_cv_path_utmpx 1414 utmpx file: $rxvt_cv_path_utmpx
1318 wtmp file: $rxvt_cv_path_wtmp 1415 wtmp file: $rxvt_cv_path_wtmp
1319 wtmpx file: $rxvt_cv_path_wtmpx 1416 wtmpx file: $rxvt_cv_path_wtmpx
1320 lastlog file: $rxvt_cv_path_lastlog 1417 lastlog file: $rxvt_cv_path_lastlog
1321 ttys/ttytab file: $rxvt_cv_path_ttytab 1418 ttys/ttytab file: $rxvt_cv_path_ttytab"
1322" 1419 echo
1323fi 1420fi
1324if test x$term != x; then 1421if test x$term != x; then
1325 echo " set TERM to: $term 1422 echo " set TERM to: $term"
1326"
1327fi 1423fi
1328if test x$terminfo != x; then 1424if test x$terminfo != x; then
1329 echo " set TERMINFO to: $terminfo 1425 echo " set TERMINFO to: $terminfo"
1330"
1331fi 1426fi
1427echo " default resource name: $RESNAME"
1428echo " resource class: $RESCLASS"
1429if test x$RESFALLBACK != x; then
1430 echo " resource class fallback: $RESFALLBACK"
1431fi
1432echo
1332if test x$rxvt_cv_ptys = xUNKNOWN; then 1433if test x$rxvt_cv_ptys = xUNKNOWN; then
1333 echo ".----------------------------------------------------------------." 1434 echo ".----------------------------------------------------------------."
1334 echo ". WARNING: could not determine pty/tty type. Do not build until ." 1435 echo ". WARNING: could not determine pty/tty type. Do not build until ."
1335 echo ". the appropriate PTYS_ARE_* is defined in config.h ." 1436 echo ". the appropriate PTYS_ARE_* is defined in config.h ."
1336 echo ".----------------------------------------------------------------." 1437 echo ".----------------------------------------------------------------."
1350 echo ". WARNING: --enable-xim was specified however the locale support ." 1451 echo ". WARNING: --enable-xim was specified however the locale support ."
1351 echo ". functions could not be found. ." 1452 echo ". functions could not be found. ."
1352 echo ". XIM is now being DISABLED! ." 1453 echo ". XIM is now being DISABLED! ."
1353 echo ".----------------------------------------------------------------." 1454 echo ".----------------------------------------------------------------."
1354fi 1455fi
1456
1355echo " *** Please check src/feature.h for further options *** 1457echo " *** Please check src/feature.h for further options ***"
1356" 1458echo
1459
1460echo ".----------------------------------------------------------------."
1461echo ". NOTE: most features are disabled by default, try ."
1462echo ". configure --help to get an idea of the optional features ."
1463echo ".----------------------------------------------------------------."
1464echo
1465

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines