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.143 by sf-exg, Sun Jun 10 13:07:56 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
428image_lib=none
429
430PIXBUF_CFLAGS=
431PIXBUF_LIBS=
432
433if test x$support_pixbuf = xyes; then
434 RXVT_CHECK_MODULES([PIXBUF], [gdk-pixbuf-2.0], [
435 image_lib=gdk-pixbuf
436 AC_DEFINE(HAVE_PIXBUF, 1, Define if you want to use gdk-pixbuf for image processing)
437 ], [:])
438fi
439
440AC_SUBST(PIXBUF_CFLAGS)
441AC_SUBST(PIXBUF_LIBS)
442
426STARTUP_NOTIFICATION_CFLAGS= 443STARTUP_NOTIFICATION_CFLAGS=
427STARTUP_NOTIFICATION_LIBS= 444STARTUP_NOTIFICATION_LIBS=
428 445
429if test x$support_startup_notification = xyes; then 446if test x$support_startup_notification = xyes; then
430 support_startup_notification=no 447 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) 448 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, Define if freedesktop startup notifications should be supported)
442 else 449 ], [:])
443 AC_MSG_RESULT(no)
444 fi
445fi 450fi
446 451
447AC_SUBST(STARTUP_NOTIFICATION_CFLAGS) 452AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
448AC_SUBST(STARTUP_NOTIFICATION_LIBS) 453AC_SUBST(STARTUP_NOTIFICATION_LIBS)
449 454
498dnl# -------------------------------------------------------------------------- 503dnl# --------------------------------------------------------------------------
499dnl# -------------------------------------------------------------------------- 504dnl# --------------------------------------------------------------------------
500 505
501dnl# this is a really hack test for some basic Xlocale stuff 506dnl# this is a really hack test for some basic Xlocale stuff
502save_LIBS=$LIBS 507save_LIBS=$LIBS
503save_CFLAGS=$CFLAGS 508save_CXXFLAGS=$CXXFLAGS
504CFLAGS="$CFLAGS $X_CFLAGS" 509CXXFLAGS="$CXXFLAGS $X_CFLAGS"
505LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" 510LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
506if test x$support_xim = xyes; then 511if test x$support_xim = xyes; then
507 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale, 512 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
508 [AC_RUN_IFELSE([AC_LANG_SOURCE([[ 513 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
509 #include <X11/Xlib.h> 514 #include <X11/Xlib.h>
541#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])])
542if test x$rxvt_cv_func_xsetlocale = xyes; then 547if test x$rxvt_cv_func_xsetlocale = xyes; then
543 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)
544fi 549fi
545LIBS=$save_LIBS 550LIBS=$save_LIBS
546CFLAGS=$save_CFLAGS 551CXXFLAGS=$save_CXXFLAGS
547 552
548AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo, 553AC_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])]) 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])])
550if test x$rxvt_cv_func_nl_langinfo = xyes; then 555if test x$rxvt_cv_func_nl_langinfo = xyes; then
551 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)
564if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then 569if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then
565 support_image=yes 570 support_image=yes
566fi 571fi
567if test x$support_xft = xyes || test x$support_image = xyes; then 572if test x$support_xft = xyes || test x$support_image = xyes; then
568 rxvt_have_xrender=no 573 rxvt_have_xrender=no
569 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 574 RXVT_CHECK_MODULES([XRENDER], [xrender], [
570 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xrender; then 575 X_LIBS="$XRENDER_LIBS $X_LIBS"
571 X_LIBS="`$PKG_CONFIG xrender --libs` $X_LIBS" 576 CPPFLAGS="$CPPFLAGS $XRENDER_CFLAGS"
572 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xrender --cflags`"
573 rxvt_have_xrender=yes 577 rxvt_have_xrender=yes
574 578
575 save_LIBS="$LIBS" 579 save_LIBS="$LIBS"
576 LIBS="$LIBS $X_LIBS" 580 LIBS="$LIBS $X_LIBS"
577 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no]) 581 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no])
578 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no]) 582 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no])
579 LIBS="$save_LIBS" 583 LIBS="$save_LIBS"
580 fi 584 ], [:])
581fi 585fi
582 586
583if 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
584 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 588 RXVT_CHECK_MODULES([XFT], [fontconfig xft], [
585 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then 589 X_LIBS="$XFT_LIBS $X_LIBS"
586 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS" 590 CPPFLAGS="$CPPFLAGS $XFT_CFLAGS"
587 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`" 591 ], [
588 else
589 AC_PATH_PROG(XFT_CONFIG, xft-config, no) 592 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
590 if test $XFT_CONFIG != no; then 593 if test $XFT_CONFIG != no; then
591 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS" 594 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
592 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`" 595 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
593 fi 596 fi
594 fi 597 ])
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 598
601 save_LIBS="$LIBS" 599 save_LIBS="$LIBS"
602 LIBS="$LIBS $X_LIBS" 600 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]) 601 AC_CHECK_HEADERS(X11/Xft/Xft.h fontconfig/fontconfig.h,,[support_xft=no])
606 AC_CHECK_LIB(fontconfig,FcPatternGet,:,[support_xft=no]) 602 AC_CHECK_FUNCS(XftDrawString32 FcPatternGet,,[support_xft=no])
607 LIBS="$save_LIBS" 603 LIBS="$save_LIBS"
608 604
609 if test x$support_xft = xyes; then 605 if test x$support_xft = xyes; then
610 AC_DEFINE(XFT, 1, Define to enable xft support) 606 AC_DEFINE(XFT, 1, Define to enable xft support)
611 fi 607 fi
612fi 608fi
613 609
614image_lib=none
615
616PIXBUF_CFLAGS=
617PIXBUF_LIBS=
618
619if test x$support_image = xyes && test x$rxvt_have_xrender = xyes; then 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" 620 LIBS="$LIBS -lm"
621 AC_DEFINE(XRENDER, 1, Define to enable xrender support) 621 AC_DEFINE(XRENDER, 1, Define to enable xrender support)
622 622
623 if test x$support_inheritpixmap = xyes; then 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) 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)
625 fi 628 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 629fi
647
648AC_SUBST(PIXBUF_CFLAGS)
649AC_SUBST(PIXBUF_LIBS)
650 630
651if test x$support_styles = xyes; then 631if test x$support_styles = xyes; then
652 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)
653fi 633fi
654if test x$support_iso14755 = xyes; then 634if test x$support_iso14755 = xyes; then

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines