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.37 by root, Sun Aug 22 00:22:05 2004 UTC vs.
Revision 1.44 by root, Tue Jan 11 00:54:57 2005 UTC

4dnl# 4dnl#
5AC_INIT 5AC_INIT
6AC_CONFIG_SRCDIR([src/feature.h]) 6AC_CONFIG_SRCDIR([src/feature.h])
7AC_CONFIG_AUX_DIR(autoconf) 7AC_CONFIG_AUX_DIR(autoconf)
8AC_CONFIG_HEADER(config.h:autoconf/config.h.in) 8AC_CONFIG_HEADER(config.h:autoconf/config.h.in)
9
10AC_CANONICAL_HOST
9 11
10dnl RXVT version 12dnl RXVT version
11changequote(, )dnl 13changequote(, )dnl
12VERSION=`sed -n -e 's/^.*[ \t]VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 14VERSION=`sed -n -e 's/^.*[ \t]VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
13DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 15DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
40 LIBS="$LIBS -lsupc++" 42 LIBS="$LIBS -lsupc++"
41 ]) 43 ])
42fi 44fi
43AC_SUBST(LINKER,[$LINKER]) 45AC_SUBST(LINKER,[$LINKER])
44 46
45CPPFLAGS="-D_GNU_SOURCE -D_XOPEN_SOURCE" 47AC_DEFINE(_GNU_SOURCE, 1, Use all glibc features.)
48
49case $host in
50 *-*-solaris* )
51 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
52 AC_DEFINE(_XOPEN_SOURCE, 2, Needed to get declarations for msg_control and msg_controllen on Solaris)
53 AC_DEFINE(__EXTENSIONS__, 1, Needed to get declarations for msg_control and msg_controllen on Solaris)
54 ;;
55esac
46 56
47dnl if test x$GXX = xyes; then 57dnl if test x$GXX = xyes; then
48dnl CXXFLAGS="$CXXFLAGS" dnl I once had -fno-exceptions, but I am using them now... 58dnl CXXFLAGS="$CXXFLAGS" dnl I once had -fno-exceptions, but I am using them now...
49dnl fi 59dnl fi
50 60
66AC_PROG_LIBTOOL()dnl# libtool 76AC_PROG_LIBTOOL()dnl# libtool
67 77
68MALLOC_TYPE=S 78MALLOC_TYPE=S
69support_addstrings=no 79support_addstrings=no
70support_frills=no 80support_frills=no
71support_linespace=no
72support_inheritpixmap=no 81support_inheritpixmap=no
73support_tinting=no 82support_tinting=no
74support_fading=no 83support_fading=no
75support_keepscrolling=no 84support_keepscrolling=no
76support_selectionscrolling=no 85support_selectionscrolling=no
112 NOTE: this option is order dependent 121 NOTE: this option is order dependent
113 NOTE: automatically enabled with --enable-shared], 122 NOTE: automatically enabled with --enable-shared],
114 [if test x$enableval = xyes; then 123 [if test x$enableval = xyes; then
115 support_24bit=yes 124 support_24bit=yes
116 support_frills=yes 125 support_frills=yes
117 support_linespace=yes
118 support_inheritpixmap=yes 126 support_inheritpixmap=yes
119 support_tinting=yes 127 support_tinting=yes
120 support_fading=yes 128 support_fading=yes
121 support_keepscrolling=yes 129 support_keepscrolling=yes
122 support_selectionscrolling=yes 130 support_selectionscrolling=yes
245 [if test x$enableval = xyes; then 253 [if test x$enableval = xyes; then
246 AC_DEFINE(HALFSHADOW, 1, Define if you want the depth of scrollbars and menus to be less) 254 AC_DEFINE(HALFSHADOW, 1, Define if you want the depth of scrollbars and menus to be less)
247 fi]) 255 fi])
248 256
249AC_ARG_WITH(codesets, 257AC_ARG_WITH(codesets,
250 [ --with-codesets=NAME,.. compile in additional codesets (jp,jp_ext,kr,cn,cn_ext,all)], 258 [ --with-codesets=NAME,.. compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)],
251 [codesets="$withval"]) 259 [codesets="$withval"])
252 260
253AC_ARG_ENABLE(xim, 261AC_ARG_ENABLE(xim,
254 [ --enable-xim XIM (X Input Method) protocol support], 262 [ --enable-xim XIM (X Input Method) protocol support],
255 [if test x$enableval = xyes -o x$enableval = xno; then 263 [if test x$enableval = xyes -o x$enableval = xno; then
319 327
320RXVTNAME=urxvt 328RXVTNAME=urxvt
321AC_ARG_WITH(name, 329AC_ARG_WITH(name,
322 [ --with-name=NAME set the basename for the installed binaries (default: urxvt)], 330 [ --with-name=NAME set the basename for the installed binaries (default: urxvt)],
323 [RXVTNAME="$withval"]) 331 [RXVTNAME="$withval"])
332AC_DEFINE_UNQUOTED(RXVTNAME,"$RXVTNAME", [Binary base name])
324 333
325RXVTNAME=`echo "$RXVTNAME"|sed "$program_transform_name"` 334RXVTNAME=`echo "$RXVTNAME"|sed "$program_transform_name"`
326AC_SUBST(RXVTNAME) 335AC_SUBST(RXVTNAME)
327 336
328AC_ARG_ENABLE(strings, 337AC_ARG_ENABLE(strings,
345 354
346AC_ARG_ENABLE(frills, 355AC_ARG_ENABLE(frills,
347 [ --enable-frills enable support for rarely used features], 356 [ --enable-frills enable support for rarely used features],
348 [if test x$enableval = xyes -o x$enableval = xno; then 357 [if test x$enableval = xyes -o x$enableval = xno; then
349 support_frills=$enableval 358 support_frills=$enableval
350 fi])
351
352AC_ARG_ENABLE(linespace,
353 [ --enable-linespace enable support for linespace],
354 [if test x$enableval = xyes -o x$enableval = xno; then
355 support_linespace=$enableval
356 fi]) 359 fi])
357 360
358AC_ARG_ENABLE(24bit, 361AC_ARG_ENABLE(24bit,
359 [ --enable-24bit enable support for using 24bit visuals if available], 362 [ --enable-24bit enable support for using 24bit visuals if available],
360 [if test x$enableval = xyes -o x$enableval = xno; then 363 [if test x$enableval = xyes -o x$enableval = xno; then
594dnl> AC_CHECK_TYPE(umode_t, int) 597dnl> AC_CHECK_TYPE(umode_t, int)
595dnl> AC_CHECK_TYPE(off_t, long) 598dnl> AC_CHECK_TYPE(off_t, long)
596AC_TYPE_PID_T 599AC_TYPE_PID_T
597AC_TYPE_UID_T 600AC_TYPE_UID_T
598 601
599AC_CHECK_SIZEOF(char, 1)
600AC_CHECK_SIZEOF(short, 2) 602AC_CHECK_SIZEOF(short, 2)
601AC_CHECK_SIZEOF(int, 4) 603AC_CHECK_SIZEOF(int, 4)
602AC_CHECK_SIZEOF(long, 4) 604dnl AC_CHECK_SIZEOF(long, 4)
603AC_CHECK_SIZEOF(long long, 8) 605AC_CHECK_SIZEOF(long long, 8)
604AC_CHECK_SIZEOF(int *, 4) 606AC_CHECK_SIZEOF(int *, 4)
605 607
606dnl# see usage below 608dnl# see usage below
607AC_DEFUN(RXVT_CHECK_SIZE, 609AC_DEFUN(RXVT_CHECK_SIZE,
1223 AC_DEFINE(MENUBAR, 1, Define if you want Menubar support) 1225 AC_DEFINE(MENUBAR, 1, Define if you want Menubar support)
1224fi 1226fi
1225if test x$support_frills = xyes; then 1227if test x$support_frills = xyes; then
1226 AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features) 1228 AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features)
1227fi 1229fi
1228if test x$support_linespace = xno; then
1229 AC_DEFINE(NO_LINESPACE, 1, Define if you don't want support linespace)
1230fi
1231if test x$support_24bit = xyes; then 1230if test x$support_24bit = xyes; then
1232 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) 1231 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)
1233fi 1232fi
1234if test x$support_mousewheel = xyes; then 1233if test x$support_mousewheel = xyes; then
1235 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll) 1234 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll)
1284fi 1283fi
1285if test x$support_combining = xyes; then 1284if test x$support_combining = xyes; then
1286 AC_DEFINE(ENABLE_COMBINING, 1, Define if you want to automatically compose combining characters) 1285 AC_DEFINE(ENABLE_COMBINING, 1, Define if you want to automatically compose combining characters)
1287fi 1286fi
1288if test x$codesets = xall; then 1287if test x$codesets = xall; then
1289 codesets=jp,jp-ext,kr,cn,cn-ext 1288 codesets=jp,jp-ext,kr,zh,zh-ext
1290fi 1289fi
1291AC_DEFINE(ENCODING_EU, 1, Define if you want european extended codesets) 1290AC_DEFINE(ENCODING_EU, 1, Define if you want european extended codesets)
1292AC_DEFINE(ENCODING_VN, 1, Define if you want vietnamese codesets) 1291AC_DEFINE(ENCODING_VN, 1, Define if you want vietnamese codesets)
1293for codeset in `echo $codesets | tr "[a-z,\\-]" "[A-Z _]"`; do 1292for codeset in `echo $codesets | tr "[a-z,\\-]" "[A-Z _]"`; do
1294 case "$codeset" in 1293 case "$codeset" in
1295 JP ) AC_DEFINE(ENCODING_JP, 1, Define if you want japanese codesets) ;; 1294 JP ) AC_DEFINE(ENCODING_JP, 1, Define if you want japanese codesets) ;;
1296 JP_EXT ) AC_DEFINE(ENCODING_JP_EXT, 1, Define if you want extended japanese codesets) ;; 1295 JP_EXT ) AC_DEFINE(ENCODING_JP_EXT, 1, Define if you want extended japanese codesets) ;;
1297 KR ) AC_DEFINE(ENCODING_KR, 1, Define if you want korean codesets) ;; 1296 KR ) AC_DEFINE(ENCODING_KR, 1, Define if you want korean codesets) ;;
1298 CN ) AC_DEFINE(ENCODING_CN, 1, Define if you want chinese codesets) ;; 1297 ZH ) AC_DEFINE(ENCODING_ZH, 1, Define if you want chinese codesets) ;;
1299 CN_EXT ) AC_DEFINE(ENCODING_CN_EXT, 1, Define if you want extended chinese codesets) ;; 1298 ZH_EXT ) AC_DEFINE(ENCODING_ZH_EXT, 1, Define if you want extended chinese codesets) ;;
1300 esac 1299 esac
1301done 1300done
1302 1301
1303dnl> AC_CHECK_FUNCS(gettimeofday putenv select socket) 1302dnl> AC_CHECK_FUNCS(gettimeofday putenv select socket)
1304 1303

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines