1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
|
dnl $XTermId: configure.in,v 1.408 2025/10/08 08:17:07 tom Exp $
dnl
dnl -----------------------------------------------------------------------------
dnl this file is part of xterm
dnl
dnl Copyright 1997-2024,2025 by Thomas E. Dickey
dnl
dnl All Rights Reserved
dnl
dnl Permission is hereby granted, free of charge, to any person obtaining a
dnl copy of this software and associated documentation files (the
dnl "Software"), to deal in the Software without restriction, including
dnl without limitation the rights to use, copy, modify, merge, publish,
dnl distribute, sublicense, and/or sell copies of the Software, and to
dnl permit persons to whom the Software is furnished to do so, subject to
dnl the following conditions:
dnl
dnl The above copyright notice and this permission notice shall be included
dnl in all copies or substantial portions of the Software.
dnl
dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
dnl OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
dnl MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
dnl IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
dnl CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
dnl TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
dnl SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
dnl
dnl Except as contained in this notice, the name(s) of the above copyright
dnl holders shall not be used in advertising or otherwise to promote the
dnl sale, use or other dealings in this Software without prior written
dnl authorization.
dnl ---------------------------------------------------------------------------
dnl Process this file with autoconf to produce a configure script.
dnl
AC_PREREQ(2.52.20210509)
AC_INIT
AC_CONFIG_SRCDIR([charproc.c])
AC_CONFIG_HEADER(xtermcfg.h:xtermcfg.hin)
CF_CHECK_CACHE
### checks for alternative programs
dnl Only add to this case statement when a system has a compiler that is not
dnl detected by AC_PROG_CC.
case "$host_os" in
(openedition) : "${CFLAGS=\"-O2 -Wc,dll -Wl,EDIT=NO\"}"
: "${CPPFLAGS=\"-D_ALL_SOURCE\"}"
: "${LIBS=\"/usr/lib/Xaw.x /usr/lib/SM.x /usr/lib/ICE.x /usr/lib/X11.x\"}"
: "${CC=c89}";;
(darwin*)
: "${LDFLAGS}=\"${LDFLAGS} -Wl,-bind_at_load\"";;
esac
CF_PROG_CC
AC_C_INLINE
AC_PROG_CPP
AC_PROG_AWK
CF_PROG_INSTALL
AC_PROG_LN_S
AC_ARG_PROGRAM
CF_PROG_LINT
### checks for compiler characteristics
CF_XOPEN_SOURCE(700)
CF_SIGWINCH
### checks for header files
AC_CHECK_DECL(exit)
AC_CHECK_HEADERS( \
ncurses/curses.h \
ncurses/term.h \
sys/ptem.h \
sys/ttydefaults.h \
term.h \
termios.h \
wchar.h \
)
AC_HEADER_TIME
AM_LANGINFO_CODESET
### checks for typedefs
CF_SIG_ATOMIC_T
AC_CHECK_TYPE(time_t, long)
CF_TYPE_CC_T
CF_TYPE_NFDS_T
AC_TYPE_MODE_T
AC_TYPE_PID_T
AC_TYPE_UID_T
AC_TYPE_OFF_T
### checks for library functions
AC_CHECK_FUNCS( \
gethostname \
getusershell \
endusershell \
getlogin \
initgroups \
mkdtemp \
putenv \
unsetenv \
sched_yield \
setpgid \
setsid \
tcgetattr \
waitpid \
wcswidth \
wcwidth )
CF_FUNC_GETTIME
CF_FUNC_STRFTIME
CF_MKSTEMP
CF_SETITIMER
CF_UTMP
CF_STRUCT_LASTLOG
CF_POSIX_SAVED_IDS
CF_HELP_MESSAGE(Compile/Install Options:)
CF_FUNC_TGETENT
CF_WITH_APP_CLASS(XTerm)
CF_WITH_APP_DEFAULTS
CF_WITH_ICON_NAME(mini.xterm)
CF_WITH_ICON_SYMLINK(xterm)
# Install all icons except for the overused "terminal".
cf_cv_icon_list=
for my_item in $srcdir/icons/*.svg
do
test -f "$my_item" || continue
cf_icon_name=`echo "$my_item" |sed -e "s,.svg,," -e "s,^$srcdir/,,"`
case $cf_icon_name in
(*_48x48)
continue
;;
esac
CF_VERBOSE(adding $cf_icon_name to icon-list)
cf_cv_icon_list="$cf_cv_icon_list $cf_icon_name"
if test -f "${cf_icon_name}_48x48.png"
then
CF_VERBOSE(adding ${cf_icon_name}_48x48 to icon-list)
cf_cv_icon_list="$cf_cv_icon_list ${cf_icon_name}_48x48"
fi
done
CF_WITH_ICON_THEME([$cf_cv_icon_list],,,icons/${ICON_NAME}_48x48)
CF_DISABLE_DESKTOP(xterm)
CF_WITH_DESKTOP_CATEGORY(xterm,
[*rxvt*|*konsole|*[[Tt]]erminal],
[System|TerminalEmulator|*])
AC_MSG_CHECKING(for install-permissions reference)
AC_ARG_WITH(reference,
[ --with-reference=XXX program to use as permissions-reference],
[with_reference=$withval],
[with_reference=xterm])
AC_MSG_RESULT($with_reference)
with_full_paths=yes
CF_PATH_PROG(XTERM_PATH,$with_reference)
# If any of --program-prefix, --program-suffix or --program-transform-name is
# given, accept an option tell the makefile to create a symbolic link, e.g.,
# to "xterm" on install.
XTERM_SYMLINK=NONE
AC_SUBST(XTERM_SYMLINK)
if test "$program_transform_name" != "'s,,,'" ; then
cf_name=`echo "$program_transform_name" | sed -e '[s,\\$\\$,$,g]'`
cf_name=`echo xterm |sed -e "$cf_name"`
AC_MSG_CHECKING(for symbolic link to create to $cf_name)
AC_ARG_WITH(xterm-symlink,
[[ --with-xterm-symlink[=XXX] make symbolic link to installed xterm]],
[with_symlink=$withval],
[with_symlink=xterm])
AC_MSG_RESULT($with_symlink)
test "$with_symlink" = yes && with_symlink=xterm
test -n "$with_symlink" && \
test "$with_symlink" != no && \
test "$with_symlink" != "$cf_name" && \
XTERM_SYMLINK="$with_symlink"
fi
AC_MSG_CHECKING(if you want to disable openpty)
CF_ARG_DISABLE(openpty,
[ --disable-openpty disable openpty, prefer other interfaces],
[disable_openpty=yes],
[disable_openpty=no],
no)
AC_MSG_RESULT($disable_openpty)
AC_MSG_CHECKING(if you want to disable setuid)
CF_ARG_DISABLE(setuid,
[ --disable-setuid disable setuid in xterm, do not install setuid/setgid],
[disable_setuid=yes],
[disable_setuid=no],
no)
AC_MSG_RESULT($disable_setuid)
AC_MSG_CHECKING(if you want to disable setgid)
CF_ARG_DISABLE(setgid,
[ --disable-setgid disable setgid in xterm, do not install setuid/setgid],
[disable_setgid=yes],
[disable_setgid=no],
no)
AC_MSG_RESULT($disable_setgid)
AC_MSG_CHECKING(if you want to run xterm setuid to a given user)
AC_ARG_WITH(setuid,
[[ --with-setuid[=XXX] use the given setuid user]],
[use_given_setuid=$withval],
[use_given_setuid=no])
AC_MSG_RESULT($use_given_setuid)
if test "$use_given_setuid" != no ; then
if test "$use_given_setuid" = yes ; then
cf_cv_given_setuid=root
else
cf_cv_given_setuid=$use_given_setuid
fi
# inherit SINSTALL_OPTS from environment to allow packager to customize it.
SINSTALL_OPTS="$SINSTALL_OPTS u+s -u $cf_cv_given_setuid"
fi
AC_MSG_CHECKING(if you want to run xterm setgid to match utmp/utmpx file)
AC_ARG_WITH(utmp-setgid,
[[ --with-utmp-setgid[=XXX] use setgid to match utmp/utmpx file]],
[use_utmp_setgid=$withval],
[use_utmp_setgid=no])
AC_MSG_RESULT($use_utmp_setgid)
if test "$use_utmp_setgid" != no ; then
if test "$use_utmp_setgid" = yes ; then
CF_UTMP_GROUP
else
cf_cv_utmp_group=$use_utmp_setgid
fi
if test "$cf_cv_posix_saved_ids" != yes ; then
AC_MSG_ERROR(Your system does not support POSIX saved-ids)
fi
AC_DEFINE(USE_UTMP_SETGID,1,[Define to 1 if we should use setgid to access utmp/utmpx])
SINSTALL_OPTS="$SINSTALL_OPTS g+s -g $cf_cv_utmp_group"
fi
AC_SUBST(SINSTALL_OPTS)
AC_MSG_CHECKING(if you want to link with utempter)
AC_ARG_WITH(utempter,
[ --with-utempter use utempter library for access to utmp],
[use_utempter=$withval],
[use_utempter=no])
AC_MSG_RESULT($use_utempter)
if test "$use_utempter" = yes ; then
CF_UTEMPTER
test "$cf_cv_have_utempter" != yes && use_utempter=no
else
use_utempter=no
fi
# Some configurations permit (or require) either setuid or setgid mode.
# Let the user decide.
if test "$use_utempter" = yes ; then
if test "${enable_setuid+set}" != set ; then
disable_setuid=yes
CF_VERBOSE([No --disable-setuid option given, force to yes])
fi
fi
# We use these for the manpage:
CF_WITH_UTMP_PATH
CF_WITH_WTMP_PATH
### checks for external data
CF_ERRNO
CF_TTY_GROUP
### checks for system services and user specified options
AC_PATH_XTRA
CF_POSIX_WAIT
CF_SYSV
CF_SVR4
CF_X_TOOLKIT
AC_CHECK_HEADERS( \
X11/DECkeysym.h \
X11/Sunkeysym.h \
X11/XF86keysym.h \
X11/XKBlib.h \
X11/TranslateI.h \
X11/Xpoll.h \
X11/extensions/XKB.h \
)
CF_WITH_XPM
CF_WITH_XINERAMA
CF_X_ATHENA
CF_TYPE_FD_MASK
CF_TERMIO_C_ISPEED
CF_TERMIOS_TYPES
# The Xcursor library is normally (weakly) linked via the X11 library rather
# than directly to applications. xterm can select a cursor theme; users can
# also use environment variables to select cursor size. We would only notice
# the library if there are development files for it. Provide a way to disable
# the feature if it is unwanted.
AC_MSG_CHECKING(if we expect to use the Xcursor library)
CF_ARG_DISABLE(xcursor,
[ --disable-xcursor disable cursorTheme resource],
[enable_xcursor=no],
[enable_xcursor=yes])
AC_MSG_RESULT($enable_xcursor)
if test "$enable_xcursor" = yes; then
AC_DEFINE(HAVE_LIB_XCURSOR,1,[Define to 1 if we expect to use the Xcursor library])
fi
LIBS="$LIBS $X_EXTRA_LIBS"
CF_FUNC_GRANTPT
CF_XKB_QUERY_EXTENSION
CF_XKB_KEYCODE_TO_KEYSYM
CF_XKB_BELL_EXT
AC_CHECK_FUNCS(Xutf8LookupString, [],[
EXTRAHDRS="$EXTRAHDRS xutf8.h"
EXTRASRCS="$EXTRASRCS xutf8.c"
EXTRAOBJS="$EXTRAOBJS xutf8.o"
])
CF_WITH_IMAKE_CFLAGS($(MAIN_DEFINES) $(VENDORMANDEFS))
CF_WITH_MAN2HTML
# If we have already established that there is a full termcap implementation,
# suppress the definitions for terminfo that we make have imported from the
# imake-file.
if test "x$cf_cv_lib_tgetent" != xno || test "x$cf_cv_lib_part_tgetent" != xno ; then
case "$IMAKE_CFLAGS" in
(*-DUSE_TERMINFO\ -DHAVE_TIGETSTR*)
CF_UNDO_CFLAGS(IMAKE_CFLAGS,terminfo,[-DUSE_TERMINFO[[ ]]*-DHAVE_TIGETSTR[[ ]]*])
CF_UNDO_CFLAGS(CPPFLAGS,terminfo,[-DUSE_TERMINFO[[ ]]*-DHAVE_TIGETSTR[[ ]]*])
;;
esac
fi
###############################################################################
CF_HELP_MESSAGE(Terminal Configuration:)
AC_MSG_CHECKING(for default terminal-id)
AC_ARG_WITH(terminal-id,
[ --with-terminal-id=V set default decTerminalID (default: vt420)],
[default_termid=$withval],
[default_termid=vt420])
AC_MSG_RESULT($default_termid)
case $default_termid in
(vt*) default_termid=`echo $default_termid | sed -e 's/^..//'`
;;
([[1-9]][[0-9]][[0-9]]|[[1-9]][[0-9]])
;;
(*)
AC_MSG_ERROR([expected a number, not $default_termid])
;;
esac
AC_DEFINE_UNQUOTED(DFT_DECID,"$default_termid",[default terminal-id])
AC_SUBST(default_termid)
AC_MSG_CHECKING(for default terminal-type)
AC_ARG_WITH(terminal-type,
[ --with-terminal-type=T set default $TERM (default: xterm)],
[default_TERM=$withval],
[default_TERM=xterm])
AC_MSG_RESULT($default_TERM)
AC_DEFINE_UNQUOTED(DFT_TERMTYPE,"$default_TERM",[default terminal-type])
AC_SUBST(default_TERM)
###############################################################################
CF_WITH_XTERM_KBS
AC_DEFINE_UNQUOTED(XTERM_ERASE, ANSI_$with_xterm_kbs, [Define default erase character to ANSI_BS or ANSI_DEL])
AC_MSG_CHECKING(if backarrow-key should be BS)
CF_ARG_DISABLE(backarrow-key,
[ --enable-backarrow-key set default backarrowKey resource (default: true)],
[backarrow_is_bs=$enableval],
[backarrow_is_bs=yes])
CF_XBOOL_RESULT(DEF_BACKARO_BS,backarrow_is_bs,[Define to 1 if backarrow-key should be BS])
AC_MSG_CHECKING(if backarrow-key should be treated as erase)
CF_ARG_ENABLE(backarrow-is-erase,
[ --enable-backarrow-is-erase set default backarrowKeyIsErase resource (default: false)],
[backarrow_is_erase=$enableval],
[backarrow_is_erase=no])
CF_XBOOL_RESULT(DEF_BACKARO_ERASE,backarrow_is_erase,[Define to 1 if backarrow-key should be treated as erase])
AC_MSG_CHECKING(for default backspace/DEL setting)
AC_ARG_ENABLE(delete-is-del,
[ --enable-delete-is-del set default deleteIsDEL resource (default: maybe)],
[delete_is_del=$enableval],
[delete_is_del=maybe])
CF_XBOOL_RESULT(DEFDELETE_DEL,delete_is_del,[Define to 1 if default backspace/DEL setting is DEL])
AC_MSG_CHECKING(for default pty initial erase setting)
AC_ARG_ENABLE(pty-erase,
[ --enable-pty-erase set default ptyInitialErase resource (default: maybe)],
[initial_erase=$enableval],
[initial_erase=False])
CF_XBOOL_RESULT(DEF_INITIAL_ERASE,initial_erase,[Define to 1 if default pty initial erase setting is TRUE])
AC_MSG_CHECKING(if alt should send ESC)
CF_ARG_ENABLE(alt-sends-esc,
[ --enable-alt-sends-esc set default altSendsEscape resource (default: no)],
[alt_sends_esc=$enableval],
[alt_sends_esc=no])
CF_XBOOL_RESULT(DEF_ALT_SENDS_ESC,alt_sends_esc,[Define to 1 if alt should send ESC])
AC_MSG_CHECKING(if meta should send ESC)
CF_ARG_ENABLE(meta-sends-esc,
[ --enable-meta-sends-esc set default metaSendsEscape resource (default: no)],
[meta_sends_esc=$enableval],
[meta_sends_esc=no])
CF_XBOOL_RESULT(DEF_META_SENDS_ESC,meta_sends_esc,[Define to 1 if meta should send ESC])
###############################################################################
AC_CHECK_PROG(cf_tic_prog,tic,yes,no)
if test "$cf_tic_prog" = yes ; then
if test -n "$TERMINFO"
then
case "$TERMINFO" in
(/*)
test -d "$TERMINFO" || unset TERMINFO
;;
(*)
unset TERMINFO
;;
esac
fi
AC_MSG_CHECKING(for private terminfo-directory)
AC_ARG_WITH(own-terminfo,
[[ --with-own-terminfo[=P] set default $TERMINFO (default: from environment)]],
[TERMINFO_DIR=$withval],
[TERMINFO_DIR=${TERMINFO-none}])
AC_MSG_RESULT($TERMINFO_DIR)
if test "$TERMINFO_DIR" = yes ; then
AC_MSG_WARN(no value given)
elif test "$TERMINFO_DIR" != none ; then
if test -d "$TERMINFO_DIR" ; then
AC_DEFINE_UNQUOTED(OWN_TERMINFO_DIR,"$TERMINFO_DIR",[Define to override default TERMINFO value])
AC_MSG_CHECKING(if \$TERMINFO should also be set)
AC_ARG_ENABLE(env-terminfo,
[ --enable-env-terminfo setenv $TERMINFO if --with-own-terminfo gives value],
[cf_env_terminfo=yes],
[cf_env_terminfo=no])
AC_MSG_RESULT($cf_env_terminfo)
test $cf_env_terminfo = yes &&
AC_DEFINE(OWN_TERMINFO_ENV,1,[Define to 1 to enable setenv of $TERMINFO value])
else
AC_MSG_WARN(not a directory)
fi
elif test "$prefix" != NONE ; then
TERMINFO_DIR='${prefix}/lib/terminfo'
elif test -d /usr/lib/terminfo ; then
TERMINFO_DIR=/usr/lib/terminfo
else
TERMINFO_DIR=
fi
SET_TERMINFO=
if test -n "$TERMINFO_DIR" ; then
TERMINFO_DIR='${DESTDIR}'$TERMINFO_DIR
SET_TERMINFO='TERMINFO=${TERMINFO_DIR}'
fi
no_ticprog=
else
no_ticprog="#"
TERMINFO_DIR=
SET_TERMINFO=
fi
AC_SUBST(no_ticprog)
AC_SUBST(TERMINFO_DIR)
AC_SUBST(SET_TERMINFO)
###############################################################################
CF_HELP_MESSAGE(Optional Features:)
AC_MSG_CHECKING(if you want active-icons)
CF_ARG_DISABLE(active-icon,
[ --disable-active-icon disable X11R6.3 active-icon feature],
[enable_active_icon=no],
[enable_active_icon=yes])
AC_MSG_RESULT($enable_active_icon)
if test "$enable_active_icon" = no ; then
AC_DEFINE(NO_ACTIVE_ICON,1,[Define to 1 to disable X11R6.3 active-icon feature])
fi
AC_MSG_CHECKING(if you want ANSI color)
CF_ARG_DISABLE(ansi-color,
[ --disable-ansi-color disable ANSI color],
[enable_ansi_color=no],
[enable_ansi_color=yes])
AC_MSG_RESULT($enable_ansi_color)
test "$enable_ansi_color" = no && AC_DEFINE(OPT_ISO_COLORS,0,[Define to 0 to disable ANSI color])
if test "$enable_ansi_color" = yes ; then
AC_MSG_CHECKING(if you want 16 colors like aixterm)
CF_ARG_DISABLE(16-color,
[ --disable-16-color disable 16-color support],
[enable_16_color=no],
[enable_16_color=yes])
AC_MSG_RESULT($enable_16_color)
test "$enable_16_color" = no && AC_DEFINE(OPT_AIX_COLORS,0,[Define to 0 to disable 16-color support])
AC_MSG_CHECKING(if you want 256 colors)
CF_ARG_DISABLE(256-color,
[ --disable-256-color disable 256-color support],
[enable_256_color=no],
[enable_256_color=yes])
AC_MSG_RESULT($enable_256_color)
if test "$enable_256_color" = yes ; then
CHARPROC_DEPS="$CHARPROC_DEPS 256colres.h"
EXTRAHDRS="$EXTRAHDRS 256colres.h"
AC_DEFINE(OPT_256_COLORS,1,[Define to 1 to enable 256-color support])
AC_MSG_CHECKING(if you want direct-color support)
CF_ARG_DISABLE(direct-color,
[ --disable-direct-color disable direct-color support],
[enable_direct_color=no],
[enable_direct_color=yes])
AC_MSG_RESULT($enable_direct_color)
if test "$enable_direct_color" = yes ; then
AC_DEFINE(OPT_DIRECT_COLOR,1,[Define to 1 to enable direct-color support])
fi
else
AC_MSG_CHECKING(if you want 88 colors)
CF_ARG_DISABLE(88-color,
[ --disable-88-color disable 88-color support],
[enable_88_color=no],
[enable_88_color=yes])
AC_MSG_RESULT($enable_88_color)
if test "$enable_88_color" = yes ; then
CHARPROC_DEPS="$CHARPROC_DEPS 88colres.h"
EXTRAHDRS="$EXTRAHDRS 88colres.h"
AC_DEFINE(OPT_88_COLORS,1,[Define to 1 to enable 88-color support])
fi
fi
fi
AC_MSG_CHECKING(if you want blinking cursor)
CF_ARG_DISABLE(blink-cursor,
[ --disable-blink-cursor disable support for blinking cursor],
[enable_blink_curs=no],
[enable_blink_curs=yes])
AC_MSG_RESULT($enable_blink_curs)
test "$enable_blink_curs" = no && AC_DEFINE(OPT_BLINK_CURS,0,[Define to 0 to disable support for blinking cursor])
AC_MSG_CHECKING(if you want support for block-selection)
CF_ARG_ENABLE(block-select,
[ --enable-block-select meta-button1 begins block-selection],
[enable_block_select=yes],
[enable_block_select=no])
AC_MSG_RESULT($enable_block_select)
if test "$enable_block_select" = yes ; then
AC_DEFINE(OPT_BLOCK_SELECT,1,[Define to 1 to allow block-selections])
else
AC_DEFINE(OPT_BLOCK_SELECT,0,[Define to 0 to disallow block-selections])
fi
AC_MSG_CHECKING(if you want to ignore Linux's broken palette-strings)
case $host_os in
(linux*)
assume_broken_osc=yes ;;
(*)
assume_broken_osc=no ;;
esac
CF_ARG_OPTION(broken-osc,
[ --enable-broken-osc allow broken Linux OSC-strings],
[enable_broken_osc=$enableval],
[enable_broken_osc=$enableval],
[$assume_broken_osc])
AC_MSG_RESULT($enable_broken_osc)
if test "$enable_broken_osc" = yes ; then
AC_DEFINE(OPT_BROKEN_OSC,1,[Define to 1 to allow broken Linux OSC-strings])
else
AC_DEFINE(OPT_BROKEN_OSC,0,[Define to 0 to disallow broken Linux OSC-strings])
fi
AC_MSG_CHECKING(if you want to allow broken string-terminators)
CF_ARG_ENABLE(broken-st,
[ --disable-broken-st disallow broken string-terminators],
[enable_broken_st=no],
[enable_broken_st=yes])
AC_MSG_RESULT($enable_broken_st)
test "$enable_broken_st" = no && AC_DEFINE(OPT_BROKEN_ST,0,[Define to 0 to disallow broken string-terminators])
AC_MSG_CHECKING(if you want to compile-in icon data)
CF_ARG_ENABLE(builtin-xpms,
[ --enable-builtin-xpms compile-in icon data],
[enable_builtin_xpms=yes],
[enable_builtin_xpms=no])
AC_MSG_RESULT($enable_builtin_xpms)
test "$enable_builtin_xpms" = yes && AC_DEFINE(OPT_BUILTIN_XPMS,1,[Define to 1 to compile-in icon data])
AC_MSG_CHECKING(if you want printable 128-159)
CF_ARG_DISABLE(c1-print,
[ --disable-c1-print disallow -k8 option for printable 128-159],
[enable_c1_print=no],
[enable_c1_print=yes])
AC_MSG_RESULT($enable_c1_print)
test "$enable_c1_print" = no && AC_DEFINE(OPT_C1_PRINT,0,[Define to 0 to disallow -k8 option for printable 128-159])
if test "$enable_ansi_color" = yes ; then
AC_MSG_CHECKING(if you want bold colors mapped like IBM PC)
CF_ARG_DISABLE(bold-color,
[ --disable-bold-color disable PC-style mapping of bold colors],
[enable_pc_color=no],
[enable_pc_color=yes])
AC_MSG_RESULT($enable_pc_color)
test "$enable_pc_color" = no && AC_DEFINE(OPT_PC_COLORS,0,[Define to 0 to disable PC-style mapping of bold colors])
AC_MSG_CHECKING(if you want separate color-classes)
CF_ARG_DISABLE(color-class,
[ --disable-color-class disable separate color class resources],
[enable_color_class=no],
[enable_color_class=yes])
AC_MSG_RESULT($enable_color_class)
test "$enable_color_class" = no && AC_DEFINE(OPT_COLOR_CLASS,0,[Define to 0 to disable separate color class resources])
AC_MSG_CHECKING(if you want color-mode enabled by default)
CF_ARG_DISABLE(color-mode,
[ --disable-color-mode disable default colorMode resource],
[default_colormode=no],
[default_colormode=yes])
AC_MSG_RESULT($default_colormode)
test "$default_colormode" = no && AC_DEFINE(DFT_COLORMODE,0,[Define to 0 if you want color-mode enabled by default])
fi
AC_MSG_CHECKING(if you want support for color highlighting)
CF_ARG_DISABLE(highlighting,
[ --disable-highlighting disable support for color highlighting],
[default_highlight=no],
[default_highlight=yes])
AC_MSG_RESULT($default_highlight)
test "$default_highlight" = no && AC_DEFINE(OPT_HIGHLIGHT_COLOR,0,[Define to 1 if you want support for color highlighting])
AC_MSG_CHECKING(if you want support for doublesize characters)
CF_ARG_DISABLE(doublechars,
[ --disable-doublechars disable support for double-size chars],
[enable_doublechars=no],
[enable_doublechars=yes])
AC_MSG_RESULT($enable_doublechars)
test "$enable_doublechars" = no && AC_DEFINE(OPT_DEC_CHRSET,0,[Define to 0 to disable support for double-size chars])
AC_MSG_CHECKING(if you want fallback-support for box characters)
CF_ARG_DISABLE(boxchars,
[ --disable-boxchars disable fallback-support for box chars],
[enable_boxchars=no],
[enable_boxchars=yes])
AC_MSG_RESULT($enable_boxchars)
test "$enable_boxchars" = no && AC_DEFINE(OPT_BOX_CHARS,0,[Define to 0 to disable fallback-support for box chars])
AC_MSG_CHECKING(if you want to allow spawning commands to process selections)
CF_ARG_DISABLE(exec-selection,
[ --disable-exec-selection disable "exec-formatted" and "exec-selection" actions],
[enable_exec_selection=no],
[enable_exec_selection=yes])
AC_MSG_RESULT($enable_exec_selection)
if test "$enable_exec_selection" = no ; then
AC_DEFINE(OPT_EXEC_SELECTION,0,[Define to 0 to disable "exec-selection" action])
fi
AC_MSG_CHECKING(if you want to allow spawning new xterms)
CF_ARG_ENABLE(exec-xterm,
[ --enable-exec-xterm enable "spawn-new-terminal" action],
[enable_exec_xterm=yes],
[enable_exec_xterm=no])
AC_MSG_RESULT($enable_exec_xterm)
if test "$enable_exec_xterm" = yes ; then
CF_PROCFS_CWD
if test "$cf_cv_procfs_cwd" = no ; then
AC_MSG_WARN(no suitable proc filesystem found)
else
AC_DEFINE_UNQUOTED(PROCFS_ROOT,"$cf_cv_procfs_cwd",[This is defined via the --enable-exec-xterm option])
AC_DEFINE(OPT_EXEC_XTERM,1,[Define to 1 to enable "spawn-new-terminal" action])
fi
fi
CF_X_EXT
CF_X_EXT_DOUBLE_BUFFER
double_buffer=False
if test "$cf_x_ext_double_buffer" = yes ; then
AC_MSG_CHECKING(if you want to enable double-buffering in default resources)
CF_ARG_ENABLE(double-buffer,
[ --enable-double-buffer enable double-buffering in default resources],
[enable_double_bfr=yes],
[enable_double_bfr=no])
AC_MSG_RESULT($enable_double_bfr)
if test "$enable_double_bfr" = yes ; then
AC_DEFINE(OPT_DOUBLE_BUFFER,1,[Define to 1 to enable double-buffering in default resources])
double_buffer=True
fi
fi
AC_SUBST(double_buffer)
AC_MSG_CHECKING(if you want to use FreeType library)
CF_ARG_DISABLE(freetype,
[ --disable-freetype disable freetype library-support],
[enable_freetype=no],
[enable_freetype=yes])
AC_MSG_RESULT($enable_freetype)
if test "$enable_freetype" = yes ; then
CF_X_FONTCONFIG
else
CPPFLAGS=`echo "$CPPFLAGS" | sed -e s/-DXRENDERFONT//`
fi
AC_MSG_CHECKING(if you want support for HP-style function keys)
CF_ARG_ENABLE(hp-fkeys,
[ --enable-hp-fkeys enable support for HP-style function keys],
[enable_hp_fkeys=yes],
[enable_hp_fkeys=no])
AC_MSG_RESULT($enable_hp_fkeys)
if test "$enable_hp_fkeys" = yes ; then
AC_DEFINE(OPT_HP_FUNC_KEYS,1,[Define to 1 to enable support for HP-style function keys])
fi
AC_MSG_CHECKING(if you want support for SCO-style function keys)
CF_ARG_ENABLE(sco-fkeys,
[ --enable-sco-fkeys enable support for SCO-style function keys],
[enable_sco_fkeys=yes],
[enable_sco_fkeys=no])
AC_MSG_RESULT($enable_sco_fkeys)
if test "$enable_sco_fkeys" = yes ; then
AC_DEFINE(OPT_SCO_FUNC_KEYS,1,[Define to 1 to enable support for SCO-style function keys])
fi
AC_MSG_CHECKING(if you want support for Sun-style function keys)
CF_ARG_DISABLE(sun-fkeys,
[ --disable-sun-fkeys disable support for Sun-style function keys],
[enable_sun_fkeys=no],
[enable_sun_fkeys=yes])
AC_MSG_RESULT($enable_sun_fkeys)
if test "$enable_sun_fkeys" = no ; then
AC_DEFINE(OPT_SUN_FUNC_KEYS,0,[Define to 0 to disable support for Sun-style function keys])
fi
AC_MSG_CHECKING(if you want saved-lines stored as a FIFO)
CF_ARG_DISABLE(fifo-lines,
[ --disable-fifo-lines disable FIFO-storage for saved-lines],
[enable_fifo_lines=no],
[enable_fifo_lines=yes])
AC_MSG_RESULT($enable_fifo_lines)
if test "$enable_fifo_lines" != yes ; then
AC_MSG_WARN(this option has been deprecated)
fi
AC_MSG_CHECKING(if you want support for internationalization)
CF_ARG_DISABLE(i18n,
[ --disable-i18n disable internationalization],
[enable_i18n=no],
[enable_i18n=yes])
AC_MSG_RESULT($enable_i18n)
if test "$enable_i18n" = no ; then
AC_DEFINE(OPT_I18N_SUPPORT,0,[Define to 0 to disable internationalization])
fi
AC_MSG_CHECKING(if you want support for initial-erase setup)
CF_ARG_DISABLE(initial-erase,
[ --disable-initial-erase disable setup for stty erase],
[enable_ie=no],
[enable_ie=yes])
AC_MSG_RESULT($enable_ie)
if test "$enable_ie" = no ; then
AC_DEFINE(OPT_INITIAL_ERASE,0,[Define to 0 to disable setup for stty erase])
fi
AC_MSG_CHECKING(if you want support for input-method)
CF_ARG_DISABLE(input-method,
[ --disable-input-method disable input-method],
[enable_ximp=no],
[enable_ximp=$enable_i18n])
AC_MSG_RESULT($enable_ximp)
CF_INPUT_METHOD
test "$cf_cv_input_method" = no && enable_ximp=no
if test "$enable_ximp" != no ; then
if test "$enable_i18n" = no ; then
AC_MSG_WARN(input-method relies upon internationalization)
enable_ximp=no
fi
fi
if test "$enable_ximp" = no ; then
AC_DEFINE(OPT_INPUT_METHOD,0,[Define to 0 to disable input-method])
fi
AC_MSG_CHECKING(if you want support for load-vt-fonts)
CF_ARG_ENABLE(load-vt-fonts,
[ --enable-load-vt-fonts enable load-vt-fonts() action],
[enable_load_vt_fonts=yes],
[enable_load_vt_fonts=no])
AC_MSG_RESULT($enable_load_vt_fonts)
if test "$enable_load_vt_fonts" = yes ; then
AC_DEFINE(OPT_LOAD_VTFONTS,1,[Define to 1 to enable load-vt-fonts() action])
fi
AC_MSG_CHECKING(if you want support for logging)
CF_ARG_ENABLE(logging,
[ --enable-logging enable logging],
[enable_logging=yes],
[enable_logging=no])
AC_MSG_RESULT($enable_logging)
if test "$enable_logging" = yes ; then
AC_DEFINE(ALLOWLOGGING,1,[if you want support for logging])
AC_MSG_CHECKING(if you want to allow logging via a pipe)
CF_ARG_ENABLE(logfile-exec,
[ --enable-logfile-exec enable exec'd logfile filter],
[enable_log_exec=yes],
[enable_log_exec=no])
AC_MSG_RESULT($enable_log_exec)
if test "$enable_log_exec" = yes ; then
AC_DEFINE(ALLOWLOGFILEEXEC,1,[if you want to allow logging via a pipe])
fi
fi
AC_MSG_CHECKING(if you want support for iconify/maximize translations)
CF_ARG_DISABLE(maximize,
[ --disable-maximize disable actions for iconify/deiconify/maximize/restore],
[enable_maximize=no],
[enable_maximize=yes])
AC_MSG_RESULT($enable_maximize)
test "$enable_maximize" = no && AC_DEFINE(OPT_MAXIMIZE,0,[Define to 0 to disable actions for iconify/deiconify/maximize/restore])
AC_MSG_CHECKING(if you want NumLock to override keyboard tables)
CF_ARG_DISABLE(num-lock,
[ --disable-num-lock disable NumLock keypad support],
[enable_numlock=no],
[enable_numlock=yes])
AC_MSG_RESULT($enable_numlock)
test "$enable_numlock" = no && AC_DEFINE(OPT_NUM_LOCK,0,[Define to 0 to disable NumLock keypad support])
AC_MSG_CHECKING(if you want support for get/set of base64 selection data)
CF_ARG_DISABLE(paste64,
[ --disable-paste64 disable get/set base64 selection data],
[enable_paste64=no],
[enable_paste64=yes])
AC_MSG_RESULT($enable_paste64)
if test "$enable_paste64" = yes ; then
AC_DEFINE(OPT_PASTE64,1,[Define to 1 to disable get/set base64 selection data])
else
AC_DEFINE(OPT_PASTE64,0,[Define to 0 to disable get/set base64 selection data])
fi
AC_MSG_CHECKING(if you want support for pty-handshaking)
CF_ARG_DISABLE(pty-handshake,
[ --disable-pty-handshake disable pty-handshake support],
[enable_pty_handshake=no],
[enable_pty_handshake=yes])
AC_MSG_RESULT($enable_pty_handshake)
if test "$enable_pty_handshake" = yes ; then
AC_DEFINE(OPT_PTY_HANDSHAKE,1,[Define to 1 to disable pty-handshake support])
else
AC_DEFINE(OPT_PTY_HANDSHAKE,0,[Define to 0 to disable pty-handshake support])
fi
AC_MSG_CHECKING(if you want support for mouse in readline applications)
CF_ARG_DISABLE(readline-mouse,
[ --disable-readline-mouse disable support for mouse in readline applications],
[enable_readline_mouse=no],
[enable_readline_mouse=yes])
AC_MSG_RESULT($enable_readline_mouse)
if test "$enable_readline_mouse" = yes ; then
AC_DEFINE(OPT_READLINE,1,[Define to 1 to enable support for mouse in readline applications])
fi
AC_MSG_CHECKING(if you want support for regular-expression selections)
CF_ARG_DISABLE(regex,
[ --disable-regex disable regular-expression selections],
[enable_regex=no],
[enable_regex=yes])
AC_MSG_RESULT($enable_regex)
if test "$enable_regex" = yes ; then
CF_WITH_PCRE2
if test "$with_pcre2" = no ; then
CF_WITH_PCRE
if test "$with_pcre" = no ; then
CF_REGEX
if test "X$cf_cv_regex_hdrs" != "Xregex.h" ; then
AC_MSG_ERROR([Only POSIX, PCRE, or PCRE2 regular expressions are supported])
fi
fi
fi
AC_DEFINE(OPT_SELECT_REGEX,1,[Define to 1 to enable regular-expression selections])
fi
AC_MSG_CHECKING(if you want support for right-scrollbar)
CF_ARG_DISABLE(rightbar,
[ --disable-rightbar disable right-scrollbar support],
[enable_rightbar=no],
[enable_rightbar=yes])
AC_MSG_RESULT($enable_rightbar)
if test "$enable_rightbar" = yes ; then
AC_DEFINE(SCROLLBAR_RIGHT,1,[Define to 1 to enable right-scrollbar support])
fi
AC_MSG_CHECKING(if you want check for redundant name-change)
CF_ARG_DISABLE(samename,
[ --disable-samename disable check for redundant name-change],
[enable_samename=no],
[enable_samename=yes])
AC_MSG_RESULT($enable_samename)
test "$enable_samename" = no && AC_DEFINE(OPT_SAME_NAME,0,[Define to 0 to disable check for redundant name-change])
AC_MSG_CHECKING(if you want support for selection-actions)
CF_ARG_DISABLE(selection-ops,
[ --disable-selection-ops disable selection-action operations],
[enable_selection_ops=no],
[enable_selection_ops=yes])
AC_MSG_RESULT($enable_selection_ops)
test "$enable_selection_ops" = no && AC_DEFINE(OPT_SELECTION_OPS,0,[Define to 0 disable selection-action operations])
AC_MSG_CHECKING(if you want support for session management)
CF_ARG_DISABLE(session-mgt,
[ --disable-session-mgt disable support for session management],
[enable_session_mgt=no],
[enable_session_mgt=yes])
AC_MSG_RESULT($enable_session_mgt)
test "$enable_session_mgt" = no && AC_DEFINE(OPT_SESSION_MGT,0,[Define to 0 to disable support for session management])
AC_MSG_CHECKING(if you want support for status-line)
CF_ARG_ENABLE(status-line,
[ --enable-status-line enable support for status-line],
[enable_status_line=yes],
[enable_status_line=no])
AC_MSG_RESULT($enable_status_line)
test "$enable_status_line" = yes && AC_DEFINE(OPT_STATUS_LINE,1,[Define to 1 to enable support for status-line])
AC_MSG_CHECKING(if you want to use termcap function-keys)
CF_ARG_DISABLE(tcap-fkeys,
[ --disable-tcap-fkeys disable termcap function-keys support],
[enable_tcap_fkeys=no],
[enable_tcap_fkeys=yes])
AC_MSG_RESULT($enable_tcap_fkeys)
test "$enable_tcap_fkeys" = no && AC_DEFINE(OPT_TCAP_FKEYS,0,[Define to 0 to disable termcap function-keys support])
AC_MSG_CHECKING(if you want to use termcap-query/report)
CF_ARG_DISABLE(tcap-query,
[ --disable-tcap-query disable compiled-in termcap-query support],
[enable_tcap_query=no],
[enable_tcap_query=yes])
AC_MSG_RESULT($enable_tcap_query)
test "$enable_tcap_query" = no && AC_DEFINE(OPT_TCAP_QUERY,0,[Define to 0 to disable compiled-in termcap-query support])
AC_MSG_CHECKING(if you want support for tek4014)
CF_ARG_DISABLE(tek4014,
[ --disable-tek4014 disable tek4014 emulation],
[enable_tek4014=no],
[enable_tek4014=yes])
AC_MSG_RESULT($enable_tek4014)
if test "$enable_tek4014" = no ; then
AC_DEFINE(OPT_TEK4014,0,[Define to 0 to disable tek4014 emulation])
else
EXTRAHDRS="$EXTRAHDRS Tekparse.h"
EXTRASRCS="$EXTRASRCS TekPrsTbl.c Tekproc.c"
EXTRAOBJS="$EXTRAOBJS TekPrsTbl.o Tekproc.o"
fi
AC_MSG_CHECKING(if you want pulldown menus with a toolbar)
CF_ARG_ENABLE(toolbar,
[ --enable-toolbar compile-in toolbar for pulldown menus],
[enable_toolbar=yes],
[enable_toolbar=no])
AC_MSG_RESULT($enable_toolbar)
if test "$enable_toolbar" = yes ; then
AC_DEFINE(OPT_TOOLBAR,1,[Define to 1 to compile-in toolbar for pulldown menus])
fi
AC_MSG_CHECKING(if you want VT52 emulation)
CF_ARG_DISABLE(vt52,
[ --disable-vt52 disable VT52 emulation],
[enable_vt52=no],
[enable_vt52=yes])
AC_MSG_RESULT($enable_vt52)
test "$enable_vt52" = no && AC_DEFINE(OPT_VT52_MODE,0,[Define to 0 to disable VT52 emulation])
AC_MSG_CHECKING(if you want wide-attribute support)
CF_ARG_DISABLE(wide-attrs,
[ --disable-wide-attrs disable wide-attribute support],
[enable_wattr=no],
[enable_wattr=yes])
AC_MSG_RESULT($enable_wattr)
if test x$enable_wattr = xno && test x$enable_direct_color = xyes ; then
AC_MSG_WARN(overriding wide-attributes to support direct color)
enable_wattr=yes
fi
AC_MSG_CHECKING(if you want wide-character support)
CF_ARG_DISABLE(wide-chars,
[ --disable-wide-chars disable wide-character support],
[enable_wchar=no],
[enable_wchar=yes])
AC_MSG_RESULT($enable_wchar)
test "x$enable_wattr" = xno && AC_DEFINE(OPT_WIDE_ATTRS,0,[Define to 0 to disable rarely-used SGR features])
AC_MSG_CHECKING(if you want only 16-bit character support)
CF_ARG_ENABLE(16bit-chars,
[ --enable-16bit-chars enable 16-bit character support],
[enable_16bit_chars=yes],
[enable_16bit_chars=no])
AC_MSG_RESULT($enable_16bit_chars)
if test "$enable_16bit_chars" = yes ; then
AC_DEFINE(OPT_WIDER_ICHAR,0,[Define to 0 to enable 16-bit character support])
enable_wchar=yes
fi
if test "$enable_wchar" = yes ; then
AC_MSG_CHECKING(if you want to use mini-luit/Latin9 built-in support)
CF_ARG_ENABLE(mini-luit,
[ --enable-mini-luit enable mini-luit (built-in Latin9 support)],
[enable_mini_luit=yes],
[enable_mini_luit=no])
AC_MSG_RESULT($enable_mini_luit)
if test "$enable_mini_luit" = yes ; then
AC_DEFINE(OPT_MINI_LUIT,1,[Define to 1 to enable mini-luit (built-in Latin9 support)])
fi
AC_MSG_CHECKING(if you want to use luit)
CF_ARG_DISABLE(luit,
[ --disable-luit enable luit filter (Unicode translation)],
[enable_luit=no],
[enable_luit=yes])
AC_MSG_RESULT($enable_luit)
if test "$enable_luit" = yes ; then
AC_DEFINE(OPT_LUIT_PROG,1,[Define to 1 to enable luit filter (Unicode translation)])
CF_PATH_PROG(LUIT,xterm-filter,bluit luit)
fi
AC_DEFINE(OPT_WIDE_CHARS,1,[Define to 1 to enable wide-character support])
EXTRAHDRS="$EXTRAHDRS charclass.h precompose.h wcwidth.h"
EXTRASRCS="$EXTRASRCS charclass.c precompose.c wcwidth.c"
EXTRAOBJS="$EXTRAOBJS charclass.o precompose.o wcwidth.o"
fi
AC_MSG_CHECKING(if you want dynamic-abbreviation support)
CF_ARG_ENABLE(dabbrev,
[ --enable-dabbrev enable dynamic-abbreviation support],
[enable_dabbrev=yes],
[enable_dabbrev=no])
AC_MSG_RESULT($enable_dabbrev)
if test "$enable_dabbrev" = yes ; then
AC_DEFINE(OPT_DABBREV,1,[Define to 1 to enable dynamic-abbreviation support])
fi
AC_MSG_CHECKING(if you want DECterm Locator support)
CF_ARG_ENABLE(dec-locator,
[ --enable-dec-locator enable DECterm Locator support],
[enable_dec_locator=yes],
[enable_dec_locator=no])
AC_MSG_RESULT($enable_dec_locator)
if test "$enable_dec_locator" = yes ; then
AC_DEFINE(OPT_DEC_LOCATOR,1,[Define to 1 to enable DECterm Locator support])
fi
AC_MSG_CHECKING(if you want XHTML and SVG screen dump support)
CF_ARG_DISABLE(screen-dumps,
[ --disable-screen-dumps disable XHTML and SVG screen dumps],
[enable_screen_dumps=no],
[enable_screen_dumps=yes])
AC_MSG_RESULT($enable_screen_dumps)
if test "$enable_screen_dumps" = yes ; then
EXTRASRCS="$EXTRASRCS html.c svg.c"
EXTRAOBJS="$EXTRAOBJS html.o svg.o"
else
AC_DEFINE(OPT_SCREEN_DUMPS,0,[Define to 0 to disable XHTML and SVG screen dump support])
fi
AC_MSG_CHECKING(if you want ReGIS graphics support)
CF_ARG_ENABLE(regis-graphics,
[ --enable-regis-graphics enable ReGIS graphics support],
[enable_regis_graphics=yes],
[enable_regis_graphics=no])
AC_MSG_RESULT($enable_regis_graphics)
if test "$enable_regis_graphics" = yes ; then
AC_DEFINE(OPT_REGIS_GRAPHICS,1,[Define to 1 to enable ReGIS graphics support])
EXTRAHDRS="$EXTRAHDRS graphics_regis.h"
EXTRASRCS="$EXTRASRCS graphics_regis.c"
EXTRAOBJS="$EXTRAOBJS graphics_regis.o"
CF_MATH_LIB
fi
AC_MSG_CHECKING(if you want sixel graphics support)
CF_ARG_DISABLE(sixel-graphics,
[ --disable-sixel-graphics disable sixel graphics support],
[enable_sixel_graphics=no],
[enable_sixel_graphics=yes])
AC_MSG_RESULT($enable_sixel_graphics)
if test "$enable_sixel_graphics" = yes ; then
AC_DEFINE(OPT_SIXEL_GRAPHICS,1,[Define to 1 to enable sixel graphics support])
EXTRAHDRS="$EXTRAHDRS graphics_sixel.h"
EXTRASRCS="$EXTRASRCS graphics_sixel.c"
EXTRAOBJS="$EXTRAOBJS graphics_sixel.o"
fi
if test "$enable_regis_graphics" = yes || test "$enable_sixel_graphics" = yes ; then
AC_DEFINE(OPT_GRAPHICS,1,[Defined to 1 to if any graphics mode is enabled])
EXTRAHDRS="$EXTRAHDRS graphics.h"
EXTRASRCS="$EXTRASRCS graphics.c"
EXTRAOBJS="$EXTRAOBJS graphics.o"
STRINGS_MAX=600000
else
STRINGS_MAX=20000
fi
AC_SUBST(STRINGS_MAX)
AC_MSG_CHECKING(if you want sixel screen dump support)
CF_ARG_DISABLE(print-graphics,
[ --disable-print-graphics disable screen dump to sixel support],
[enable_print_graphics=no],
[enable_print_graphics=$enable_regis_graphics])
AC_MSG_RESULT($enable_print_graphics)
if test "$enable_print_graphics" = yes ; then
AC_DEFINE(OPT_PRINT_GRAPHICS,1,[Define to 1 to enable screen dump to sixel support])
fi
AC_MSG_CHECKING(if you want VT420 rectangle support)
CF_ARG_DISABLE(rectangles,
[ --disable-rectangles disable VT420 rectangle support],
[enable_rectangles=no],
[enable_rectangles=yes])
AC_MSG_RESULT($enable_rectangles)
if test "$enable_rectangles" = no ; then
AC_DEFINE(OPT_DEC_RECTOPS,0,[Define to 0 to disable VT420 rectangle support])
fi
AC_MSG_CHECKING(if you want -ziconbeep option)
CF_ARG_DISABLE(ziconbeep,
[ --disable-ziconbeep disable -ziconbeep option],
[enable_ziconbeep=no],
[enable_ziconbeep=yes])
AC_MSG_RESULT($enable_ziconbeep)
test "$enable_ziconbeep" = no && AC_DEFINE(OPT_ZICONBEEP,0,[Define to 0 to disable -ziconbeep option])
###############################################################################
CF_HELP_MESSAGE(Testing/development Options:)
AC_MSG_CHECKING(if you want debugging traces)
CF_ARG_ENABLE(trace,
[ --enable-trace test: set to enable debugging traces],
[enable_trace=yes],
[enable_trace=no])
AC_MSG_RESULT($enable_trace)
if test "$enable_trace" = yes ; then
AC_DEFINE(OPT_TRACE,1,[Define to 1 to enable debugging traces])
EXTRASRCS="$EXTRASRCS trace.c"
EXTRAOBJS="$EXTRAOBJS trace.o"
fi
CF_DISABLE_LEAKS
CF_DISABLE_ECHO
AC_MSG_CHECKING(if you want magic cookie emulation)
CF_ARG_ENABLE(xmc-glitch,
[ --enable-xmc-glitch test: enable xmc magic-cookie emulation],
[enable_xmc=yes],
[enable_xmc=no])
AC_MSG_RESULT($enable_xmc)
if test "$enable_xmc" = yes ; then
AC_DEFINE(EXP_XMC_GLITCH,1,[Define to 1 to enable xmc magic-cookie emulation])
EXTRASRCS="$EXTRASRCS testxmc.c"
EXTRAOBJS="$EXTRAOBJS testxmc.o"
fi
dnl FIXME - extra test needed to make tcap-fkeys work on HPUX
AC_CHECK_FUNCS(tigetstr)
dnl only check for ncurses' use_extended_names if really not using termcap
if test -n "$cf_cv_lib_part_tgetent"; then
AC_CHECK_FUNCS(use_extended_names)
fi
CF_ENABLE_WARNINGS(Wdeclaration-after-statement Wextra Wno-unknown-pragmas Wswitch-enum Wno-cast-qual,yes)
AC_SUBST(EXTRA_CFLAGS)
AC_SUBST(CHARPROC_DEPS)
AC_SUBST(EXTRAHDRS)
AC_SUBST(EXTRASRCS)
AC_SUBST(EXTRAOBJS)
test "$disable_setuid" = yes && AC_DEFINE(DISABLE_SETUID,1,[Define to 1 if you want to disable setuid])
test "$disable_setgid" = yes && AC_DEFINE(DISABLE_SETGID,1,[Define to 1 if you want to disable setgid])
if test $disable_setuid = yes ; then
MAY_SETUID="#"
NOT_SETUID=
elif test $disable_setgid = yes ; then
MAY_SETUID="#"
NOT_SETUID=
else
MAY_SETUID=
NOT_SETUID="#"
fi
AC_SUBST(MAY_SETUID)
AC_SUBST(NOT_SETUID)
### remove from CPPFLAGS the optional features we define in xtermcfg.h
### or other conflicting symbols that may be defined via imake:
for cf_def in \
__STDC__ \
ALLOWLOGGING \
ALLOWLOGFILEEXEC \
OPT_LUIT_PROG \
OPT_WIDE_CHARS \
SCROLLBAR_RIGHT \
USE_TTY_GROUP \
USE_UTEMPTER \
XRENDERFONT
do
CPPFLAGS=`echo "$CPPFLAGS" | sed -e s/-D$cf_def//`
done
CF_MAKE_TAGS
CF_DISABLE_RPATH_HACK
# Force plink.sh to not trim pcre's libraries, which have the same symbol
# names as the system regexp.
if test "$with_pcre" != no
then
LIBS=`echo "$LIBS" | sed -e 's/-lpcre/-kpcre/g'`
fi
### output xtermcfg.h, etc
AC_CONFIG_FILES([Makefile df-install minstall:minstall.in run-tic.sh:run-tic.in])
AC_OUTPUT
|