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.153 by sf-exg, Tue Jun 16 11:58:26 2015 UTC vs.
Revision 1.157 by sf-exg, Fri Jul 23 19:18:52 2021 UTC

1dnl# 1dnl#
2dnl# Process this file with autoconf to produce a configure script. 2dnl# Process this file with autoconf to produce a configure script.
3dnl# 3dnl#
4 4
5AC_INIT 5AC_INIT
6AC_PREREQ(2.50) 6AC_PREREQ(2.71)
7AC_CONFIG_SRCDIR([src/feature.h]) 7AC_CONFIG_SRCDIR([src/feature.h])
8AC_CONFIG_HEADER(config.h:config.h.in) 8AC_CONFIG_HEADERS(config.h:config.h.in)
9 9
10AC_CANONICAL_HOST 10AC_CANONICAL_HOST
11 11
12dnl RXVT version 12dnl RXVT version
13changequote(, )dnl 13changequote(, )dnl
26dnl# Checks for programs. 26dnl# Checks for programs.
27AC_PROG_CC 27AC_PROG_CC
28AC_PROG_CXX 28AC_PROG_CXX
29AC_PROG_INSTALL 29AC_PROG_INSTALL
30 30
31AC_AIX 31AC_USE_SYSTEM_EXTENSIONS
32AC_GNU_SOURCE
33AC_ISC_POSIX
34AC_LANG(C++) 32AC_LANG(C++)
33
34if test "$ac_prog_cxx_stdcxx" != cxx11; then
35 AC_MSG_ERROR([the compiler does not support C++11])
36fi
35 37
36LINKER="$CXX" 38LINKER="$CXX"
37dnl check whether we can link with gcc -lsupc++ 39dnl check whether we can link with gcc -lsupc++
38if test x$GCC = xyes && test x$GXX = xyes; then 40if test x$GCC = xyes && test x$GXX = xyes; then
39 dnl FreeBSD (at least up to 5.3) has a broken GCC, workaround it 41 dnl FreeBSD (at least up to 5.3) has a broken GCC, workaround it
293 [ --disable-delete-key disable handling of the delete key], 295 [ --disable-delete-key disable handling of the delete key],
294 [if test x$enableval = xno; then 296 [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) 297 AC_DEFINE(NO_DELETE_KEY, 1, Define if you don't want support for the (non-keypad) delete key)
296 fi]) 298 fi])
297 299
300support_resources=yes
298AC_ARG_ENABLE(resources, 301AC_ARG_ENABLE(resources,
299 [ --disable-resources disable all resource checking], 302 [ --disable-resources disable all resource checking],
300 [if test x$enableval = xno; then 303 [if test x$enableval = xno; then
301 AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read) 304 support_resources=no
302 fi]) 305 fi])
303 306
304AC_ARG_ENABLE(8bitctrls, 307AC_ARG_ENABLE(8bitctrls,
305 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)], 308 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)],
306 [if test x$enableval = xyes -o x$enableval = xno; then 309 [if test x$enableval = xyes -o x$enableval = xno; then
410 [ --with-terminfo=PATH set the path to the terminfo tree to PATH], 413 [ --with-terminfo=PATH set the path to the terminfo tree to PATH],
411 [if test x$withval != x; then 414 [if test x$withval != x; then
412 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval" 415 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval"
413 fi]) 416 fi])
414 417
418if test x$support_resources = xno; then
419 if test x$support_frills = xyes || test x$support_perl = xyes; then
420 AC_MSG_ERROR([--disable-resources requires --disable-frills --disable-perl])
421 fi
422
423 AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read)
424fi
425
415dnl# -------------------------------------------------------------------------- 426dnl# --------------------------------------------------------------------------
416 427
417LIBEV_M4_AVOID_LIBRT=1 428LIBEV_M4_AVOID_LIBRT=1
418m4_include([libev/libev.m4]) 429m4_include([libev/libev.m4])
419 430
422AC_PATH_PROG(TIC, tic, :) 433AC_PATH_PROG(TIC, tic, :)
423 434
424AC_PATH_XTRA 435AC_PATH_XTRA
425 436
426AC_PATH_TOOL(PKG_CONFIG, pkg-config, no) 437AC_PATH_TOOL(PKG_CONFIG, pkg-config, no)
438
439RXVT_CHECK_MODULES([PTYTTY], [libptytty], [:], [
440 AC_MSG_ERROR([unable to find libptytty])
441])
442
443AC_SUBST(PTYTTY_CFLAGS)
444AC_SUBST(PTYTTY_LIBS)
427 445
428image_lib=none 446image_lib=none
429 447
430PIXBUF_CFLAGS= 448PIXBUF_CFLAGS=
431PIXBUF_LIBS= 449PIXBUF_LIBS=
501 519
502dnl# -------------------------------------------------------------------------- 520dnl# --------------------------------------------------------------------------
503dnl# CHECKING FOR LIBRARY FUNCTIONS 521dnl# CHECKING FOR LIBRARY FUNCTIONS
504dnl# -------------------------------------------------------------------------- 522dnl# --------------------------------------------------------------------------
505AC_CHECK_FUNCS(unsetenv) 523AC_CHECK_FUNCS(unsetenv)
506
507UTMP_CHECK
508 524
509dnl# -------------------------------------------------------------------------- 525dnl# --------------------------------------------------------------------------
510 526
511dnl# -------------------------------------------------------------------------- 527dnl# --------------------------------------------------------------------------
512dnl# -------------------------------------------------------------------------- 528dnl# --------------------------------------------------------------------------
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])]) 578[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])])
563if test x$rxvt_cv_func_nl_langinfo = xyes; then 579if test x$rxvt_cv_func_nl_langinfo = xyes; then
564 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 580 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
565fi 581fi
566 582
567SCM_RIGHTS_CHECK
568
569PTY_CHECK
570
571TTY_GROUP_CHECK
572
573dnl# -------------------------------------------------------------------------- 583dnl# --------------------------------------------------------------------------
574dnl# now add and remove other stuff 584dnl# now add and remove other stuff
575dnl# -------------------------------------------------------------------------- 585dnl# --------------------------------------------------------------------------
576support_image=no 586support_image=no
577if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then 587if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines