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.89 by ayin, Mon Dec 10 23:36:05 2007 UTC vs.
Revision 1.99 by ayin, Mon Dec 17 01:34:36 2007 UTC

30AC_PROG_CXX 30AC_PROG_CXX
31AC_PROG_CPP 31AC_PROG_CPP
32AC_PROG_INSTALL 32AC_PROG_INSTALL
33 33
34AC_AIX 34AC_AIX
35AC_GNU_SOURCE
35AC_ISC_POSIX 36AC_ISC_POSIX
36AC_LANG(C++) 37AC_LANG(C++)
37 38
38dnl check wether we can link with gcc -lsupc++ 39dnl check wether we can link with gcc -lsupc++
39if test x$GCC = xyes && test x$GXX = xyes; then 40if test x$GCC = xyes && test x$GXX = xyes; then
68 CXXFLAGS="-O" 69 CXXFLAGS="-O"
69 fi 70 fi
70 CFLAGS="$CXXFLAGS" 71 CFLAGS="$CXXFLAGS"
71fi 72fi
72 73
73AC_DEFINE(_GNU_SOURCE, 1, Use all glibc features.)
74
75case $host in 74case $host in
76 *-*-solaris* ) 75 *-*-solaris* )
77 AC_DEFINE(_XOPEN_SOURCE, 500, Needed to get declarations for msg_control and msg_controllen on Solaris) 76 AC_DEFINE(_XOPEN_SOURCE, 500, Needed to get declarations for msg_control and msg_controllen on Solaris)
78 ;; 77 ;;
79esac 78esac
80
81dnl if test x$GXX = xyes; then
82dnl CXXFLAGS="$CXXFLAGS" dnl I once had -fno-exceptions, but I am using them now...
83dnl fi
84 79
85dnl# FreeBSD needs to link libxpg4 80dnl# FreeBSD needs to link libxpg4
86AC_CHECK_FUNC(setlocale, [], [AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])]) 81AC_CHECK_FUNC(setlocale, [], [AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])])
87 82
88dnl# solaris needs to link libnsl and socket 83dnl# solaris needs to link libnsl and socket
480 475
481dnl# -------------------------------------------------------------------------- 476dnl# --------------------------------------------------------------------------
482dnl# CHECKING FOR HEADER FILES 477dnl# CHECKING FOR HEADER FILES
483dnl# -------------------------------------------------------------------------- 478dnl# --------------------------------------------------------------------------
484AC_CHECK_HEADERS( \ 479AC_CHECK_HEADERS( \
485 assert.h \
486 fcntl.h \
487 stdarg.h \
488 stdlib.h \
489 string.h \
490 termios.h \
491 unistd.h \
492 sys/byteorder.h \ 480 sys/byteorder.h \
493 sys/ioctl.h \ 481 sys/ioctl.h \
494 sys/select.h \
495 sys/sockio.h \ 482 sys/sockio.h \
496 sys/strredir.h \ 483 sys/strredir.h \
497 sys/time.h \
498 stdint.h \ 484 stdint.h \
499 wchar.h \ 485 wchar.h \
500 cwchar \ 486 cwchar \
501 clocale \
502) 487)
503 488
504dnl# check to allow both <termios.h> and <sys/ioctl.h> 489dnl# check to allow both <termios.h> and <sys/ioctl.h>
505AC_CACHE_CHECK(whether termios.h and sys/ioctl.h may both be included, rxvt_cv_header_sysioctl, 490AC_CACHE_CHECK(whether termios.h and sys/ioctl.h may both be included, rxvt_cv_header_sysioctl,
506[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h> 491[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
507#include <sys/ioctl.h> 492#include <sys/ioctl.h>
508#ifdef HAVE_TERMIOS_H
509#include <termios.h> 493#include <termios.h>
510#endif]], [[int a = ECHO;]])],[rxvt_cv_header_sysioctl=yes],[rxvt_cv_header_sysioctl=no])]) 494]], [[int a = ECHO;]])],[rxvt_cv_header_sysioctl=yes],[rxvt_cv_header_sysioctl=no])])
511 495
512AC_CACHE_CHECK([for XPointer], rxvt_cv_xpointer, 496AC_CACHE_CHECK([for XPointer], rxvt_cv_xpointer,
513[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>]], [[XPointer dummy;]])],[rxvt_cv_xpointer=yes],[rxvt_cv_xpointer=no])]) 497[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>]], [[XPointer dummy;]])],[rxvt_cv_xpointer=yes],[rxvt_cv_xpointer=no])])
514if test x$rxvt_cv_xpointer = xyes; then 498if test x$rxvt_cv_xpointer = xyes; then
515 AC_DEFINE(HAVE_XPOINTER, 1, Define if you have XPointer typedef) 499 AC_DEFINE(HAVE_XPOINTER, 1, Define if you have XPointer typedef)
533dnl# -------------------------------------------------------------------------- 517dnl# --------------------------------------------------------------------------
534dnl# CHECKING FOR MISSING TYPEDEFS 518dnl# CHECKING FOR MISSING TYPEDEFS
535dnl# -------------------------------------------------------------------------- 519dnl# --------------------------------------------------------------------------
536dnl# Missing typedefs and replacements 520dnl# Missing typedefs and replacements
537AC_TYPE_MODE_T 521AC_TYPE_MODE_T
538dnl> AC_CHECK_TYPE(umode_t, int)
539dnl> AC_CHECK_TYPE(off_t, long)
540AC_TYPE_PID_T 522AC_TYPE_PID_T
541AC_TYPE_UID_T 523AC_TYPE_UID_T
542 524AC_TYPE_INT16_T
543AC_CHECK_SIZEOF(short, 2) 525AC_TYPE_UINT16_T
544AC_CHECK_SIZEOF(int, 4) 526AC_TYPE_INT32_T
545dnl AC_CHECK_SIZEOF(long, 4) 527AC_TYPE_UINT32_T
546AC_CHECK_SIZEOF(long long, 8)
547AC_CHECK_SIZEOF(int *, 4)
548
549dnl# see usage below
550AC_DEFUN([RXVT_CHECK_SIZE],
551 [AC_CACHE_CHECK([for $2], $1,
552 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdint.h>]], [[$2 dummy;]])],[$1=yes],[dnl
553if test "$ac_cv_sizeof_char" -ge $3; then
554 $1="$4 char"
555else
556 if test "$ac_cv_sizeof_short" -ge $3; then
557 $1="$4 short"
558 else
559 if test "$ac_cv_sizeof_int" -ge $3; then
560 $1="$4 int"
561 else
562 if test "$ac_cv_sizeof_long" -ge $3; then
563 $1="$4 long"
564 else
565 if test "$ac_cv_sizeof_long_long" -ge $3; then
566 $1="$4 long long"
567 else
568 $1="$4 $5" # we _must_ have a (possibly wrong) default
569 fi
570 fi
571 fi
572 fi
573fi])])]
574if test x"$$1" != xyes; then
575 $6="typedef $$1 $2;"
576else
577 if test x"$4" = x; then
578 $6="/* typedef $5 $2; */"
579 else
580 $6="/* typedef $4 $5 $2; */"
581 fi
582fi dnl
583)
584dnl#
585dnl# Look for types the system may know about anyway.
586dnl#
587RXVT_CHECK_SIZE(rxvt_cv_int16_t, int16_t, 2, , short, rxvt_int16_typedef)
588AC_SUBST(rxvt_int16_typedef)
589RXVT_CHECK_SIZE(rxvt_cv_uint16_t, uint16_t, 2, unsigned, short, rxvt_uint16_typedef)
590AC_SUBST(rxvt_uint16_typedef)
591RXVT_CHECK_SIZE(rxvt_cv_int32_t, int32_t, 4, , int, rxvt_int32_typedef)
592AC_SUBST(rxvt_int32_typedef)
593RXVT_CHECK_SIZE(rxvt_cv_uint32_t, uint32_t, 4, unsigned, int, rxvt_uint32_typedef)
594AC_SUBST(rxvt_uint32_typedef)
595dnl RXVT_CHECK_SIZE(rxvt_cv_int64_t, int64_t, 8, , long long, rxvt_int64_typedef)
596dnl AC_SUBST(rxvt_int64_typedef)
597dnl RXVT_CHECK_SIZE(rxvt_cv_uint64_t, uint64_t, 8, unsigned, long long, rxvt_uint64_typedef)
598dnl AC_SUBST(rxvt_uint64_typedef)
599dnl#
600dnl# Now look for another we use
601dnl#
602if test "$ac_cv_sizeof_int_p" -eq 8; then
603 rxvt_intp_define="#define intp_t int64_t"
604 rxvt_u_intp_define="#define u_intp_t u_int64_t"
605else
606 if test "$ac_cv_sizeof_int_p" -eq 4; then
607 rxvt_intp_define="#define intp_t int32_t"
608 rxvt_u_intp_define="#define u_intp_t u_int32_t"
609 else
610 if test "$ac_cv_sizeof_int_p" -eq 2; then
611 rxvt_intp_define="#define intp_t int16_t"
612 rxvt_u_intp_define="#define u_intp_t u_int16_t"
613 else
614 rxvt_intp_define="#error set intp_t"
615 rxvt_u_intp_define="#error set u_intp_t"
616 fi
617 fi
618fi
619AC_SUBST(rxvt_intp_define)
620AC_SUBST(rxvt_u_intp_define)
621 528
622dnl# -------------------------------------------------------------------------- 529dnl# --------------------------------------------------------------------------
623dnl# CHECKING FOR LIBRARY FUNCTIONS 530dnl# CHECKING FOR LIBRARY FUNCTIONS
624dnl# -------------------------------------------------------------------------- 531dnl# --------------------------------------------------------------------------
625AC_CHECK_FUNCS(unsetenv) 532AC_CHECK_FUNCS(unsetenv)
872 $1="/* #include <$2> */" 779 $1="/* #include <$2> */"
873fi dnl 780fi dnl
874AC_SUBST($1)]) 781AC_SUBST($1)])
875 782
876RXVT_DEFINE_TO_INCLUDE(include_stdint_h, stdint.h, ac_cv_header_stdint_h, yes, notset, dontmatch) 783RXVT_DEFINE_TO_INCLUDE(include_stdint_h, stdint.h, ac_cv_header_stdint_h, yes, notset, dontmatch)
877RXVT_DEFINE_TO_INCLUDE(include_stdarg_h, cstdarg, ac_cv_header_stdarg_h, yes, notset, dontmatch)
878RXVT_DEFINE_TO_INCLUDE(include_stdlib_h, cstdlib, ac_cv_header_stdlib_h, yes, notset, dontmatch)
879RXVT_DEFINE_TO_INCLUDE(include_unistd_h, unistd.h, ac_cv_header_unistd_h, yes, notset, dontmatch)
880RXVT_DEFINE_TO_INCLUDE(include_string_h, cstring, ac_cv_header_string_h, yes, notset, dontmatch)
881RXVT_DEFINE_TO_INCLUDE(include_fcntl_h, fcntl.h, ac_cv_header_fcntl_h, yes, notset, dontmatch)
882RXVT_DEFINE_TO_INCLUDE(include_util_h, util.h, ac_cv_header_util_h, yes, notset, dontmatch)
883RXVT_DEFINE_TO_INCLUDE(include_assert_h, assert.h, ac_cv_header_assert_h, yes, notset, dontmatch)
884RXVT_DEFINE_TO_INCLUDE(include_sys_ioctl_h, sys/ioctl.h, rxvt_cv_header_sysioctl, yes, notset, dontmatch) 784RXVT_DEFINE_TO_INCLUDE(include_sys_ioctl_h, sys/ioctl.h, rxvt_cv_header_sysioctl, yes, notset, dontmatch)
885RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch)
886RXVT_DEFINE_TO_INCLUDE(include_sys_strredir_h, sys/strredir.h, ac_cv_header_sys_strredir_h, yes, notset, dontmatch) 785RXVT_DEFINE_TO_INCLUDE(include_sys_strredir_h, sys/strredir.h, ac_cv_header_sys_strredir_h, yes, notset, dontmatch)
887RXVT_DEFINE_TO_INCLUDE(include_sys_time_h, sys/time.h, ac_cv_header_sys_time_h, yes, notset, dontmatch)
888RXVT_DEFINE_TO_INCLUDE(include_time_h, time.h, ac_cv_header_sys_time_h, no, ac_cv_header_time, yes)
889 786
890AC_CONFIG_FILES([Makefile \ 787AC_CONFIG_FILES([Makefile \
891doc/Makefile \ 788doc/Makefile \
892src/Makefile \ 789src/Makefile \
893src/rxvtlib.h \ 790src/rxvtlib.h \

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines