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.145 by root, Tue Jun 19 20:50:05 2012 UTC vs.
Revision 1.154 by sf-exg, Tue Jun 16 12:00:07 2015 UTC

293 [ --disable-delete-key disable handling of the delete key], 293 [ --disable-delete-key disable handling of the delete key],
294 [if test x$enableval = xno; then 294 [if test x$enableval = xno; then
295 AC_DEFINE(NO_DELETE_KEY, 1, Define if you don't want support for the (non-keypad) delete key) 295 AC_DEFINE(NO_DELETE_KEY, 1, Define if you don't want support for the (non-keypad) delete key)
296 fi]) 296 fi])
297 297
298support_resources=yes
298AC_ARG_ENABLE(resources, 299AC_ARG_ENABLE(resources,
299 [ --disable-resources disable all resource checking], 300 [ --disable-resources disable all resource checking],
300 [if test x$enableval = xno; then 301 [if test x$enableval = xno; then
301 AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read) 302 support_resources=no
302 fi]) 303 fi])
303 304
304AC_ARG_ENABLE(8bitctrls, 305AC_ARG_ENABLE(8bitctrls,
305 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)], 306 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)],
306 [if test x$enableval = xyes -o x$enableval = xno; then 307 [if test x$enableval = xyes -o x$enableval = xno; then
410 [ --with-terminfo=PATH set the path to the terminfo tree to PATH], 411 [ --with-terminfo=PATH set the path to the terminfo tree to PATH],
411 [if test x$withval != x; then 412 [if test x$withval != x; then
412 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval" 413 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval"
413 fi]) 414 fi])
414 415
416if test x$support_resources = xno; then
417 if test x$support_frills = xyes || test x$support_perl = xyes; then
418 AC_MSG_ERROR([--disable-resources requires --disable-frills --disable-perl])
419 fi
420
421 AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read)
422fi
423
415dnl# -------------------------------------------------------------------------- 424dnl# --------------------------------------------------------------------------
416 425
417LIBEV_M4_AVOID_LIBRT=1 426LIBEV_M4_AVOID_LIBRT=1
418m4_include([libev/libev.m4]) 427m4_include([libev/libev.m4])
419 428
421 430
422AC_PATH_PROG(TIC, tic, :) 431AC_PATH_PROG(TIC, tic, :)
423 432
424AC_PATH_XTRA 433AC_PATH_XTRA
425 434
435AC_PATH_TOOL(PKG_CONFIG, pkg-config, no)
436
437image_lib=none
438
439PIXBUF_CFLAGS=
440PIXBUF_LIBS=
441
442if test x$support_pixbuf = xyes; then
443 RXVT_CHECK_MODULES([PIXBUF], [gdk-pixbuf-2.0], [
444 image_lib=gdk-pixbuf
445 AC_DEFINE(HAVE_PIXBUF, 1, Define if you want to use gdk-pixbuf for image processing)
446 ], [:])
447fi
448
449AC_SUBST(PIXBUF_CFLAGS)
450AC_SUBST(PIXBUF_LIBS)
451
426STARTUP_NOTIFICATION_CFLAGS= 452STARTUP_NOTIFICATION_CFLAGS=
427STARTUP_NOTIFICATION_LIBS= 453STARTUP_NOTIFICATION_LIBS=
428 454
429if test x$support_startup_notification = xyes; then 455if test x$support_startup_notification = xyes; then
430 support_startup_notification=no 456 RXVT_CHECK_MODULES([STARTUP_NOTIFICATION], [libstartup-notification-1.0], [
431 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
432 AC_MSG_CHECKING(for libstartup-notification)
433 if test $PKG_CONFIG != no && $PKG_CONFIG --exists libstartup-notification-1.0; then
434 STARTUP_NOTIFICATION_CFLAGS="`$PKG_CONFIG libstartup-notification-1.0 --cflags`"
435 STARTUP_NOTIFICATION_LIBS="`$PKG_CONFIG libstartup-notification-1.0 --libs`"
436 support_startup_notification=yes
437 fi
438
439 if test x$support_startup_notification = xyes; then
440 AC_MSG_RESULT(ok)
441 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, Define if freedesktop startup notifications should be supported) 457 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, Define if freedesktop startup notifications should be supported)
442 else 458 ], [:])
443 AC_MSG_RESULT(no)
444 fi
445fi 459fi
446 460
447AC_SUBST(STARTUP_NOTIFICATION_CFLAGS) 461AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
448AC_SUBST(STARTUP_NOTIFICATION_LIBS) 462AC_SUBST(STARTUP_NOTIFICATION_LIBS)
463
464if test x$support_frills = xyes; then
465 RXVT_CHECK_MODULES([XMU], [xmu], [
466 X_LIBS="$XMU_LIBS $X_LIBS"
467 CPPFLAGS="$CPPFLAGS $XMU_CFLAGS"
468 AC_DEFINE(HAVE_XMU, 1, Define to enable Xmu support)
469 ], [:])
470fi
449 471
450dnl# -------------------------------------------------------------------------- 472dnl# --------------------------------------------------------------------------
451dnl# CHECKING FOR HEADER FILES 473dnl# CHECKING FOR HEADER FILES
452dnl# -------------------------------------------------------------------------- 474dnl# --------------------------------------------------------------------------
453AC_CHECK_HEADERS( \ 475AC_CHECK_HEADERS( \
498dnl# -------------------------------------------------------------------------- 520dnl# --------------------------------------------------------------------------
499dnl# -------------------------------------------------------------------------- 521dnl# --------------------------------------------------------------------------
500 522
501dnl# this is a really hack test for some basic Xlocale stuff 523dnl# this is a really hack test for some basic Xlocale stuff
502save_LIBS=$LIBS 524save_LIBS=$LIBS
503save_CFLAGS=$CFLAGS 525save_CXXFLAGS=$CXXFLAGS
504CFLAGS="$CFLAGS $X_CFLAGS" 526CXXFLAGS="$CXXFLAGS $X_CFLAGS"
505LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" 527LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
506if test x$support_xim = xyes; then 528if test x$support_xim = xyes; then
507 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale, 529 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
508 [AC_RUN_IFELSE([AC_LANG_SOURCE([[ 530 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
509 #include <X11/Xlib.h> 531 #include <X11/Xlib.h>
541#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])]) 563#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])])
542if test x$rxvt_cv_func_xsetlocale = xyes; then 564if test x$rxvt_cv_func_xsetlocale = xyes; then
543 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works) 565 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works)
544fi 566fi
545LIBS=$save_LIBS 567LIBS=$save_LIBS
546CFLAGS=$save_CFLAGS 568CXXFLAGS=$save_CXXFLAGS
547 569
548AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo, 570AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo,
549[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])]) 571[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])])
550if test x$rxvt_cv_func_nl_langinfo = xyes; then 572if test x$rxvt_cv_func_nl_langinfo = xyes; then
551 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 573 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
564if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then 586if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then
565 support_image=yes 587 support_image=yes
566fi 588fi
567if test x$support_xft = xyes || test x$support_image = xyes; then 589if test x$support_xft = xyes || test x$support_image = xyes; then
568 rxvt_have_xrender=no 590 rxvt_have_xrender=no
569 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 591 RXVT_CHECK_MODULES([XRENDER], [xrender], [
570 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xrender; then 592 X_LIBS="$XRENDER_LIBS $X_LIBS"
571 X_LIBS="`$PKG_CONFIG xrender --libs` $X_LIBS" 593 CPPFLAGS="$CPPFLAGS $XRENDER_CFLAGS"
572 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xrender --cflags`"
573 rxvt_have_xrender=yes 594 rxvt_have_xrender=yes
574 595
575 save_LIBS="$LIBS" 596 save_LIBS="$LIBS"
576 LIBS="$LIBS $X_LIBS" 597 LIBS="$LIBS $X_LIBS"
577 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no]) 598 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no])
578 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no]) 599 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no])
579 LIBS="$save_LIBS" 600 LIBS="$save_LIBS"
580 fi 601 ], [:])
581fi 602fi
582 603
583if test x$support_xft = xyes && test x$rxvt_have_xrender = xyes; then 604if test x$support_xft = xyes && test x$rxvt_have_xrender = xyes; then
584 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 605 RXVT_CHECK_MODULES([XFT], [fontconfig xft], [
585 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then 606 X_LIBS="$XFT_LIBS $X_LIBS"
586 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS" 607 CPPFLAGS="$CPPFLAGS $XFT_CFLAGS"
587 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`" 608 ], [
588 else
589 AC_PATH_PROG(XFT_CONFIG, xft-config, no) 609 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
590 if test $XFT_CONFIG != no; then 610 if test $XFT_CONFIG != no; then
591 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS" 611 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
592 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`" 612 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
593 fi 613 fi
594 fi 614 ])
595
596 if test $PKG_CONFIG != no && $PKG_CONFIG --exists fontconfig; then
597 X_LIBS="`$PKG_CONFIG fontconfig --libs` $X_LIBS"
598 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG fontconfig --cflags`"
599 fi
600 615
601 save_LIBS="$LIBS" 616 save_LIBS="$LIBS"
602 LIBS="$LIBS $X_LIBS" 617 LIBS="$LIBS $X_LIBS"
603 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
604 AC_CHECK_LIB(Xft,XftDrawString32,:,[support_xft=no])
605 AC_CHECK_HEADERS(fontconfig/fontconfig.h,,[support_xft=no]) 618 AC_CHECK_HEADERS(X11/Xft/Xft.h fontconfig/fontconfig.h,,[support_xft=no])
606 AC_CHECK_LIB(fontconfig,FcPatternGet,:,[support_xft=no]) 619 AC_CHECK_FUNCS(XftDrawString32 FcPatternGet,,[support_xft=no])
607 LIBS="$save_LIBS" 620 LIBS="$save_LIBS"
608 621
609 if test x$support_xft = xyes; then 622 if test x$support_xft = xyes; then
610 AC_DEFINE(XFT, 1, Define to enable xft support) 623 AC_DEFINE(XFT, 1, Define to enable xft support)
611 fi 624 fi
612fi 625fi
613 626
614image_lib=none
615
616PIXBUF_CFLAGS=
617PIXBUF_LIBS=
618
619if test x$support_image = xyes && test x$rxvt_have_xrender = xyes; then 627if test x$support_image = xyes && test x$rxvt_have_xrender = xyes; then
628 AC_MSG_CHECKING(for Render >= 0.11)
629 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
630#include <X11/extensions/Xrender.h>
631#if RENDER_MAJOR == 0 && RENDER_MINOR <= 10
632error
633#endif
634]])],[],[support_image=no])
635 if test x$support_image = xyes; then
636 AC_MSG_RESULT(ok)
620 LIBS="$LIBS -lm" 637 LIBS="$LIBS -lm"
621 AC_DEFINE(XRENDER, 1, Define to enable xrender support) 638 AC_DEFINE(XRENDER, 1, Define to enable xrender support)
622 639
623 if test x$support_inheritpixmap = xyes; then 640 if test x$support_inheritpixmap = xyes; then
624 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background) 641 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background)
642 fi
643 else
644 AC_MSG_RESULT(no)
625 fi 645 fi
626
627 if test x$support_pixbuf = xyes; then
628 support_pixbuf=no
629 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
630 AC_MSG_CHECKING(for gdk-pixbuf)
631 if test $PKG_CONFIG != no && $PKG_CONFIG --exists gdk-pixbuf-2.0; then
632 PIXBUF_CFLAGS="`$PKG_CONFIG gdk-pixbuf-2.0 --cflags`"
633 PIXBUF_LIBS="`$PKG_CONFIG gdk-pixbuf-2.0 --libs`"
634 support_pixbuf=yes
635 fi
636
637 if test x$support_pixbuf = xyes; then
638 AC_MSG_RESULT(ok)
639 image_lib=gdk-pixbuf
640 AC_DEFINE(HAVE_PIXBUF, 1, Define if you want to use gdk-pixbuf for image processing)
641 AC_DEFINE(BG_IMAGE_FROM_FILE, 1, Define if you want to have sexy-looking background pixmaps.)
642 else
643 AC_MSG_RESULT(no)
644 fi
645 fi
646fi 646fi
647
648AC_SUBST(PIXBUF_CFLAGS)
649AC_SUBST(PIXBUF_LIBS)
650 647
651if test x$support_styles = xyes; then 648if test x$support_styles = xyes; then
652 AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support) 649 AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support)
653fi 650fi
654if test x$support_iso14755 = xyes; then 651if test x$support_iso14755 = xyes; then

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines