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.130 by mikachu, Sun Nov 13 16:03:31 2011 UTC vs.
Revision 1.132 by sf-exg, Wed Dec 14 12:03:04 2011 UTC

95support_scroll_next=yes 95support_scroll_next=yes
96support_scroll_xterm=yes 96support_scroll_xterm=yes
97support_xim=yes 97support_xim=yes
98support_pixbuf=yes 98support_pixbuf=yes
99support_startup_notification=yes 99support_startup_notification=yes
100support_afterimage=yes
101support_xft=yes 100support_xft=yes
102support_unicode3=no 101support_unicode3=no
103support_combining=yes 102support_combining=yes
104support_8bitctrls=no 103support_8bitctrls=no
105support_iso14755=yes 104support_iso14755=yes
132 support_utmp=no 131 support_utmp=no
133 support_wtmp=no 132 support_wtmp=no
134 support_xim=no 133 support_xim=no
135 support_pixbuf=no 134 support_pixbuf=no
136 support_startup_notification=no 135 support_startup_notification=no
137 support_afterimage=no
138 support_xft=no 136 support_xft=no
139 support_unicode3=no 137 support_unicode3=no
140 support_combining=no 138 support_combining=no
141 support_8bitctrls=no 139 support_8bitctrls=no
142 support_iso14755=no 140 support_iso14755=no
161 support_utmp=yes 159 support_utmp=yes
162 support_wtmp=yes 160 support_wtmp=yes
163 support_xim=yes 161 support_xim=yes
164 support_pixbuf=yes 162 support_pixbuf=yes
165 support_startup_notification=yes 163 support_startup_notification=yes
166 support_afterimage=yes
167 support_xft=yes 164 support_xft=yes
168 support_unicode3=yes 165 support_unicode3=yes
169 support_combining=yes 166 support_combining=yes
170 #support_8bitctrls=yes 167 #support_8bitctrls=yes
171 support_iso14755=yes 168 support_iso14755=yes
234 [if test x$enableval = xyes -o x$enableval = xno; then 231 [if test x$enableval = xyes -o x$enableval = xno; then
235 support_styles=$enableval 232 support_styles=$enableval
236 fi]) 233 fi])
237 234
238AC_ARG_ENABLE(afterimage, 235AC_ARG_ENABLE(afterimage,
239 [ --enable-afterimage enable integration with libAfterImage for background images], 236 [ --enable-afterimage enable integration with libAfterImage for background images (deprecated)],
240 [if test x$enableval = xyes -o x$enableval = xno; then 237 [if test x$enableval = xyes -o x$enableval = xno; then
241 support_afterimage=$enableval 238 support_afterimage=$enableval
242 fi]) 239 fi])
243 240
244AC_ARG_WITH(afterimage_config, 241AC_ARG_WITH(afterimage_config,
498AC_SUBST(STARTUP_NOTIFICATION_CFLAGS) 495AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
499AC_SUBST(STARTUP_NOTIFICATION_LIBS) 496AC_SUBST(STARTUP_NOTIFICATION_LIBS)
500 497
501AFTERIMAGE_CFLAGS= 498AFTERIMAGE_CFLAGS=
502AFTERIMAGE_LIBS= 499AFTERIMAGE_LIBS=
503AFTERIMAGE_VERSION=
504 500
505if test x$support_afterimage = xyes; then 501if test x$support_afterimage = xyes; then
506 support_afterimage=no 502 support_afterimage=no
507 503
508 if test "x$afterimage_config" = "x" ; then 504 if test "x$afterimage_config" = "x" ; then
509 AC_PATH_PROG(afterimage_config, afterimage-config, no) 505 AC_PATH_PROG(afterimage_config, afterimage-config, no)
510 fi 506 fi
511 if test "x$afterimage_config" != "xno" ; then 507 if test "x$afterimage_config" != "xno" ; then
512 AC_MSG_CHECKING(for libAfterImage version >= 1.15) 508 AC_MSG_CHECKING(for libAfterImage version >= 1.15)
513 xAFTERIMAGE_VERSION=`$afterimage_config --version` 509 AFTERIMAGE_VERSION=`$afterimage_config --version`
514 if test -n "$xAFTERIMAGE_VERSION" ; then 510 if test -n "$AFTERIMAGE_VERSION" ; then
515 xAFTERIMAGE_CFLAGS=`$afterimage_config --cflags` 511 AFTERIMAGE_CFLAGS=`$afterimage_config --cflags`
516 xAFTERIMAGE_LIBS=`$afterimage_config --libs` 512 AFTERIMAGE_LIBS=`$afterimage_config --libs`
517 if test "x$xAFTERIMAGE_LIBS" != "x"; then 513 if test "x$AFTERIMAGE_LIBS" != "x"; then
518 libai_ver_major=`echo $xAFTERIMAGE_VERSION | cut -f 1 -d .` 514 libai_ver_major=`echo $AFTERIMAGE_VERSION | cut -f 1 -d .`
519 libai_ver_minor=`echo $xAFTERIMAGE_VERSION | cut -f 2 -d .` 515 libai_ver_minor=`echo $AFTERIMAGE_VERSION | cut -f 2 -d .`
520 if test $libai_ver_major -gt 1 -o \( $libai_ver_major -eq 1 -a $libai_ver_minor -ge 15 \); then 516 if test $libai_ver_major -gt 1 -o \( $libai_ver_major -eq 1 -a $libai_ver_minor -ge 15 \); then
521 support_afterimage=yes 517 support_afterimage=yes
522 AFTERIMAGE_CFLAGS="$xAFTERIMAGE_CFLAGS"
523 AFTERIMAGE_LIBS="$xAFTERIMAGE_LIBS"
524 AFTERIMAGE_VERSION="$xAFTERIMAGE_VERSION"
525 fi 518 fi
526 fi 519 fi
527 fi 520 fi
528 if test "x$support_afterimage" = "xyes"; then 521 if test "x$support_afterimage" = "xyes"; then
529 AC_MSG_RESULT($AFTERIMAGE_LIBS) 522 AC_MSG_RESULT($AFTERIMAGE_LIBS)
530 image_lib=libafterimage 523 image_lib=libafterimage
531 AC_DEFINE(HAVE_AFTERIMAGE, 1, Define if you want to use libAfterImage for image processing) 524 AC_DEFINE(HAVE_AFTERIMAGE, 1, Define if you want to use libAfterImage for image processing)
532 AC_DEFINE(BG_IMAGE_FROM_FILE, 1, Define if you want to have sexy-looking background pixmaps.) 525 AC_DEFINE(BG_IMAGE_FROM_FILE, 1, Define if you want to have sexy-looking background pixmaps.)
533 else 526 else
534 AC_MSG_RESULT(no) 527 AC_MSG_RESULT(no)
528 AFTERIMAGE_CFLAGS=
529 AFTERIMAGE_LIBS=
535 fi 530 fi
536 fi 531 fi
537fi 532fi
538 533
539AC_SUBST(AFTERIMAGE_CFLAGS) 534AC_SUBST(AFTERIMAGE_CFLAGS)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines