-
Notifications
You must be signed in to change notification settings - Fork 41
/
configure.ac
615 lines (536 loc) · 15.8 KB
/
configure.ac
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
dnl Autoconf script for tcsh
dnl To rebuild the `configure' script from this, execute the command
dnl autoreconf
dnl in the directory containing this script.
dnl
dnl You'll also need a version of config.guess from a gnu package
dnl
dnl Written by Kaveh Ghazi (ghazi@caip.rutgers.edu) 5/11/96.
dnl
dnl UPDATE THIS SECTION FOR RELEASE
dnl
AC_DEFUN([TCSH_VERSION], [6.24.13])
AC_DEFUN([TCSH_DATE], [2024-06-12])
AC_PREREQ([2.69])dnl Minimum Autoconf version required.
AC_INIT([Tcsh],TCSH_VERSION,[https://bugs.astron.com/],,[https://www.tcsh.org/])
AC_SUBST(PACKAGE_DATE, TCSH_DATE)
AC_SUBST(PACKAGE_ORIGIN, [Astron])
AC_SUBST(PACKAGE_MAILLIST, [https://mailman.astron.com/mailman/listinfo/tcsh])
package_year="${PACKAGE_DATE%%-*}"
package_month="${PACKAGE_DATE#*-}"
package_month="${package_month%-*}"
package_day="${PACKAGE_DATE##*-}"
package_day="${package_day#0}"
AS_CASE([${package_month}],
[01], [package_month_name=January],
[02], [package_month_name=February],
[03], [package_month_name=March],
[04], [package_month_name=April],
[05], [package_month_name=May],
[06], [package_month_name=June],
[07], [package_month_name=July],
[08], [package_month_name=August],
[09], [package_month_name=September],
[10], [package_month_name=October],
[11], [package_month_name=November],
[12], [package_month_name=December])
PACKAGE_ENGLISH_DATE="${package_month_name} ${package_day}, ${package_year}"
AC_SUBST(PACKAGE_ENGLISH_DATE)
package_changelog_date_format='+%a, %d %b %Y %T %z'
AC_SUBST(PACKAGE_CHANGELOG_DATE)
PACKAGE_REV="${PACKAGE_VERSION%%.*}"
AC_SUBST(PACKAGE_REV)
PACKAGE_VERS="${PACKAGE_VERSION#*.}"
PACKAGE_VERS="${PACKAGE_VERS%.*}"
AC_SUBST(PACKAGE_VERS)
PACKAGE_PATCHLEVEL="${PACKAGE_VERSION##*.}"
PACKAGE_PATCHLEVEL="${PACKAGE_PATCHLEVEL##0}"
AC_SUBST(PACKAGE_PATCHLEVEL)
RELEASE_TAG="$(echo "TCSH${PACKAGE_VERSION}" | tr . _)"
AC_SUBST(RELEASE_TAG)
AC_CONFIG_AUX_DIR([acaux])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([tc.vers.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_TESTDIR([.], [.])
AC_PROG_INSTALL()
AC_CANONICAL_HOST()
AM_ICONV()
AC_MSG_CHECKING([cached host tuple])
AS_IF([{ test x"${ac_cv_host_system_type+set}" = x"set" &&
test x"$ac_cv_host_system_type" != x"$host"; }],
[AC_MSG_RESULT([different])
AC_MSG_ERROR([remove config.cache and re-run configure])],
[AC_MSG_RESULT(ok)])
ac_cv_host_system_type="$host"
AS_CASE([${host}],
[*-*-darwin*|*-*-freebsd*|*-*-rhapsody*], [dnl
PACKAGE_CHANGELOG_DATE="$(
TZ=UTC date -v0H -v0M -v0S \
-v${package_year}y \
-v${package_month}m \
-v${package_day}d \
"${package_changelog_date_format}"
)"],
[*-*-openbsd*], [dnl
PACKAGE_CHANGELOG_DATE="$(
TZ=UTC date -j \
"${package_changelog_date_format}" \
${package_year}${package_month}${package_day}0000
)"],
# Default: NetBSD, GNU core utilities (i.e. most Linux)
[dnl
PACKAGE_CHANGELOG_DATE="$(
TZ=UTC date -d ${PACKAGE_DATE} \
"${package_changelog_date_format}"
)"])
AS_CASE([${host}],
## Alpha (DEC) machines.
[alpha*-dec-osf*], [dnl
tcsh_config_file=decosf1
],
## Ultrix
[*-dec-ultrix*], [dnl
tcsh_config_file=ultrix
],
## DGUX
[*-dg-dguxR4*], [dnl
tcsh_config_file=dgux5.4
],
[m88k-dg-dgux5.4R*], [dnl
tcsh_config_file=dgux5.4
],
## HP/UX
[*-hp-hpux7*], [dnl
tcsh_config_file=hpux7
],
[*-hp-hpux@<:@89@:>@*], [dnl
tcsh_config_file=hpux8
],
[*-hp-hpux1@<:@0-9@:>@*], [dnl
tcsh_config_file=hpux11
],
## IBM AIX systems
[*-ibm-aix*], [dnl
tcsh_config_file=aix
],
## SX-4
[sx4-nec-*], [dnl
CC='cc -h0,ansi,novector,float0'
LDFLAGS='-Gsmall'
tcsh_config_file=superux8
],
## IBM OS/390 systems
[*-ibm-os390*], [dnl
CC='c89'
tcsh_config_file=os390
],
## Android
[*-*-android*], [dnl
tcsh_config_file=android
],
## Linux
[*-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu], [dnl
tcsh_config_file=linux
],
## Motorola systems
[m68k-motorola-sysv*], [dnl
tcsh_config_file=sysV68
],
[m88k-motorola-sysv3*], [dnl
tcsh_config_file=sysV88
],
## Minix systems
[*-*-minix*], [dnl
tcsh_config_file=minix
],
## NetBSD systems
[*-*-netbsd*], [dnl
tcsh_config_file=bsd4.4
],
## FreeBSD systems
[*-*-freebsd*], [dnl
tcsh_config_file=bsd4.4
],
## MidnightBSD systems
[*-*-midnightbsd*], [dnl
tcsh_config_file=bsd4.4
],
## DragonFlyBSD systems
[*-*-dragonfly*], [dnl
tcsh_config_file=bsd4.4
],
## MirBSD systems
[*-*-mirbsd*], [dnl
tcsh_config_file=bsd4.4
],
## OpenBSD systems
[*-*-openbsd*], [dnl
tcsh_config_file=bsd4.4
],
## BSDI systems
[*-*-bsdi*], [dnl
tcsh_config_file=bsd4.4
],
## Mac OS X Server
[*-*-rhapsody*], [dnl
tcsh_config_file=bsd4.4
],
## Mac OS X Server
[*-*-darwin*], [dnl
tcsh_config_file=bsd4.4
],
## DragonFly systems
[*-*-dragonfly*], [dnl
tcsh_config_file=bsd4.4
],
## Silicon Graphics machines
[*-sgi-iri*], [dnl
tcsh_config_file=irix
AS_CASE([${host_os}],
[irix@<:@34@:>@*], [# Irix-3.x - Irix 4.x
NON_GNU_DFLAGS='-D__STDC__'
LIBS='-lsun -lbsd -lc_s'
],
[irix5* | irix6.@<:@01@:>@*], [# Irix 5.x, Irix 6.0 - 6.1
LIBS='-lbsd'
],
[irix6.@<:@2-9@:>@*], [# Irix 6.2 and later
tcsh_config_file=irix62
])
],
## Suns
[*-sun-sunos3*], [dnl
tcsh_config_file=sunos35
],
[*-sun-sunos4.0*], [dnl
tcsh_config_file=sunos40
],
[*-sun-sunos4.1.@<:@12@:>@*], [dnl
tcsh_config_file=sunos41
],
[*-sun-sunos4.1.@<:@3456@:>@*], [dnl
tcsh_config_file=sunos413
],
[*-*-solaris2.@<:@01@:>@], [# Should handle sparc or x86
tcsh_config_file=sol2
],
[*-sun-solaris2.2], [# Sparc only release
tcsh_config_file=sol22
],
[*-sun-solaris2.3], [# Sparc only release
tcsh_config_file=sol23
],
[*-*-solaris2.@<:@45@:>@], [# Should handle sparc, x86 and powerpc
tcsh_config_file=sol24
],
[*-*-solaris2.@<:@678@:>@], [# Should handle sparc, x86 and powerpc
tcsh_config_file=sol26
],
[*-*-solaris2.*], [# Should handle sparc, x86 and powerpc
tcsh_config_file=sol29
],
## Dell SVR4
[*-dell-sysv4*], [dnl
tcsh_config_file=sysv4
DFLAGS="$DFLAGS -DDELL"
],
## SVR4 (Generic and otherwise)
[*-*-sysv4*], [dnl
tcsh_config_file=sysv4
],
## Tektronix systems
[m68k-tektronix-bsd*], [dnl
tcsh_config_file=bsd
NON_GNU_DFLAGS='-DBSD -DUTek'
],
[m88k-tektronix-sysv3*], [dnl
tcsh_config_file=tekXD88
],
## SCO
[*-sco3.2v5*], [dnl
tcsh_config_file=sco32v5
],
[*-sco3.2v4*], [dnl
tcsh_config_file=sco32v4
],
[*-sco3.2v2*], [dnl
tcsh_config_file=sco32v2
],
## Siemens BS2000 Mainframe
[bs2000-siemens-*], [dnl
tcsh_config_file=bs2000
],
## Convex
[*-convex*], [dnl
tcsh_config_file=convex
],
## Cray
[*-cray-unicos*], [dnl
tcsh_config_file=cray
],
## Red Hat Cygwin
[*-cygwin], [dnl
tcsh_config_file=cygwin
],
## mips-compaq-nonstopux
[*-*-nonstopux], [dnl
tcsh_config_file=sysv4
],
## Apollo Domain/OS
[*-apollo-*], [dnl
tcsh_config_file=apollo
],
## QNX6
[*-qnx6*], [dnl
tcsh_config_file=qnx6
],
[AC_MSG_ERROR([Tcsh can't guess the configuration file name
for `${host}' systems.
Check tcsh's `Ported' file for manual configuration instructions.])])
AC_MSG_NOTICE([using configuration file `$tcsh_config_file'])
cp ${srcdir}/system/${tcsh_config_file} config_p.h
AH_BOTTOM(
[#include "config_p.h"
#include "config_f.h"])
dnl Checks for programs
AC_PROG_CC()
AC_PROG_CPP()
AC_PATH_PROG([GENCAT], [gencat])
dnl Require build CC to create gethost helper when cross building
AS_IF([test "x${cross_compiling}" = xyes],
[CC_FOR_GETHOST="cc"],
[CC_FOR_GETHOST="\$(CC)"])
AC_SUBST(CC_FOR_GETHOST)
AS_IF([test "x${cross_compiling}" = xno],
[CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD:-"\$(CFLAGS)"}])
AC_SUBST(CFLAGS_FOR_BUILD)
AS_IF([test "x${cross_compiling}" = xno],
[CPPFLAGS_FOR_BUILD=${CPPFLAGS_FOR_BUILD:-"\$(CPPFLAGS)"}])
AC_SUBST(CPPFLAGS_FOR_BUILD)
AS_IF([test "x${cross_compiling}" = xno],
[LDFLAGS_FOR_BUILD=${LDFLAGS_FOR_BUILD:-"\$(LDFLAGS)"}])
AC_SUBST(LDFLAGS_FOR_BUILD)
AS_IF([test "x$GCC" != xyes],
[DFLAGS="$DFLAGS $NON_GNU_DFLAGS"
CFLAGS="$CFLAGS $NON_GNU_CFLAGS"])
dnl More recent Android requires PIEs
AS_CASE([${host}],
[*-*-android*], [dnl
CFLAGS="${CFLAGS} -fPIE"
LDFLAGS="${LDFLAGS} -pie"
])
dnl Checks for libraries
AC_SEARCH_LIBS(crypt, crypt)
AC_SEARCH_LIBS(getspnam, sec)
AC_SEARCH_LIBS([tgetent], [termlib tinfo termcap curses ncurses], [], [
AC_MSG_ERROR([unable to find the tgetent() function])
])
AC_SEARCH_LIBS(gethostbyname, nsl)
AC_SEARCH_LIBS(connect, socket)
AC_SEARCH_LIBS(catgets, catgets)
dnl Checks for header files
AC_CHECK_HEADERS([auth.h crypt.h features.h inttypes.h paths.h] dnl
[shadow.h stdint.h utmp.h utmpx.h])
AC_CHECK_HEADERS([wchar.h],
[AC_CHECK_SIZEOF([wchar_t], [], [dnl
#include <stdio.h>
#include <wchar.h>
])
AC_CHECK_HEADERS([wctype.h])])
AC_HEADER_DIRENT()
AC_HEADER_STAT()
dnl Checks for types
AC_CHECK_TYPES([long long])
AC_TYPE_GETGROUPS()
AC_TYPE_MODE_T()
AC_TYPE_SIZE_T()
AC_TYPE_UID_T()
AC_TYPE_UINT32_T()
AC_DEFUN([AC_TYPE_SSIZE_T], [
AC_CHECK_TYPE(ssize_t,,
AC_DEFINE(ssize_t, int, [Define to `int' not defined in <sys/types.h>.]), [dnl
#include <sys/types.h>
])
])
AC_TYPE_SSIZE_T()
AC_DEFUN([AC_TYPE_SOCKLEN_T], [
AC_CHECK_TYPE(socklen_t,,
AC_DEFINE(socklen_t, int, [Define to `int' if neither <sys/types.h> nor <sys/socket.h> define.]), [dnl
#include <sys/types.h>
#include <sys/socket.h>
])
])
AC_TYPE_SOCKLEN_T()
dnl Checks for structures
AC_CHECK_MEMBERS([struct dirent.d_ino], , , [dnl
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#else
# ifdef HAVE_NDIR_H
# include <ndir.h>
# else
# include <sys/dir.h>
# endif
# define dirent direct
#endif
])
AC_CHECK_MEMBERS([struct utmp.ut_host, struct utmp.ut_user, struct utmp.ut_tv,
struct utmp.ut_xtime, struct utmpx.ut_host,
struct utmpx.ut_user, struct utmpx.ut_tv,
struct utmpx.ut_xtime], , , [dnl
#include <sys/types.h>
#ifdef HAVE_UTMPX_H
#include <utmpx.h>
#define utmp utmpx
#elif defined HAVE_UTMP_H
#include <utmp.h>
#endif
])
AC_CHECK_MEMBERS([struct sockaddr_storage.ss_family], , , [dnl
#include <sys/types.h>
#include <sys/socket.h>
])
dnl Checks for compiler characteristics
AC_C_CONST()
AC_C_VOLATILE()
dnl checks for library functions
AC_CHECK_DECLS([crypt, environ, gethostname, getpgrp], , , [dnl
#include "config_p.h"
AC_INCLUDES_DEFAULT([])
#ifdef HAVE_CRYPT_H
#include <crypt.h>
#endif
])
AC_CHECK_FUNC([setlocale], [have_setlocale=yes], [have_setlocale=no])
AC_CHECK_FUNC([catgets], [have_catgets=yes], [have_catgets=no])
AC_CHECK_FUNCS([dup2 getauthid getcwd gethostname getpwent] dnl
[getutent getutxent mallinfo mallinfo2 mblen memmove memset] dnl
[mkstemp nice setproctitle] dnl
[nl_langinfo sbrk setpgid setpriority strerror strstr sysconf wcwidth])
AC_FUNC_GETPGRP()
AC_FUNC_MBRTOWC()
AS_IF([test "x${cross_compiling}" != xyes],
[AC_FUNC_SETPGRP()],
[ac_cv_func_setpgrp_void=yes])
AC_FUNC_STRCOLL()
AS_IF([test x"$ac_cv_func_sbrk" = x"yes"],
[AC_MSG_CHECKING([for working sbrk])
AC_RUN_IFELSE([AC_LANG_PROGRAM([[
#include <unistd.h>
]], [[
return sbrk(2048) == (void*)-1;
]])],
[AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_WORKING_SBRK], [1], [Define to 1 if sbrk(N) works.])],
[AC_MSG_RESULT([no; use system malloc])],
[AC_MSG_RESULT([unknown - cross compiling])])],
[AC_MSG_NOTICE([sbrk not present; use system malloc])])
dnl This is not good enough; we need sockaddr_storage too.
dnl See whether we can use IPv6 related functions
dnl AC_DEFUN([IPv6_CHECK_FUNC], [
dnl ac_tr_lib=HAVE_`echo $1 | sed -e 's/@<:@^a-zA-Z0-9_@:>@/_/g' \
dnl -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
dnl AC_CHECK_FUNC($1, [dnl
dnl AC_DEFINE_UNQUOTED($ac_tr_lib)
dnl ac_cv_lib_inet6_$1=no], [dnl
dnl AC_MSG_CHECKING([whether your system has IPv6 directory])
dnl AC_CACHE_VAL(ipv6_cv_dir, [dnl
dnl for ipv6_cv_dir in /usr/local/v6 /usr/inet6 no; do
dnl if test $ipv6_cv_dir = no -o -d $ipv6_cv_dir; then
dnl break
dnl fi
dnl done])dnl
dnl AC_MSG_RESULT($ipv6_cv_dir)
dnl if test $ipv6_cv_dir = no; then
dnl ac_cv_lib_inet6_$1=no
dnl else
dnl if test x$ipv6_libinet6 = x; then
dnl ipv6_libinet6=no
dnl SAVELDFLAGS="$LDFLAGS"
dnl LDFLAGS="-L$ipv6_cv_dir/lib"
dnl fi
dnl AC_CHECK_LIB(inet6, $1, [dnl
dnl AC_DEFINE_UNQUOTED($ac_tr_lib)
dnl if test $ipv6_libinet6 = no; then
dnl ipv6_libinet6=yes
dnl LIBS="$LIBS -linet6"
dnl fi],)dnl
dnl if test $ipv6_libinet6 = no; then
dnl LDFLAGS="$SAVELDFLAGS"
dnl fi
dnl fi])dnl
dnl if test $ac_cv_func_$1 = yes -o $ac_cv_lib_inet6_$1 = yes
dnl then
dnl ipv6_cv_$1=yes
dnl ifelse([$2], , :, [$2])
dnl else
dnl ipv6_cv_$1=no
dnl ifelse([$3], , :, [$3])
dnl fi])
dnl IPv6_CHECK_FUNC(getnameinfo, DFLAGS="$DFLAGS -DINET6")
AC_SUBST(DFLAGS)
dnl Checks for system services
AS_IF([test "$have_setlocale" != no],
[AC_ARG_ENABLE([nls], AS_HELP_STRING([--disable-nls], [Disable NLS support]),
[], [enable_nls=yes])
AS_IF([test "x$enable_nls" != xno],
[AC_DEFINE([NLS], [1], [Support NLS.])])])
AS_IF([{ test "x$enable_nls" != xno &&
test "$have_catgets" != no &&
test -n "$GENCAT"; }],
[AC_ARG_ENABLE([nls-catalogs],
AS_HELP_STRING([--disable-nls-catalogs], [Disable NLS catalog support]),
[], [enable_nls_catalogs=yes])
AS_IF([test "x$enable_nls_catalogs" != xno],
[BUILD_CATALOGS="yes"
AC_DEFINE([NLS_CATALOGS], [1], [Support NLS catalogs.])])])
AC_ARG_WITH(hesiod,
[ --with-hesiod=PREFIX Use Hesiod lookup for ~ expansion],
[hesiod="$withval"], [hesiod=no])
AS_IF([test "$hesiod" != no],
[HESLIB="-lhesiod"
AC_CHECK_FUNC(res_send, :,
AC_CHECK_LIB(resolv, res_send, HESLIB="$HESLIB -lresolv"))
HESDEF=-DHESIOD
AS_IF([test "$hesiod" != yes],
[HESDEF="$HESDEF -I$hesiod/include"
HESLIB="-L$hesiod/lib $HESLIB"])])
AC_SUBST(HESDEF)
AC_SUBST(HESLIB)
AC_SUBST(BUILD_CATALOGS)
AC_CONFIG_FILES([
Makefile
atlocal
dch-template
nls/Makefile
patchlevel.h
tcsh.man
])
AC_OUTPUT()
AC_MSG_NOTICE([========= Configuration results =========])
AC_MSG_NOTICE([BUILD_CATALOGS $BUILD_CATALOGS])
AC_MSG_NOTICE([CC $CC])
AC_MSG_NOTICE([CC_FOR_GETHOST $CC_FOR_GETHOST])
AC_MSG_NOTICE([CFLAGS_FOR_BUILD $CFLAGS_FOR_BUILD])
AC_MSG_NOTICE([CPPFLAGS_FOR_BUILD $CPPFLAGS_FOR_BUILD])
AC_MSG_NOTICE([LDFLAGS_FOR_BUILD $LDFLAGS_FOR_BUILD])
AC_MSG_NOTICE([CFLAGS $CFLAGS])
AC_MSG_NOTICE([CPP $CPP])
AC_MSG_NOTICE([CPPFLAGS $CPPFLAGS])
AC_MSG_NOTICE([DFLAGS $DFLAGS])
AC_MSG_NOTICE([HESDEF $HESDEF])
AC_MSG_NOTICE([HESLIB $HESLIB])
AC_MSG_NOTICE([LDFLAGS $LDFLAGS])
AC_MSG_NOTICE([LIBICONV $LIBICONV])
AC_MSG_NOTICE([LIBS $LIBS])
AC_MSG_NOTICE([PACKAGE_CHANGELOG_DATE $PACKAGE_CHANGELOG_DATE])
AC_MSG_NOTICE([PACKAGE_DATE $PACKAGE_DATE])
AC_MSG_NOTICE([PACKAGE_ENGLISH_DATE $PACKAGE_ENGLISH_DATE])
AC_MSG_NOTICE([PACKAGE_PATCHLEVEL $PACKAGE_PATCHLEVEL])
AC_MSG_NOTICE([PACKAGE_REV $PACKAGE_REV])
AC_MSG_NOTICE([PACKAGE_VERS $PACKAGE_VERS])
AC_MSG_NOTICE([PACKAGE_VERSION $PACKAGE_VERSION])
AC_MSG_NOTICE([RELEASE_TAG $RELEASE_TAG])
AC_MSG_NOTICE([tcsh_config_file system/$tcsh_config_file])
AC_MSG_NOTICE([=========================================])