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.142 by root, Thu May 10 22:42:03 2012 UTC vs.
Revision 1.153 by sf-exg, Tue Jun 16 11:58:26 2015 UTC

421 421
422AC_PATH_PROG(TIC, tic, :) 422AC_PATH_PROG(TIC, tic, :)
423 423
424AC_PATH_XTRA 424AC_PATH_XTRA
425 425
426AC_PATH_TOOL(PKG_CONFIG, pkg-config, no)
427
426image_lib=none 428image_lib=none
427 429
428PIXBUF_CFLAGS= 430PIXBUF_CFLAGS=
429PIXBUF_LIBS= 431PIXBUF_LIBS=
430 432
431if test x$support_pixbuf = xyes; then 433if test x$support_pixbuf = xyes; then
432 support_pixbuf=no 434 RXVT_CHECK_MODULES([PIXBUF], [gdk-pixbuf-2.0], [
433 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
434 AC_MSG_CHECKING(for gdk-pixbuf)
435 if test $PKG_CONFIG != no && $PKG_CONFIG --exists gdk-pixbuf-2.0; then
436 PIXBUF_CFLAGS="`$PKG_CONFIG gdk-pixbuf-2.0 --cflags`"
437 PIXBUF_LIBS="`$PKG_CONFIG gdk-pixbuf-2.0 --libs`"
438 support_pixbuf=yes
439 fi
440
441 if test x$support_pixbuf = xyes; then
442 AC_MSG_RESULT(ok)
443 image_lib=gdk-pixbuf 435 image_lib=gdk-pixbuf
444 AC_DEFINE(HAVE_PIXBUF, 1, Define if you want to use gdk-pixbuf for image processing) 436 AC_DEFINE(HAVE_PIXBUF, 1, Define if you want to use gdk-pixbuf for image processing)
445 AC_DEFINE(BG_IMAGE_FROM_FILE, 1, Define if you want to have sexy-looking background pixmaps.) 437 ], [:])
446 else
447 AC_MSG_RESULT(no)
448 fi
449fi 438fi
450 439
451AC_SUBST(PIXBUF_CFLAGS) 440AC_SUBST(PIXBUF_CFLAGS)
452AC_SUBST(PIXBUF_LIBS) 441AC_SUBST(PIXBUF_LIBS)
453 442
454STARTUP_NOTIFICATION_CFLAGS= 443STARTUP_NOTIFICATION_CFLAGS=
455STARTUP_NOTIFICATION_LIBS= 444STARTUP_NOTIFICATION_LIBS=
456 445
457if test x$support_startup_notification = xyes; then 446if test x$support_startup_notification = xyes; then
458 support_startup_notification=no 447 RXVT_CHECK_MODULES([STARTUP_NOTIFICATION], [libstartup-notification-1.0], [
459 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
460 AC_MSG_CHECKING(for libstartup-notification)
461 if test $PKG_CONFIG != no && $PKG_CONFIG --exists libstartup-notification-1.0; then
462 STARTUP_NOTIFICATION_CFLAGS="`$PKG_CONFIG libstartup-notification-1.0 --cflags`"
463 STARTUP_NOTIFICATION_LIBS="`$PKG_CONFIG libstartup-notification-1.0 --libs`"
464 support_startup_notification=yes
465 fi
466
467 if test x$support_startup_notification = xyes; then
468 AC_MSG_RESULT(ok)
469 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, Define if freedesktop startup notifications should be supported) 448 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, Define if freedesktop startup notifications should be supported)
470 else 449 ], [:])
471 AC_MSG_RESULT(no)
472 fi
473fi 450fi
474 451
475AC_SUBST(STARTUP_NOTIFICATION_CFLAGS) 452AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
476AC_SUBST(STARTUP_NOTIFICATION_LIBS) 453AC_SUBST(STARTUP_NOTIFICATION_LIBS)
454
455if test x$support_frills = xyes; then
456 RXVT_CHECK_MODULES([XMU], [xmu], [
457 X_LIBS="$XMU_LIBS $X_LIBS"
458 CPPFLAGS="$CPPFLAGS $XMU_CFLAGS"
459 AC_DEFINE(HAVE_XMU, 1, Define to enable Xmu support)
460 ], [:])
461fi
477 462
478dnl# -------------------------------------------------------------------------- 463dnl# --------------------------------------------------------------------------
479dnl# CHECKING FOR HEADER FILES 464dnl# CHECKING FOR HEADER FILES
480dnl# -------------------------------------------------------------------------- 465dnl# --------------------------------------------------------------------------
481AC_CHECK_HEADERS( \ 466AC_CHECK_HEADERS( \
526dnl# -------------------------------------------------------------------------- 511dnl# --------------------------------------------------------------------------
527dnl# -------------------------------------------------------------------------- 512dnl# --------------------------------------------------------------------------
528 513
529dnl# this is a really hack test for some basic Xlocale stuff 514dnl# this is a really hack test for some basic Xlocale stuff
530save_LIBS=$LIBS 515save_LIBS=$LIBS
531save_CFLAGS=$CFLAGS 516save_CXXFLAGS=$CXXFLAGS
532CFLAGS="$CFLAGS $X_CFLAGS" 517CXXFLAGS="$CXXFLAGS $X_CFLAGS"
533LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" 518LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
534if test x$support_xim = xyes; then 519if test x$support_xim = xyes; then
535 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale, 520 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
536 [AC_RUN_IFELSE([AC_LANG_SOURCE([[ 521 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
537 #include <X11/Xlib.h> 522 #include <X11/Xlib.h>
569#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])]) 554#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])])
570if test x$rxvt_cv_func_xsetlocale = xyes; then 555if test x$rxvt_cv_func_xsetlocale = xyes; then
571 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works) 556 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works)
572fi 557fi
573LIBS=$save_LIBS 558LIBS=$save_LIBS
574CFLAGS=$save_CFLAGS 559CXXFLAGS=$save_CXXFLAGS
575 560
576AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo, 561AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo,
577[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])]) 562[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])])
578if test x$rxvt_cv_func_nl_langinfo = xyes; then 563if test x$rxvt_cv_func_nl_langinfo = xyes; then
579 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 564 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
586TTY_GROUP_CHECK 571TTY_GROUP_CHECK
587 572
588dnl# -------------------------------------------------------------------------- 573dnl# --------------------------------------------------------------------------
589dnl# now add and remove other stuff 574dnl# now add and remove other stuff
590dnl# -------------------------------------------------------------------------- 575dnl# --------------------------------------------------------------------------
576support_image=no
577if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then
578 support_image=yes
579fi
591if test x$support_xft = xyes || test x$support_inheritpixmap = xyes; then 580if test x$support_xft = xyes || test x$support_image = xyes; then
592 rxvt_have_xrender=no 581 rxvt_have_xrender=no
593 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 582 RXVT_CHECK_MODULES([XRENDER], [xrender], [
594 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xrender; then 583 X_LIBS="$XRENDER_LIBS $X_LIBS"
595 X_LIBS="`$PKG_CONFIG xrender --libs` $X_LIBS" 584 CPPFLAGS="$CPPFLAGS $XRENDER_CFLAGS"
596 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xrender --cflags`"
597 rxvt_have_xrender=yes 585 rxvt_have_xrender=yes
598 586
599 save_LIBS="$LIBS" 587 save_LIBS="$LIBS"
600 LIBS="$LIBS $X_LIBS" 588 LIBS="$LIBS $X_LIBS"
601 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no]) 589 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no])
602 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no]) 590 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no])
603 LIBS="$save_LIBS" 591 LIBS="$save_LIBS"
604 fi 592 ], [:])
605fi 593fi
606 594
607if test x$support_xft = xyes && test x$rxvt_have_xrender = xyes; then 595if test x$support_xft = xyes && test x$rxvt_have_xrender = xyes; then
608 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 596 RXVT_CHECK_MODULES([XFT], [fontconfig xft], [
609 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then 597 X_LIBS="$XFT_LIBS $X_LIBS"
610 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS" 598 CPPFLAGS="$CPPFLAGS $XFT_CFLAGS"
611 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`" 599 ], [
612 else
613 AC_PATH_PROG(XFT_CONFIG, xft-config, no) 600 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
614 if test $XFT_CONFIG != no; then 601 if test $XFT_CONFIG != no; then
615 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS" 602 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
616 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`" 603 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
617 fi 604 fi
618 fi 605 ])
619
620 if test $PKG_CONFIG != no && $PKG_CONFIG --exists fontconfig; then
621 X_LIBS="`$PKG_CONFIG fontconfig --libs` $X_LIBS"
622 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG fontconfig --cflags`"
623 fi
624 606
625 save_LIBS="$LIBS" 607 save_LIBS="$LIBS"
626 LIBS="$LIBS $X_LIBS" 608 LIBS="$LIBS $X_LIBS"
627 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
628 AC_CHECK_LIB(Xft,XftDrawString32,:,[support_xft=no])
629 AC_CHECK_HEADERS(fontconfig/fontconfig.h,,[support_xft=no]) 609 AC_CHECK_HEADERS(X11/Xft/Xft.h fontconfig/fontconfig.h,,[support_xft=no])
630 AC_CHECK_LIB(fontconfig,FcPatternGet,:,[support_xft=no]) 610 AC_CHECK_FUNCS(XftDrawString32 FcPatternGet,,[support_xft=no])
631 LIBS="$save_LIBS" 611 LIBS="$save_LIBS"
632 612
633 if test x$support_xft = xyes; then 613 if test x$support_xft = xyes; then
634 AC_DEFINE(XFT, 1, Define to enable xft support) 614 AC_DEFINE(XFT, 1, Define to enable xft support)
635 fi 615 fi
636fi 616fi
617
618if test x$support_image = xyes && test x$rxvt_have_xrender = xyes; then
619 AC_MSG_CHECKING(for Render >= 0.11)
620 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
621#include <X11/extensions/Xrender.h>
622#if RENDER_MAJOR == 0 && RENDER_MINOR <= 10
623error
624#endif
625]])],[],[support_image=no])
626 if test x$support_image = xyes; then
627 AC_MSG_RESULT(ok)
628 LIBS="$LIBS -lm"
629 AC_DEFINE(XRENDER, 1, Define to enable xrender support)
630
631 if test x$support_inheritpixmap = xyes; then
632 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background)
633 fi
634 else
635 AC_MSG_RESULT(no)
636 fi
637fi
638
637if test x$support_styles = xyes; then 639if test x$support_styles = xyes; then
638 AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support) 640 AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support)
639fi 641fi
640if test x$support_iso14755 = xyes; then 642if test x$support_iso14755 = xyes; then
641 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support) 643 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support)
643if test x$support_8bitctrls = xyes; then 645if test x$support_8bitctrls = xyes; then
644 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences) 646 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
645fi 647fi
646if test x$support_fading = xyes; then 648if test x$support_fading = xyes; then
647 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost) 649 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost)
648fi
649if test x$support_inheritpixmap = xyes; then
650 if test x$rxvt_have_xrender = xyes; then
651 LIBS="$LIBS -lm"
652 AC_DEFINE(XRENDER, 1, Define to enable xrender support)
653 fi
654 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background)
655fi 650fi
656if test x$support_keepscrolling = xno; then 651if test x$support_keepscrolling = xno; then
657 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed) 652 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
658fi 653fi
659if test x$support_selectionscrolling = xyes; then 654if test x$support_selectionscrolling = xyes; then

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines