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.152 by sf-exg, Tue Jun 16 11:56:37 2015 UTC vs.
Revision 1.162 by root, Mon Jan 2 17:12:43 2023 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
10AC_CANONICAL_HOST
11 9
12dnl RXVT version 10dnl RXVT version
13changequote(, )dnl
14VERSION=`sed -n -e 's/^.* VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 11VERSION=`sed -n -e 's/^.* VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
15DATE=`sed -n -e 's/^.* DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 12DATE=`sed -n -e 's/^.* DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
16changequote([, ])dnl
17AC_SUBST(VERSION)dnl 13AC_SUBST(VERSION)dnl
18AC_SUBST(DATE)dnl 14AC_SUBST(DATE)dnl
19 15
20echo "" 16echo ""
21echo "configuring for rxvt $VERSION" 17echo "configuring for rxvt $VERSION"
26dnl# Checks for programs. 22dnl# Checks for programs.
27AC_PROG_CC 23AC_PROG_CC
28AC_PROG_CXX 24AC_PROG_CXX
29AC_PROG_INSTALL 25AC_PROG_INSTALL
30 26
31AC_AIX 27AC_USE_SYSTEM_EXTENSIONS
32AC_GNU_SOURCE
33AC_ISC_POSIX
34AC_LANG(C++) 28AC_LANG(C++)
35 29
36LINKER="$CXX" 30LINKER="$CXX"
37dnl check whether we can link with gcc -lsupc++ 31dnl check whether we can link with gcc -lsupc++
38if test x$GCC = xyes && test x$GXX = xyes; then 32if test x$GCC = xyes && test x$GXX = xyes; then
111 support_frills=no 105 support_frills=no
112 support_inheritpixmap=no 106 support_inheritpixmap=no
113 support_fading=no 107 support_fading=no
114 support_keepscrolling=no 108 support_keepscrolling=no
115 support_selectionscrolling=no 109 support_selectionscrolling=no
116 support_lastlog=no
117 support_mousewheel=no 110 support_mousewheel=no
118 support_mouseslipwheel=no 111 support_mouseslipwheel=no
119 support_text_blink=no 112 support_text_blink=no
120 support_pointer_blank=no 113 support_pointer_blank=no
121 support_scroll_rxvt=no 114 support_scroll_rxvt=no
122 support_scroll_next=no 115 support_scroll_next=no
123 support_scroll_xterm=no 116 support_scroll_xterm=no
124 support_utmp=no
125 support_wtmp=no
126 support_xim=no 117 support_xim=no
127 support_pixbuf=no 118 support_pixbuf=no
128 support_startup_notification=no 119 support_startup_notification=no
129 support_xft=no 120 support_xft=no
130 support_unicode3=no 121 support_unicode3=no
139 support_frills=yes 130 support_frills=yes
140 support_inheritpixmap=yes 131 support_inheritpixmap=yes
141 support_fading=yes 132 support_fading=yes
142 support_keepscrolling=yes 133 support_keepscrolling=yes
143 support_selectionscrolling=yes 134 support_selectionscrolling=yes
144 support_lastlog=yes
145 support_mousewheel=yes 135 support_mousewheel=yes
146 support_mouseslipwheel=yes 136 support_mouseslipwheel=yes
147 support_text_blink=yes 137 support_text_blink=yes
148 support_pointer_blank=yes 138 support_pointer_blank=yes
149 support_scroll_rxvt=yes 139 support_scroll_rxvt=yes
150 support_scroll_next=yes 140 support_scroll_next=yes
151 support_scroll_xterm=yes 141 support_scroll_xterm=yes
152 support_utmp=yes
153 support_wtmp=yes
154 support_xim=yes 142 support_xim=yes
155 support_pixbuf=yes 143 support_pixbuf=yes
156 support_startup_notification=yes 144 support_startup_notification=yes
157 support_xft=yes 145 support_xft=yes
158 support_unicode3=yes 146 support_unicode3=yes
182 support_warnings=yes 170 support_warnings=yes
183 fi]) 171 fi])
184if test x$GXX = xyes; then 172if test x$GXX = xyes; then
185 if test $support_warnings = yes; then 173 if test $support_warnings = yes; then
186 save_CXXFLAGS="$CXXFLAGS" 174 save_CXXFLAGS="$CXXFLAGS"
187 CXXFLAGS="$CXXFLAGS -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-value" 175 for warning in \
176 -Wall \
177 -Wno-parentheses \
178 -Wno-reorder \
179 -Wno-sign-compare \
180 -Wno-unused-value \
181 ; do
182 CXXFLAGS="$CXXFLAGS $warning"
183 done
188 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="$save_CXXFLAGS"]) 184 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="$save_CXXFLAGS"])
189 else 185 else
190 CXXFLAGS="$CXXFLAGS -w" 186 CXXFLAGS="$CXXFLAGS -w"
191 fi 187 fi
192fi 188fi
293 [ --disable-delete-key disable handling of the delete key], 289 [ --disable-delete-key disable handling of the delete key],
294 [if test x$enableval = xno; then 290 [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) 291 AC_DEFINE(NO_DELETE_KEY, 1, Define if you don't want support for the (non-keypad) delete key)
296 fi]) 292 fi])
297 293
294support_resources=yes
298AC_ARG_ENABLE(resources, 295AC_ARG_ENABLE(resources,
299 [ --disable-resources disable all resource checking], 296 [ --disable-resources disable all resource checking],
300 [if test x$enableval = xno; then 297 [if test x$enableval = xno; then
301 AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read) 298 support_resources=no
302 fi]) 299 fi])
303 300
304AC_ARG_ENABLE(8bitctrls, 301AC_ARG_ENABLE(8bitctrls,
305 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)], 302 [ --enable-8bitctrls enable 8 bit control sequences (not recommended)],
306 [if test x$enableval = xyes -o x$enableval = xno; then 303 [if test x$enableval = xyes -o x$enableval = xno; then
410 [ --with-terminfo=PATH set the path to the terminfo tree to PATH], 407 [ --with-terminfo=PATH set the path to the terminfo tree to PATH],
411 [if test x$withval != x; then 408 [if test x$withval != x; then
412 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval" 409 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval"
413 fi]) 410 fi])
414 411
412if test x$support_resources = xno; then
413 if test x$support_frills = xyes || test x$support_perl = xyes; then
414 AC_MSG_ERROR([--disable-resources requires --disable-frills --disable-perl])
415 fi
416
417 AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read)
418fi
419
415dnl# -------------------------------------------------------------------------- 420dnl# --------------------------------------------------------------------------
416 421
417LIBEV_M4_AVOID_LIBRT=1 422LIBEV_M4_AVOID_LIBRT=1
418m4_include([libev/libev.m4]) 423m4_include([libev/libev.m4])
419 424
422AC_PATH_PROG(TIC, tic, :) 427AC_PATH_PROG(TIC, tic, :)
423 428
424AC_PATH_XTRA 429AC_PATH_XTRA
425 430
426AC_PATH_TOOL(PKG_CONFIG, pkg-config, no) 431AC_PATH_TOOL(PKG_CONFIG, pkg-config, no)
432
433RXVT_CHECK_MODULES([PTYTTY], [libptytty], [:], [
434 AC_MSG_ERROR([unable to find libptytty])
435])
436
437AC_SUBST(PTYTTY_CFLAGS)
438AC_SUBST(PTYTTY_LIBS)
427 439
428image_lib=none 440image_lib=none
429 441
430PIXBUF_CFLAGS= 442PIXBUF_CFLAGS=
431PIXBUF_LIBS= 443PIXBUF_LIBS=
449 ], [:]) 461 ], [:])
450fi 462fi
451 463
452AC_SUBST(STARTUP_NOTIFICATION_CFLAGS) 464AC_SUBST(STARTUP_NOTIFICATION_CFLAGS)
453AC_SUBST(STARTUP_NOTIFICATION_LIBS) 465AC_SUBST(STARTUP_NOTIFICATION_LIBS)
466
467if test x$support_frills = xyes; then
468 RXVT_CHECK_MODULES([XMU], [xmu], [
469 X_LIBS="$XMU_LIBS $X_LIBS"
470 CPPFLAGS="$CPPFLAGS $XMU_CFLAGS"
471 AC_DEFINE(HAVE_XMU, 1, Define to enable Xmu support)
472 ], [:])
473fi
454 474
455dnl# -------------------------------------------------------------------------- 475dnl# --------------------------------------------------------------------------
456dnl# CHECKING FOR HEADER FILES 476dnl# CHECKING FOR HEADER FILES
457dnl# -------------------------------------------------------------------------- 477dnl# --------------------------------------------------------------------------
458AC_CHECK_HEADERS( \ 478AC_CHECK_HEADERS( \
493 513
494dnl# -------------------------------------------------------------------------- 514dnl# --------------------------------------------------------------------------
495dnl# CHECKING FOR LIBRARY FUNCTIONS 515dnl# CHECKING FOR LIBRARY FUNCTIONS
496dnl# -------------------------------------------------------------------------- 516dnl# --------------------------------------------------------------------------
497AC_CHECK_FUNCS(unsetenv) 517AC_CHECK_FUNCS(unsetenv)
498
499UTMP_CHECK
500 518
501dnl# -------------------------------------------------------------------------- 519dnl# --------------------------------------------------------------------------
502 520
503dnl# -------------------------------------------------------------------------- 521dnl# --------------------------------------------------------------------------
504dnl# -------------------------------------------------------------------------- 522dnl# --------------------------------------------------------------------------
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])]) 572[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])])
555if test x$rxvt_cv_func_nl_langinfo = xyes; then 573if test x$rxvt_cv_func_nl_langinfo = xyes; then
556 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 574 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
557fi 575fi
558 576
559SCM_RIGHTS_CHECK
560
561PTY_CHECK
562
563TTY_GROUP_CHECK
564
565dnl# -------------------------------------------------------------------------- 577dnl# --------------------------------------------------------------------------
566dnl# now add and remove other stuff 578dnl# now add and remove other stuff
567dnl# -------------------------------------------------------------------------- 579dnl# --------------------------------------------------------------------------
568support_image=no 580support_image=no
569if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then 581if test x$support_inheritpixmap = xyes || test x$support_pixbuf = xyes; then
699done 711done
700 712
701IF_PERL=\# 713IF_PERL=\#
702if test x$support_perl = xyes; then 714if test x$support_perl = xyes; then
703 AC_PATH_PROG(PERL, perl5, perl) 715 AC_PATH_PROG(PERL, perl5, perl)
716
717 RXVT_CHECK_MODULES([XEXT], [xext], [:], [
718 AC_MSG_ERROR([unable to find xext, required for perl])
719 ])
720
721 X_LIBS="$XEXT_LIBS $X_LIBS"
722 CPPFLAGS="$CPPFLAGS $XEXT_CFLAGS"
704 723
705 AC_MSG_CHECKING(for $PERL suitability) 724 AC_MSG_CHECKING(for $PERL suitability)
706 if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then 725 if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then
707 726
708 save_CXXFLAGS="$CXXFLAGS" 727 save_CXXFLAGS="$CXXFLAGS"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines