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.2 by pcg, Mon Nov 24 17:31:27 2003 UTC vs.
Revision 1.5 by pcg, Fri Jan 16 18:49:33 2004 UTC

1dnl# -*- sh -*- 1dnl# -*- sh -*-
2dnl# 2dnl#
3dnl# $Id: configure.in,v 1.2 2003/11/24 17:31:27 pcg Exp $ 3dnl# $Id: configure.in,v 1.5 2004/01/16 18:49:33 pcg Exp $
4dnl# 4dnl#
5dnl# Process this file with autoconf to produce a configure script. 5dnl# Process this file with autoconf to produce a configure script.
6dnl# 6dnl#
7AC_INIT(src/feature.h) 7AC_INIT(src/feature.h)
8AC_CONFIG_AUX_DIR(autoconf) 8AC_CONFIG_AUX_DIR(autoconf)
105 support_xft=yes 105 support_xft=yes
106 support_unicode3=yes 106 support_unicode3=yes
107 codesets=all 107 codesets=all
108 fi]) 108 fi])
109 109
110echo
111if test x$support_inheritpixmap = xyes; then
112 support_inheritpixmap=no
113 echo "******* transparency support disabled, does not work"
114fi
115if test x$support_xpm = xyes; then
116 support_xpm=no
117 echo "******* pixmap support disabled, does not work"
118fi
119if test x$support_graphics = xyes; then
120 support_graphics=no
121 echo "******* graphics support disabled, does not work"
122fi
123if test x$support_menubar = xyes; then
124 support_menubar=no
125 echo "******* menubar support disabled, does not work"
126fi
127echo
128
110AC_ARG_ENABLE(unicode3, 129AC_ARG_ENABLE(unicode3,
111 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters], 130 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters],
112 [if test x$enableval = xyes; then 131 [if test x$enableval = xyes; then
113 support_unicode3=yes 132 support_unicode3=yes
114 fi]) 133 fi])
118 [if test x$enableval = xyes; then 137 [if test x$enableval = xyes; then
119 support_xft=yes 138 support_xft=yes
120 fi]) 139 fi])
121 140
122AC_ARG_WITH(codesets, 141AC_ARG_WITH(codesets,
123 [ --with-codesets=NAME,... compile in additional codesets (hp,jp_ext,kr,cn,cn_ext,vn,all)], 142 [ --with-codesets=NAME,... compile in additional codesets (jp,jp_ext,kr,cn,cn_ext,vn,all)],
124 [if test x$enableval = xyes; then 143 [if test x$enableval = xyes; then
125 codesets="$withval" 144 codesets="$withval"
126 fi]) 145 fi])
127 146
128AC_ARG_WITH(encoding, 147AC_ARG_WITH(encoding,
1271 CFLAGS="$CFLAGS `pkg-config xft --cflags`" 1290 CFLAGS="$CFLAGS `pkg-config xft --cflags`"
1272 CPPFLAGS="$CPPFLAGS `pkg-config xft --cflags`" 1291 CPPFLAGS="$CPPFLAGS `pkg-config xft --cflags`"
1273 1292
1274 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no]) 1293 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
1275 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no]) 1294 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no])
1295
1296 if test x$support_xft = xyes; then
1276 AC_DEFINE(XFT, 1, Define to enable xft support) 1297 AC_DEFINE(XFT, 1, Define to enable xft support)
1298 fi
1277fi 1299fi
1278 1300
1279AC_OUTPUT(autoconf/Make.common \ 1301AC_OUTPUT(autoconf/Make.common \
1280Makefile \ 1302Makefile \
1281doc/Makefile \ 1303doc/Makefile \

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines