ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/autoconf/configure.in
(Generate patch)

Comparing rxvt-unicode/autoconf/configure.in (file contents):
Revision 1.76 by ayin, Mon Jan 16 16:38:47 2006 UTC vs.
Revision 1.78 by root, Tue Jan 17 11:53:07 2006 UTC

710dnl# CHECKING FOR LIBRARY FUNCTIONS 710dnl# CHECKING FOR LIBRARY FUNCTIONS
711dnl# -------------------------------------------------------------------------- 711dnl# --------------------------------------------------------------------------
712AC_TYPE_SIGNAL 712AC_TYPE_SIGNAL
713dnl> AC_FUNC_VPRINTF 713dnl> AC_FUNC_VPRINTF
714 714
715dnl# Note: On Ultrix, setsid() does weirdo stuff, disable it
716case "$host_alias" in
717 *ultrix) ac_cv_func_setsid='no' ;;
718 *) break;;
719esac
720
721AC_CHECK_FUNCS( \ 715AC_CHECK_FUNCS( \
722 atexit \
723 revoke \ 716 revoke \
724 unsetenv \ 717 unsetenv \
725 setutent \ 718 setutent \
726 seteuid \ 719 seteuid \
727 setreuid \ 720 setreuid \
728 setsid \
729 setpgrp \
730 setpgid \
731 _getpty \ 721 _getpty \
722 getpt \
732 posix_openpt \ 723 posix_openpt \
733 grantpt \ 724 grantpt \
734 unlockpt \ 725 unlockpt \
735 isastream \ 726 isastream \
736 on_exit \ 727 on_exit \
1166 1157
1167if test x$rxvt_broken_ximcb = xyes; then 1158if test x$rxvt_broken_ximcb = xyes; then
1168 AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.) 1159 AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.)
1169fi 1160fi
1170 1161
1171if test x$ac_cv_func_posix_openpt = xno; then 1162if test x$ac_cv_func_getpt = xno -a x$ac_cv_func_posix_openpt = xno; then
1172 AC_CHECK_FUNC(openpty, [], [AC_CHECK_LIB(util, openpty, [LIBS="$LIBS -lutil"])]) 1163 AC_CHECK_FUNC(openpty, [], [AC_CHECK_LIB(util, openpty, [LIBS="$LIBS -lutil"])])
1173fi 1164fi
1174 1165
1175dnl# if we don't guess right then it's up to the user 1166dnl# if we don't guess right then it's up to the user
1176AC_CACHE_CHECK(for pty/tty type, rxvt_cv_ptys, 1167AC_CACHE_CHECK(for pty/tty type, rxvt_cv_ptys,
1177[if test x$ac_cv_func_openpty = xyes -o x$ac_cv_lib_util_openpty = xyes; then 1168[if test x$ac_cv_func_openpty = xyes -o x$ac_cv_lib_util_openpty = xyes; then
1178 rxvt_cv_ptys=OPENPTY 1169 rxvt_cv_ptys=OPENPTY
1170 else if test x$ac_cv_func_getpt = xyes; then
1171 rxvt_cv_ptys=GLIBC
1179 else if test x$ac_cv_func_posix_openpt = xyes; then 1172 else if test x$ac_cv_func_posix_openpt = xyes; then
1180 rxvt_cv_ptys=POSIX 1173 rxvt_cv_ptys=POSIX
1181 else if test x$ac_cv_func__getpty = xyes; then 1174 else if test x$ac_cv_func__getpty = xyes; then
1182 rxvt_cv_ptys=SGI4 1175 rxvt_cv_ptys=SGI4
1183 else if test -c /dev/ttyp20; then 1176 else if test -c /dev/ttyp20; then
1202fi 1195fi
1203fi 1196fi
1204fi 1197fi
1205fi 1198fi
1206fi 1199fi
1200fi
1207]) 1201])
1208 1202
1203if test x$rxvt_cv_ptys = xGLIBC; then
1204 AC_DEFINE(PTYS_ARE_GETPT, 1, Define for this pty type)
1205fi
1209if test x$rxvt_cv_ptys = xPOSIX; then 1206if test x$rxvt_cv_ptys = xPOSIX; then
1210 AC_DEFINE(PTYS_ARE_POSIX, 1, Define for this pty type) 1207 AC_DEFINE(PTYS_ARE_POSIX, 1, Define for this pty type)
1211fi 1208fi
1212if test x$rxvt_cv_ptys = xOPENPTY; then 1209if test x$rxvt_cv_ptys = xOPENPTY; then
1213 AC_DEFINE(PTYS_ARE_OPENPTY, 1, Define for this pty type) 1210 AC_DEFINE(PTYS_ARE_OPENPTY, 1, Define for this pty type)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines