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.91 by ayin, Mon Dec 10 23:49:38 2007 UTC vs.
Revision 1.104 by root, Sun Jan 6 21:34:57 2008 UTC

11 11
12dnl RXVT version 12dnl RXVT version
13changequote(, )dnl 13changequote(, )dnl
14VERSION=`sed -n -e 's/^.*[ \t]VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 14VERSION=`sed -n -e 's/^.*[ \t]VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
15DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 15DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
16dnl LIBVERSION=`sed -n -e 's/^.*[ \t]LIBVERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
17changequote([, ])dnl 16changequote([, ])dnl
18AC_SUBST(VERSION)dnl 17AC_SUBST(VERSION)dnl
19AC_SUBST(DATE)dnl 18AC_SUBST(DATE)dnl
20dnl AC_SUBST(LIBVERSION)dnl
21 19
22echo "" 20echo ""
23echo "configuring for rxvt $VERSION" 21echo "configuring for rxvt $VERSION"
24echo "" 22echo ""
25 23
81AC_CHECK_FUNC(setlocale, [], [AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])]) 79AC_CHECK_FUNC(setlocale, [], [AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])])
82 80
83dnl# solaris needs to link libnsl and socket 81dnl# solaris needs to link libnsl and socket
84AC_CHECK_FUNC(gethostbyname, [], [AC_CHECK_LIB(nsl, gethostbyname, [LIBS="$LIBS -lnsl"])]) 82AC_CHECK_FUNC(gethostbyname, [], [AC_CHECK_LIB(nsl, gethostbyname, [LIBS="$LIBS -lnsl"])])
85AC_CHECK_FUNC(socket, [], [AC_CHECK_LIB(socket, socket, [LIBS="$LIBS -lsocket"])]) 83AC_CHECK_FUNC(socket, [], [AC_CHECK_LIB(socket, socket, [LIBS="$LIBS -lsocket"])])
86
87dnl AC_ENABLE_SHARED(no)dnl# libtool
88dnl AC_ENABLE_STATIC(yes)dnl# libtool
89dnl AC_PROG_LIBTOOL()dnl# libtool
90 84
91support_frills=yes 85support_frills=yes
92support_inheritpixmap=yes 86support_inheritpixmap=yes
93support_fading=yes 87support_fading=yes
94support_keepscrolling=yes 88support_keepscrolling=yes
115 109
116dnl# -------------------------------------------------------------------------- 110dnl# --------------------------------------------------------------------------
117dnl# CHECKING COMMAND LINE OPTIONS 111dnl# CHECKING COMMAND LINE OPTIONS
118dnl# -------------------------------------------------------------------------- 112dnl# --------------------------------------------------------------------------
119 113
120dnl if test "x$enable_shared" = xyes; then
121dnl AC_DEFINE(LIBRXVT, 1, Build shared library version - specify via configure only)
122dnl INSTALL_LIBRXVT=yes
123dnl fi
124dnl AC_SUBST(INSTALL_LIBRXVT)
125
126AC_ARG_ENABLE(everything, 114AC_ARG_ENABLE(everything,
127 [ --enable-everything enable standard non-multichoice features 115 [ --enable-everything enable standard non-multichoice features
128 NOTE: this option is order dependent], 116 NOTE: this option is order dependent],
129 [ 117 [
130 if test x$enableval = xno; then 118 if test x$enableval = xno; then
131 support_frills=no 119 support_frills=no
132 support_inheritpixmap=no 120 support_inheritpixmap=no
133 support_fading=no 121 support_fading=no
226 [if test x$enableval = xyes -o x$enableval = xno; then 214 [if test x$enableval = xyes -o x$enableval = xno; then
227 support_styles=$enableval 215 support_styles=$enableval
228 fi]) 216 fi])
229 217
230AC_ARG_ENABLE(afterimage, 218AC_ARG_ENABLE(afterimage,
231 [ --enable-afterimage enable integration with libAfterImage for background images], 219 [ --enable-afterimage enable integration with libAfterImage for background images],
232 [if test x$enableval = xyes -o x$enableval = xno; then 220 [if test x$enableval = xyes -o x$enableval = xno; then
233 support_afterimage=$enableval 221 support_afterimage=$enableval
234 fi]) 222 fi])
235 223
236AC_ARG_WITH(afterimage_config, 224AC_ARG_WITH(afterimage_config,
475 463
476dnl# -------------------------------------------------------------------------- 464dnl# --------------------------------------------------------------------------
477dnl# CHECKING FOR HEADER FILES 465dnl# CHECKING FOR HEADER FILES
478dnl# -------------------------------------------------------------------------- 466dnl# --------------------------------------------------------------------------
479AC_CHECK_HEADERS( \ 467AC_CHECK_HEADERS( \
480 assert.h \
481 fcntl.h \
482 stdarg.h \
483 stdlib.h \
484 string.h \
485 termios.h \
486 unistd.h \
487 sys/byteorder.h \ 468 sys/byteorder.h \
488 sys/ioctl.h \ 469 sys/ioctl.h \
489 sys/select.h \
490 sys/sockio.h \ 470 sys/sockio.h \
491 sys/strredir.h \ 471 sys/strredir.h \
492 sys/time.h \
493 stdint.h \ 472 stdint.h \
494 wchar.h \ 473 wchar.h \
495 cwchar \ 474 cwchar \
496 clocale \
497) 475)
498
499dnl# check to allow both <termios.h> and <sys/ioctl.h>
500AC_CACHE_CHECK(whether termios.h and sys/ioctl.h may both be included, rxvt_cv_header_sysioctl,
501[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
502#include <sys/ioctl.h>
503#ifdef HAVE_TERMIOS_H
504#include <termios.h>
505#endif]], [[int a = ECHO;]])],[rxvt_cv_header_sysioctl=yes],[rxvt_cv_header_sysioctl=no])])
506 476
507AC_CACHE_CHECK([for XPointer], rxvt_cv_xpointer, 477AC_CACHE_CHECK([for XPointer], rxvt_cv_xpointer,
508[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>]], [[XPointer dummy;]])],[rxvt_cv_xpointer=yes],[rxvt_cv_xpointer=no])]) 478[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>]], [[XPointer dummy;]])],[rxvt_cv_xpointer=yes],[rxvt_cv_xpointer=no])])
509if test x$rxvt_cv_xpointer = xyes; then 479if test x$rxvt_cv_xpointer = xyes; then
510 AC_DEFINE(HAVE_XPOINTER, 1, Define if you have XPointer typedef) 480 AC_DEFINE(HAVE_XPOINTER, 1, Define if you have XPointer typedef)
528dnl# -------------------------------------------------------------------------- 498dnl# --------------------------------------------------------------------------
529dnl# CHECKING FOR MISSING TYPEDEFS 499dnl# CHECKING FOR MISSING TYPEDEFS
530dnl# -------------------------------------------------------------------------- 500dnl# --------------------------------------------------------------------------
531dnl# Missing typedefs and replacements 501dnl# Missing typedefs and replacements
532AC_TYPE_MODE_T 502AC_TYPE_MODE_T
533dnl> AC_CHECK_TYPE(umode_t, int)
534dnl> AC_CHECK_TYPE(off_t, long)
535AC_TYPE_PID_T 503AC_TYPE_PID_T
536AC_TYPE_UID_T 504AC_TYPE_UID_T
537 505AC_TYPE_INT16_T
538AC_CHECK_SIZEOF(short, 2) 506AC_TYPE_UINT16_T
539AC_CHECK_SIZEOF(int, 4) 507AC_TYPE_INT32_T
540dnl AC_CHECK_SIZEOF(long, 4) 508AC_TYPE_UINT32_T
541AC_CHECK_SIZEOF(long long, 8)
542AC_CHECK_SIZEOF(int *, 4)
543
544dnl# see usage below
545AC_DEFUN([RXVT_CHECK_SIZE],
546 [AC_CACHE_CHECK([for $2], $1,
547 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdint.h>]], [[$2 dummy;]])],[$1=yes],[dnl
548if test "$ac_cv_sizeof_char" -ge $3; then
549 $1="$4 char"
550else
551 if test "$ac_cv_sizeof_short" -ge $3; then
552 $1="$4 short"
553 else
554 if test "$ac_cv_sizeof_int" -ge $3; then
555 $1="$4 int"
556 else
557 if test "$ac_cv_sizeof_long" -ge $3; then
558 $1="$4 long"
559 else
560 if test "$ac_cv_sizeof_long_long" -ge $3; then
561 $1="$4 long long"
562 else
563 $1="$4 $5" # we _must_ have a (possibly wrong) default
564 fi
565 fi
566 fi
567 fi
568fi])])]
569if test x"$$1" != xyes; then
570 $6="typedef $$1 $2;"
571else
572 if test x"$4" = x; then
573 $6="/* typedef $5 $2; */"
574 else
575 $6="/* typedef $4 $5 $2; */"
576 fi
577fi dnl
578)
579dnl#
580dnl# Look for types the system may know about anyway.
581dnl#
582RXVT_CHECK_SIZE(rxvt_cv_int16_t, int16_t, 2, , short, rxvt_int16_typedef)
583AC_SUBST(rxvt_int16_typedef)
584RXVT_CHECK_SIZE(rxvt_cv_uint16_t, uint16_t, 2, unsigned, short, rxvt_uint16_typedef)
585AC_SUBST(rxvt_uint16_typedef)
586RXVT_CHECK_SIZE(rxvt_cv_int32_t, int32_t, 4, , int, rxvt_int32_typedef)
587AC_SUBST(rxvt_int32_typedef)
588RXVT_CHECK_SIZE(rxvt_cv_uint32_t, uint32_t, 4, unsigned, int, rxvt_uint32_typedef)
589AC_SUBST(rxvt_uint32_typedef)
590dnl RXVT_CHECK_SIZE(rxvt_cv_int64_t, int64_t, 8, , long long, rxvt_int64_typedef)
591dnl AC_SUBST(rxvt_int64_typedef)
592dnl RXVT_CHECK_SIZE(rxvt_cv_uint64_t, uint64_t, 8, unsigned, long long, rxvt_uint64_typedef)
593dnl AC_SUBST(rxvt_uint64_typedef)
594dnl#
595dnl# Now look for another we use
596dnl#
597if test "$ac_cv_sizeof_int_p" -eq 8; then
598 rxvt_intp_define="#define intp_t int64_t"
599 rxvt_u_intp_define="#define u_intp_t u_int64_t"
600else
601 if test "$ac_cv_sizeof_int_p" -eq 4; then
602 rxvt_intp_define="#define intp_t int32_t"
603 rxvt_u_intp_define="#define u_intp_t u_int32_t"
604 else
605 if test "$ac_cv_sizeof_int_p" -eq 2; then
606 rxvt_intp_define="#define intp_t int16_t"
607 rxvt_u_intp_define="#define u_intp_t u_int16_t"
608 else
609 rxvt_intp_define="#error set intp_t"
610 rxvt_u_intp_define="#error set u_intp_t"
611 fi
612 fi
613fi
614AC_SUBST(rxvt_intp_define)
615AC_SUBST(rxvt_u_intp_define)
616 509
617dnl# -------------------------------------------------------------------------- 510dnl# --------------------------------------------------------------------------
618dnl# CHECKING FOR LIBRARY FUNCTIONS 511dnl# CHECKING FOR LIBRARY FUNCTIONS
619dnl# -------------------------------------------------------------------------- 512dnl# --------------------------------------------------------------------------
620AC_CHECK_FUNCS(unsetenv) 513AC_CHECK_FUNCS(unsetenv)
808 701
809 save_CXXFLAGS="$CXXFLAGS" 702 save_CXXFLAGS="$CXXFLAGS"
810 save_LIBS="$LIBS" 703 save_LIBS="$LIBS"
811 CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts`" 704 CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts`"
812 LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`" 705 LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`"
813 AC_TRY_LINK([ 706 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
814#include <EXTERN.h> 707#include <EXTERN.h>
815#include <perl.h> 708#include <perl.h>
816#include <XSUB.h> 709#include <XSUB.h>
817],[ 710]], [[
818 PerlInterpreter *perl = perl_alloc (); 711 PerlInterpreter *perl = perl_alloc ();
819],[rxvt_perl_link=yes],[rxvt_perl_link=no]) 712]])],[rxvt_perl_link=yes],[rxvt_perl_link=no])
820 CXXFLAGS="$save_CXXFLAGS" 713 CXXFLAGS="$save_CXXFLAGS"
821 LIBS="$save_LIBS" 714 LIBS="$save_LIBS"
822 715
823 if test x$rxvt_perl_link = xyes; then 716 if test x$rxvt_perl_link = xyes; then
824 AC_MSG_RESULT(ok) 717 AC_MSG_RESULT(ok)
855AC_SUBST(AFTERIMAGE_CFLAGS) 748AC_SUBST(AFTERIMAGE_CFLAGS)
856AC_SUBST(AFTERIMAGE_LIBS) 749AC_SUBST(AFTERIMAGE_LIBS)
857 750
858AC_ARG_PROGRAM 751AC_ARG_PROGRAM
859 752
860dnl# test for "sun" or "__sun__" before include sys_ioctl
861
862dnl# revert HAVE_BLAH_H into a "#include <blah.h>"
863AC_DEFUN([RXVT_DEFINE_TO_INCLUDE], dnl
864[if test "$$3" = "$4" -o "$$5" = "$6"; then
865 $1="#include <$2>"
866else
867 $1="/* #include <$2> */"
868fi dnl
869AC_SUBST($1)])
870
871RXVT_DEFINE_TO_INCLUDE(include_stdint_h, stdint.h, ac_cv_header_stdint_h, yes, notset, dontmatch)
872RXVT_DEFINE_TO_INCLUDE(include_stdarg_h, cstdarg, ac_cv_header_stdarg_h, yes, notset, dontmatch)
873RXVT_DEFINE_TO_INCLUDE(include_stdlib_h, cstdlib, ac_cv_header_stdlib_h, yes, notset, dontmatch)
874RXVT_DEFINE_TO_INCLUDE(include_unistd_h, unistd.h, ac_cv_header_unistd_h, yes, notset, dontmatch)
875RXVT_DEFINE_TO_INCLUDE(include_string_h, cstring, ac_cv_header_string_h, yes, notset, dontmatch)
876RXVT_DEFINE_TO_INCLUDE(include_fcntl_h, fcntl.h, ac_cv_header_fcntl_h, yes, notset, dontmatch)
877RXVT_DEFINE_TO_INCLUDE(include_util_h, util.h, ac_cv_header_util_h, yes, notset, dontmatch)
878RXVT_DEFINE_TO_INCLUDE(include_assert_h, assert.h, ac_cv_header_assert_h, yes, notset, dontmatch)
879RXVT_DEFINE_TO_INCLUDE(include_sys_ioctl_h, sys/ioctl.h, rxvt_cv_header_sysioctl, yes, notset, dontmatch)
880RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch)
881RXVT_DEFINE_TO_INCLUDE(include_sys_strredir_h, sys/strredir.h, ac_cv_header_sys_strredir_h, yes, notset, dontmatch)
882RXVT_DEFINE_TO_INCLUDE(include_sys_time_h, sys/time.h, ac_cv_header_sys_time_h, yes, notset, dontmatch)
883RXVT_DEFINE_TO_INCLUDE(include_time_h, time.h, ac_cv_header_sys_time_h, no, ac_cv_header_time, yes)
884
885AC_CONFIG_FILES([Makefile \ 753AC_CONFIG_FILES([Makefile \
886doc/Makefile \ 754doc/Makefile \
887src/Makefile \ 755src/Makefile \
888src/rxvtlib.h \
889]) 756])
890AC_OUTPUT 757AC_OUTPUT
891 758
892echo "Configuration: 759echo "Configuration:
893 760

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines