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.152 by sf-exg, Tue Jun 16 11:56:37 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)
477 454
526dnl# -------------------------------------------------------------------------- 503dnl# --------------------------------------------------------------------------
527dnl# -------------------------------------------------------------------------- 504dnl# --------------------------------------------------------------------------
528 505
529dnl# this is a really hack test for some basic Xlocale stuff 506dnl# this is a really hack test for some basic Xlocale stuff
530save_LIBS=$LIBS 507save_LIBS=$LIBS
531save_CFLAGS=$CFLAGS 508save_CXXFLAGS=$CXXFLAGS
532CFLAGS="$CFLAGS $X_CFLAGS" 509CXXFLAGS="$CXXFLAGS $X_CFLAGS"
533LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" 510LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
534if test x$support_xim = xyes; then 511if test x$support_xim = xyes; then
535 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale, 512 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
536 [AC_RUN_IFELSE([AC_LANG_SOURCE([[ 513 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
537 #include <X11/Xlib.h> 514 #include <X11/Xlib.h>
569#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])]) 546#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 547if test x$rxvt_cv_func_xsetlocale = xyes; then
571 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works) 548 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works)
572fi 549fi
573LIBS=$save_LIBS 550LIBS=$save_LIBS
574CFLAGS=$save_CFLAGS 551CXXFLAGS=$save_CXXFLAGS
575 552
576AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo, 553AC_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])]) 554[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 555if test x$rxvt_cv_func_nl_langinfo = xyes; then
579 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 556 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
586TTY_GROUP_CHECK 563TTY_GROUP_CHECK
587 564
588dnl# -------------------------------------------------------------------------- 565dnl# --------------------------------------------------------------------------
589dnl# now add and remove other stuff 566dnl# now add and remove other stuff
590dnl# -------------------------------------------------------------------------- 567dnl# --------------------------------------------------------------------------
568support_image=no
569if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then
570 support_image=yes
571fi
591if test x$support_xft = xyes || test x$support_inheritpixmap = xyes; then 572if test x$support_xft = xyes || test x$support_image = xyes; then
592 rxvt_have_xrender=no 573 rxvt_have_xrender=no
593 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 574 RXVT_CHECK_MODULES([XRENDER], [xrender], [
594 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xrender; then 575 X_LIBS="$XRENDER_LIBS $X_LIBS"
595 X_LIBS="`$PKG_CONFIG xrender --libs` $X_LIBS" 576 CPPFLAGS="$CPPFLAGS $XRENDER_CFLAGS"
596 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xrender --cflags`"
597 rxvt_have_xrender=yes 577 rxvt_have_xrender=yes
598 578
599 save_LIBS="$LIBS" 579 save_LIBS="$LIBS"
600 LIBS="$LIBS $X_LIBS" 580 LIBS="$LIBS $X_LIBS"
601 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no]) 581 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no])
602 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no]) 582 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no])
603 LIBS="$save_LIBS" 583 LIBS="$save_LIBS"
604 fi 584 ], [:])
605fi 585fi
606 586
607if test x$support_xft = xyes && test x$rxvt_have_xrender = xyes; then 587if test x$support_xft = xyes && test x$rxvt_have_xrender = xyes; then
608 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 588 RXVT_CHECK_MODULES([XFT], [fontconfig xft], [
609 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then 589 X_LIBS="$XFT_LIBS $X_LIBS"
610 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS" 590 CPPFLAGS="$CPPFLAGS $XFT_CFLAGS"
611 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`" 591 ], [
612 else
613 AC_PATH_PROG(XFT_CONFIG, xft-config, no) 592 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
614 if test $XFT_CONFIG != no; then 593 if test $XFT_CONFIG != no; then
615 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS" 594 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
616 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`" 595 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
617 fi 596 fi
618 fi 597 ])
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 598
625 save_LIBS="$LIBS" 599 save_LIBS="$LIBS"
626 LIBS="$LIBS $X_LIBS" 600 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]) 601 AC_CHECK_HEADERS(X11/Xft/Xft.h fontconfig/fontconfig.h,,[support_xft=no])
630 AC_CHECK_LIB(fontconfig,FcPatternGet,:,[support_xft=no]) 602 AC_CHECK_FUNCS(XftDrawString32 FcPatternGet,,[support_xft=no])
631 LIBS="$save_LIBS" 603 LIBS="$save_LIBS"
632 604
633 if test x$support_xft = xyes; then 605 if test x$support_xft = xyes; then
634 AC_DEFINE(XFT, 1, Define to enable xft support) 606 AC_DEFINE(XFT, 1, Define to enable xft support)
635 fi 607 fi
636fi 608fi
609
610if test x$support_image = xyes && test x$rxvt_have_xrender = xyes; then
611 AC_MSG_CHECKING(for Render >= 0.11)
612 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
613#include <X11/extensions/Xrender.h>
614#if RENDER_MAJOR == 0 && RENDER_MINOR <= 10
615error
616#endif
617]])],[],[support_image=no])
618 if test x$support_image = xyes; then
619 AC_MSG_RESULT(ok)
620 LIBS="$LIBS -lm"
621 AC_DEFINE(XRENDER, 1, Define to enable xrender support)
622
623 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)
625 fi
626 else
627 AC_MSG_RESULT(no)
628 fi
629fi
630
637if test x$support_styles = xyes; then 631if test x$support_styles = xyes; then
638 AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support) 632 AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support)
639fi 633fi
640if test x$support_iso14755 = xyes; then 634if test x$support_iso14755 = xyes; then
641 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support) 635 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support)
643if test x$support_8bitctrls = xyes; then 637if test x$support_8bitctrls = xyes; then
644 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences) 638 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
645fi 639fi
646if test x$support_fading = xyes; then 640if test x$support_fading = xyes; then
647 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost) 641 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 642fi
656if test x$support_keepscrolling = xno; then 643if 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) 644 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
658fi 645fi
659if test x$support_selectionscrolling = xyes; then 646if test x$support_selectionscrolling = xyes; then

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines