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.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
426image_lib=none 437image_lib=none
427 438
428PIXBUF_CFLAGS= 439PIXBUF_CFLAGS=
429PIXBUF_LIBS= 440PIXBUF_LIBS=
430 441
431if test x$support_pixbuf = xyes; then 442if test x$support_pixbuf = xyes; then
432 support_pixbuf=no 443 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 444 image_lib=gdk-pixbuf
444 AC_DEFINE(HAVE_PIXBUF, 1, Define if you want to use gdk-pixbuf for image processing) 445 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.) 446 ], [:])
446 else
447 AC_MSG_RESULT(no)
448 fi
449fi 447fi
450 448
451AC_SUBST(PIXBUF_CFLAGS) 449AC_SUBST(PIXBUF_CFLAGS)
452AC_SUBST(PIXBUF_LIBS) 450AC_SUBST(PIXBUF_LIBS)
453 451
454STARTUP_NOTIFICATION_CFLAGS= 452STARTUP_NOTIFICATION_CFLAGS=
455STARTUP_NOTIFICATION_LIBS= 453STARTUP_NOTIFICATION_LIBS=
456 454
457if test x$support_startup_notification = xyes; then 455if test x$support_startup_notification = xyes; then
458 support_startup_notification=no 456 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) 457 AC_DEFINE(HAVE_STARTUP_NOTIFICATION, 1, Define if freedesktop startup notifications should be supported)
470 else 458 ], [:])
471 AC_MSG_RESULT(no)
472 fi
473fi 459fi
474 460
475AC_SUBST(STARTUP_NOTIFICATION_CFLAGS) 461AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
476AC_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
477 471
478dnl# -------------------------------------------------------------------------- 472dnl# --------------------------------------------------------------------------
479dnl# CHECKING FOR HEADER FILES 473dnl# CHECKING FOR HEADER FILES
480dnl# -------------------------------------------------------------------------- 474dnl# --------------------------------------------------------------------------
481AC_CHECK_HEADERS( \ 475AC_CHECK_HEADERS( \
526dnl# -------------------------------------------------------------------------- 520dnl# --------------------------------------------------------------------------
527dnl# -------------------------------------------------------------------------- 521dnl# --------------------------------------------------------------------------
528 522
529dnl# this is a really hack test for some basic Xlocale stuff 523dnl# this is a really hack test for some basic Xlocale stuff
530save_LIBS=$LIBS 524save_LIBS=$LIBS
531save_CFLAGS=$CFLAGS 525save_CXXFLAGS=$CXXFLAGS
532CFLAGS="$CFLAGS $X_CFLAGS" 526CXXFLAGS="$CXXFLAGS $X_CFLAGS"
533LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" 527LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
534if test x$support_xim = xyes; then 528if test x$support_xim = xyes; then
535 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale, 529 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
536 [AC_RUN_IFELSE([AC_LANG_SOURCE([[ 530 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
537 #include <X11/Xlib.h> 531 #include <X11/Xlib.h>
569#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])])
570if test x$rxvt_cv_func_xsetlocale = xyes; then 564if test x$rxvt_cv_func_xsetlocale = xyes; then
571 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)
572fi 566fi
573LIBS=$save_LIBS 567LIBS=$save_LIBS
574CFLAGS=$save_CFLAGS 568CXXFLAGS=$save_CXXFLAGS
575 569
576AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo, 570AC_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])]) 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])])
578if test x$rxvt_cv_func_nl_langinfo = xyes; then 572if test x$rxvt_cv_func_nl_langinfo = xyes; then
579 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)
586TTY_GROUP_CHECK 580TTY_GROUP_CHECK
587 581
588dnl# -------------------------------------------------------------------------- 582dnl# --------------------------------------------------------------------------
589dnl# now add and remove other stuff 583dnl# now add and remove other stuff
590dnl# -------------------------------------------------------------------------- 584dnl# --------------------------------------------------------------------------
585support_image=no
586if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then
587 support_image=yes
588fi
591if test x$support_xft = xyes || test x$support_inheritpixmap = xyes; then 589if test x$support_xft = xyes || test x$support_image = xyes; then
592 rxvt_have_xrender=no 590 rxvt_have_xrender=no
593 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 591 RXVT_CHECK_MODULES([XRENDER], [xrender], [
594 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xrender; then 592 X_LIBS="$XRENDER_LIBS $X_LIBS"
595 X_LIBS="`$PKG_CONFIG xrender --libs` $X_LIBS" 593 CPPFLAGS="$CPPFLAGS $XRENDER_CFLAGS"
596 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xrender --cflags`"
597 rxvt_have_xrender=yes 594 rxvt_have_xrender=yes
598 595
599 save_LIBS="$LIBS" 596 save_LIBS="$LIBS"
600 LIBS="$LIBS $X_LIBS" 597 LIBS="$LIBS $X_LIBS"
601 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no]) 598 AC_CHECK_HEADER(X11/extensions/Xrender.h,,[rxvt_have_xrender=no])
602 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no]) 599 AC_CHECK_FUNC(XRenderFindStandardFormat,,[rxvt_have_xrender=no])
603 LIBS="$save_LIBS" 600 LIBS="$save_LIBS"
604 fi 601 ], [:])
605fi 602fi
606 603
607if 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
608 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 605 RXVT_CHECK_MODULES([XFT], [fontconfig xft], [
609 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then 606 X_LIBS="$XFT_LIBS $X_LIBS"
610 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS" 607 CPPFLAGS="$CPPFLAGS $XFT_CFLAGS"
611 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`" 608 ], [
612 else
613 AC_PATH_PROG(XFT_CONFIG, xft-config, no) 609 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
614 if test $XFT_CONFIG != no; then 610 if test $XFT_CONFIG != no; then
615 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS" 611 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
616 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`" 612 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
617 fi 613 fi
618 fi 614 ])
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 615
625 save_LIBS="$LIBS" 616 save_LIBS="$LIBS"
626 LIBS="$LIBS $X_LIBS" 617 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]) 618 AC_CHECK_HEADERS(X11/Xft/Xft.h fontconfig/fontconfig.h,,[support_xft=no])
630 AC_CHECK_LIB(fontconfig,FcPatternGet,:,[support_xft=no]) 619 AC_CHECK_FUNCS(XftDrawString32 FcPatternGet,,[support_xft=no])
631 LIBS="$save_LIBS" 620 LIBS="$save_LIBS"
632 621
633 if test x$support_xft = xyes; then 622 if test x$support_xft = xyes; then
634 AC_DEFINE(XFT, 1, Define to enable xft support) 623 AC_DEFINE(XFT, 1, Define to enable xft support)
635 fi 624 fi
636fi 625fi
626
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)
637 LIBS="$LIBS -lm"
638 AC_DEFINE(XRENDER, 1, Define to enable xrender support)
639
640 if test x$support_inheritpixmap = xyes; then
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)
645 fi
646fi
647
637if test x$support_styles = xyes; then 648if test x$support_styles = xyes; then
638 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)
639fi 650fi
640if test x$support_iso14755 = xyes; then 651if test x$support_iso14755 = xyes; then
641 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support) 652 AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support)
643if test x$support_8bitctrls = xyes; then 654if test x$support_8bitctrls = xyes; then
644 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences) 655 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
645fi 656fi
646if test x$support_fading = xyes; then 657if test x$support_fading = xyes; then
647 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost) 658 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 659fi
656if test x$support_keepscrolling = xno; then 660if 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) 661 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
658fi 662fi
659if test x$support_selectionscrolling = xyes; then 663if test x$support_selectionscrolling = xyes; then

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines