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
|
dnl Process this file with autoconf to produce a configure script.
dnl written jan/1997
dnl by T.E.Dickey <dickey@clark.net>
dnl and Jim Spath <jspath@mail.bcpl.lib.md.us>
AC_PREREQ(2.12)
rm -f config.cache
AC_INIT(userdefs.h)
AC_CONFIG_HEADER(lynx_cfg.h:config.hin)
AC_PREFIX_DEFAULT(/usr/local)
AC_CANONICAL_HOST
dnl --------------------------------------------------------------------------
dnl Checks for location of programs
dnl --------------------------------------------------------------------------
AC_PROG_CC
AC_PROG_CPP
AC_PROG_RANLIB
AC_PROG_MAKE_SET
CF_MAKE_INCLUDE
AC_PROG_INSTALL
AC_CHECK_PROGS(LINT, lint alint lclint tdlint, [])
AC_AIX
AC_ISC_POSIX
dnl --------------------------------------------------------------------------
dnl Debug/development/test
dnl --------------------------------------------------------------------------
CF_HELP_MESSAGE(
Development Options:)
CF_DISABLE_ECHO
# special case for WWW/*
if test -n "$ECHO_CC" ; then
DONT_ECHO_CC="$SHOW_CC ;"
else
DONT_ECHO_CC=''
fi
AC_SUBST(DONT_ECHO_CC)
AC_MSG_CHECKING(if you want to check memory-leaks)
CF_ARG_ENABLE(find-leaks,
[ --enable-find-leaks logic for testing memory leaks],
[with_leak_checks=yes],
[with_leak_checks=no])
AC_MSG_RESULT($with_leak_checks)
test "$with_leak_checks" = "yes" && AC_DEFINE(LY_FIND_LEAKS)
AC_MSG_CHECKING(if you want to enable debug-code)
CF_ARG_ENABLE(debug,
[ --enable-debug logic for traces/debugging],
[with_debug=yes],
[with_debug=no])
AC_MSG_RESULT($with_debug)
if test "$with_debug" = "yes" ; then
case $host_os in
ultrix*|osf*)
CF_STRIP_O_OPT(CFLAGS)
if test -z "$GCC" ; then
CFLAGS="$CFLAGS -g3"
fi
;;
esac
else
case $host_os in
osf*) #(vi
test -z "$GCC" && CFLAGS="$CFLAGS -std1"
CF_STRIP_G_OPT(CFLAGS)
;;
*)
CF_STRIP_G_OPT(CFLAGS)
;;
esac
fi
if test -n "$GCC"
then
AC_MSG_CHECKING(if you want to turn on gcc warnings)
CF_ARG_ENABLE(warnings,
[ --enable-warnings GCC compiler warnings],
[with_warnings=yes],
[with_warnings=no])
AC_MSG_RESULT($with_warnings)
if test "$with_warnings" = "yes"
then
CF_GCC_ATTRIBUTES
CF_GCC_WARNINGS
fi
fi
dnl --------------------------------------------------------------------------
dnl --------------------------------------------------------------------------
CF_HELP_MESSAGE(
Basic Configuration Options:)
AC_MSG_CHECKING(if you want full utility pathnames)
CF_ARG_DISABLE(full-paths,
[ --disable-full-paths control whether full utility pathnames are used],
[with_full_paths=no],
[with_full_paths=yes])
AC_MSG_RESULT($with_full_paths)
CF_DEFINE_PROG(system mailer, SYSTEM_MAIL,
/usr/mmdf/bin/submit \
/usr/sbin/sendmail \
/usr/lib/sendmail \
)
CF_SYSTEM_MAIL_FLAGS
CF_PATH_PROG(CHMOD, chmod)
CF_PATH_PROG(COMPRESS, compress)
CF_PATH_PROG(COPY, cp)
CF_PATH_PROG(GZIP, gzip)
CF_PATH_PROG(MKDIR, mkdir)
CF_PATH_PROG(MV, mv)
CF_PATH_PROG(RM, rm)
CF_PATH_PROG(TAR, tar)
CF_PATH_PROG(TOUCH, touch)
CF_PATH_PROG(UNCOMPRESS,gunzip)
CF_PATH_PROG(UNZIP, unzip)
CF_PATH_PROG(UUDECODE, uudecode)
CF_PATH_PROG(ZCAT, zcat)
CF_PATH_PROG(ZIP, zip)
dnl 'INSTALL' is a special case, since the configure script has to find a
dnl BSD-compatible one so the build/install works properly.
case "$INSTALL" in
$srcdir*) # (vi
AC_DEFINE_UNQUOTED(INSTALL_PATH,"install")
;;
*) # (vi
AC_DEFINE_UNQUOTED(INSTALL_PATH,"$INSTALL")
;;
esac
dnl --------------------------------------------------------------------------
dnl Checks for compiler & standard-library characteristics
dnl --------------------------------------------------------------------------
dnl If we're able to run this script, this is true!
AC_DEFINE(UNIX)
if test -z "$GCC" ; then
CF_ANSI_CC_CHECK
fi
AC_C_CONST
dnl Only add to this case statement things that we cannot design tests for.
PROG_EXT=
TRY_CFLAGS=
case $host_os in
aix4*)
CFLAGS="$CFLAGS -DAIX4 -D_BSD=44 -D_AIX"
LIBS="$LIBS -lbsd"
;;
aix*)
LIBS="$LIBS -lbsd"
;;
apollo*)
TRY_CFLAGS="$TRY_CFLAGS -D_BUILTINS -W0,-opt,4"
;;
bsdi*)
CFLAGS="$CFLAGS -DBSDI"
;;
clix*)
# Tested on CLIX 3.1 (T.Dickey). The original makefile entry
# contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also
# references -lmalloc and -lbsd.
AC_CHECK_LIB(c_s,strcmp)
;;
convex*)
CFLAGS="$CFLAGS -D__STDC__ -Dunix"
;;
dgux*)
CFLAGS="$CFLAGS -DDGUX"
;;
hpux*)
CFLAGS="$CFLAGS -DSNAKE"
;;
isc*)
# -DPOSIX_JC is necessary, else LYBookmark.c never finds out what a mode_t is.
CFLAGS="$CFLAGS -DISC -DPOSIX_JC"
LIBS="$LIBS -linet -lnsl_s -lcposix"
;;
irix*)
# The original makefile used the $CFLAGS option -cckr for some form
# of K&R compatibility. However, this causes compilation warnings for
# varargs on IRIX 5.2, and does not appear to be needed.
#removed: CFLAGS="$CFLAGS -cckr"
;;
linux*)
CFLAGS="$CFLAGS -DLINUX"
;;
next*)
CFLAGS="$CFLAGS -DNEXT -DXMOSAIC_HACK"
;;
openbsd*)
LIBS="$LIBS -lcompat"
;;
os2*)
# We make sure -Zexe is not used -- it would interfere with @PROG_EXT@
CFLAGS="$CFLAGS -Zmt -D__ST_MT_ERRNO__"
LDFLAGS=`echo "$LDFLAGS -Zmt -Zcrtdll" | sed "s/-Zexe//g"`
PROG_EXT=".exe"
;;
osf4*)
# The -Olimit flag (see below) is no longer available with
# Digital C 5.2, which is bundled with Digital UNIX 4.0.
CFLAGS="$CFLAGS -DDSYS5"
;;
osf*)
# Increase the maximum size of functions that will be optimized.
test -z "$GCC" && TRY_CFLAGS="$TRY_CFLAGS -O -Olimit 4000"
CFLAGS="$CFLAGS -DDSYS5"
;;
sco3.2v5*)
test $ac_cv_prog_gcc != yes && TRY_CFLAGS="$TRY_CFLAGS -belf"
;;
sco*)
LIBS="$LIBS -lmalloc"
# It's a little late to do much, but try to warn user if he's using
# SCO's cc (which is reported to have broken const/volatile).
case "$CC" in #(vi
cc|*/cc)
AC_MSG_WARN(You should consider using gcc or rcc if available)
unset ac_cv_prog_CC
AC_CHECK_PROGS(CC,gcc rcc,$CC)
;;
esac
;;
sequent-ptx)
CFLAGS="$CFLAGS -DSVR4_BSDSELECT -DNO_IOCTL -DUSE_FCNTL"
;;
sequent-ptx2)
CFLAGS="$CFLAGS -DSVR4_BSDSELECT"
;;
sony-newsos*)
CFLAGS="$CFLAGS -I/usr/sony/include"
AC_CHECK_HEADERS(jcurses.h)
;;
svr4)
CFLAGS="$CFLAGS -DSVR4_BSDSELECT -DSVR4"
;;
sunos3*)
CFLAGS="$CFLAGS -DSUN"
;;
sunos4*)
CFLAGS="$CFLAGS -DSUN -DSUN4"
;;
ultrix*)
# Increase the maximum size of functions that will be optimized.
test -z "$GCC" && TRY_CFLAGS="$TRY_CFLAGS -O -Olimit 600 -G 7"
CFLAGS="$CFLAGS -DULTRIX"
AC_CHECK_HEADERS(cursesX.h,
[AC_DEFINE(HAVE_CURSESX_H)
cf_cv_ncurses_header=cursesX.h])
;;
esac
AC_SUBST(PROG_EXT)
dnl Collect tests for compiler options into one place
if test -n "$TRY_CFLAGS" ; then
cf_save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $TRY_CFLAGS"
AC_MSG_CHECKING(if we should use compile options $TRY_CFLAGS)
AC_TRY_COMPILE([#include <stdio.h>],[FILE *fp = stdin],[cf_result=yes],[cf_result=no])
AC_MSG_RESULT($cf_result)
test "$cf_result" = no && CFLAGS="$cf_save_CFLAGS"
fi
dnl --------------------------------------------------------------------------
dnl Checks for library configuration (added right-to-left)
dnl --------------------------------------------------------------------------
### Look for network libraries first, since some functions (such as gethostname)
### are used in a lot of places.
AC_CACHE_CHECK(if you want socks library,cf_cv_use_libsocks,[
AC_ARG_WITH(socks,
[ --with-socks[=path] link with socks library if available],
[cf_cv_use_libsocks=$withval],
[cf_cv_use_libsocks=no])
])
AC_CACHE_CHECK(if you want socks5 library,cf_cv_use_libsocks5,[
AC_ARG_WITH(socks5,
[ --with-socks5[=path] link with socks5 library if available],
[cf_cv_use_libsocks5=$withval],
[cf_cv_use_libsocks5=no])
])
if test "x$cf_cv_use_libsocks" != xno ; then
CF_SOCKS($cf_cv_use_libsocks)
elif test "x$cf_cv_use_libsocks5" != xno ; then
CF_SOCKS5($cf_cv_use_libsocks5)
else
CF_NETLIBS
fi
dnl This has to be cached, since there's a lot of interdependent tests.
AC_CACHE_CHECK(for screen type, cf_cv_screen,[
AC_ARG_WITH(screen,
[ --with-screen=XXX select screen type
(XXX is curses (default), ncurses or slang)],
[
case $withval in
curses|ncurses|slang)
cf_cv_screen=$withval
;;
*) AC_ERROR(Unexpected value)
;;
esac],
[cf_cv_screen=curses])])
if test $cf_cv_screen != ncurses ; then
if eval "test \"`echo '$''{'cf_cv_ncurses_header'+set}'`\" != set"; then
cf_cv_ncurses_header=curses.h
fi
fi
case $cf_cv_screen in
curses)
CF_CURSES_LIBS
CF_CURS_PERFORMANCE
;;
ncurses)
CF_NCURSES_CPPFLAGS
CF_NCURSES_LIBS
;;
slang)
CF_SLANG_CPPFLAGS
CF_SLANG_LIBS
;;
esac
dnl Get the actual value for $libdir, which we will compile into Lynx as part of
dnl the config pathnames.
eval cf_libdir=$libdir
cf_libdir=`echo $cf_libdir | sed -e s@'^NONE/'@$prefix/@ -e s@'^NONE/'@$ac_default_prefix/@`
AC_MSG_CHECKING(for location of config-file)
LYNX_CFG_FILE=$cf_libdir/lynx.cfg
AC_DEFINE_UNQUOTED(LYNX_CFG_FILE,"$LYNX_CFG_FILE")
AC_MSG_RESULT($LYNX_CFG_FILE)
dnl --------------------------------------------------------------------------
dnl Checks for standard headers
dnl --------------------------------------------------------------------------
AC_HEADER_STDC
AC_HEADER_TIME
AC_HEADER_DIRENT
dnl Don't check for sys/wait.h here since it is covered by another test.
AC_CHECK_HEADERS( \
fcntl.h \
limits.h \
stdlib.h \
string.h \
sys/fcntl.h \
sys/filio.h \
sys/ioctl.h \
sys/param.h \
sys/time.h \
termio.h \
termios.h \
unistd.h \
)
CF_TERMIO_AND_TERMIOS
CF_FUNC_WAIT
AC_TYPE_GETGROUPS
AC_TYPE_PID_T
AC_TYPE_UID_T
AC_TYPE_MODE_T
dnl --------------------------------------------------------------------------
dnl Checks for library units
dnl --------------------------------------------------------------------------
AC_FUNC_VFORK
CF_FIONBIO
CF_REMOVE_BROKEN
CF_FUNC_LSTAT
AC_CHECK_FUNCS( \
cuserid \
getcwd \
getgroups \
putenv \
readdir \
strerror \
waitpid \
)
AC_REPLACE_FUNCS( \
mktime \
strstr \
)
CF_CHECK_FUNCDECLS([#include <string.h>], strstr)
CF_CHECK_FUNCDECLS([
#include <stdio.h>
#include <grp.h>], getgrgid getgrnam)
dnl --------------------------------------------------------------------------
dnl Checks for external-data
dnl --------------------------------------------------------------------------
CF_BOOL_DEFS
CF_ERRNO
CF_LOCALE
CF_NGROUPS
CF_SYS_ERRLIST
CF_UTMP
### These tests must be run after establishing the curses library.
if test $cf_cv_screen != slang ; then
CF_ALT_CHAR_SET
CF_FANCY_CURSES
CF_NCURSES_VERSION
CF_NCURSES_BROKEN
CF_COLOR_CURSES
CF_SIZECHANGE
CF_TTYTYPE
AC_CHECK_FUNCS( \
cbreak \
define_key \
keypad \
use_default_colors \
wborder \
)
fi
dnl --------------------------------------------------------------------------
dnl Miscellaneous options that don't need to test system features
dnl --------------------------------------------------------------------------
CF_HELP_MESSAGE(
Miscellaneous Options:)
AC_MSG_CHECKING(if experimental forms-based options screen should be used)
CF_ARG_ENABLE(forms-options,
[ --enable-forms-options use experimental forms-based options],
[use_forms_options=$enableval],
[use_forms_options=no])
AC_MSG_RESULT($use_forms_options)
test $use_forms_options != no && AC_DEFINE(EXP_FORMS_OPTIONS)
AC_MSG_CHECKING(if experimental persistent-cookie logic should be used)
CF_ARG_ENABLE(persistent-cookies,
[ --enable-persistent-cookies use experimental persistent-cookie support],
[use_filed_cookies=$enableval],
[use_filed_cookies=no])
AC_MSG_RESULT($use_filed_cookies)
test $use_filed_cookies != no && AC_DEFINE(EXP_PERSISTENT_COOKIES)
AC_MSG_CHECKING(if color-style code should be used)
CF_ARG_ENABLE(color-style,
[ --enable-color-style use optional/experimental color style],
[use_color_style=$enableval],
[use_color_style=no])
if test $use_color_style != no ; then
if test .$cf_cv_color_curses != .yes ; then
AC_ERROR(Configuration does not support color-styles)
fi
if test $cf_cv_screen = slang ; then
AC_ERROR(Configuration does not support color-styles)
fi
AC_DEFINE(USE_HASH)
AC_DEFINE(LINKEDSTYLES)
fi
case $use_color_style in
no)
AC_MSG_RESULT(no)
INSTALL_LSS=
;;
*)
AC_DEFINE(USE_COLOR_STYLE)
AC_MSG_RESULT(yes)
AC_MSG_CHECKING(for location of style-sheet file)
LYNX_LSS_FILE=$cf_libdir/lynx.lss
AC_DEFINE_UNQUOTED(LYNX_LSS_FILE,"$LYNX_LSS_FILE")
AC_MSG_RESULT($LYNX_LSS_FILE)
INSTALL_LSS=install-lss
;;
esac
AC_SUBST(INSTALL_LSS)
AC_MSG_CHECKING(if partial-display should be used)
CF_ARG_DISABLE(partial,
[ --disable-partial use partial-display logic],
[use_partial_display=$enableval],
[use_partial_display=yes])
AC_MSG_RESULT($use_partial_display)
test $use_partial_display != no && AC_DEFINE(DISP_PARTIAL)
use_dft_colors=no
test ".$cf_cv_screen" = ".slang" && use_dft_colors=maybe
test ".$ac_cv_func_use_default_colors" = ".yes" && use_dft_colors=maybe
if test "$use_dft_colors" != no ; then
AC_MSG_CHECKING(if you want to use default-colors)
CF_ARG_ENABLE(default-colors,
[ --enable-default-colors enable use of default-colors (ncurses/slang)],
[use_dft_colors=yes],
[use_dft_colors=no])
AC_MSG_RESULT($use_dft_colors)
test $use_dft_colors = "yes" && AC_DEFINE(USE_DEFAULT_COLORS)
fi
AC_MSG_CHECKING(if you want to use extended HTML DTD logic)
CF_ARG_DISABLE(extended-dtd,
[ --disable-extended-dtd disable extended HTML DTD logic],
[use_ext_htmldtd=no],
[use_ext_htmldtd=yes])
AC_MSG_RESULT($use_ext_htmldtd)
test $use_ext_htmldtd = "no" && AC_DEFINE(NO_EXTENDED_HTMLDTD)
AC_MSG_CHECKING(if you want to use external commands)
CF_ARG_ENABLE(externs,
[ --enable-externs use external commands],
[use_externs=yes],
[use_externs=no])
AC_MSG_RESULT($use_externs)
test $use_externs != ".no" && AC_DEFINE(USE_EXTERNALS)
AC_MSG_CHECKING(if you want to use setfont support)
CF_ARG_ENABLE(font-switch,
[ --enable-font-switch use Linux setfont for character-translation],
[use_setfont=yes],
[use_setfont=no])
AC_MSG_RESULT($use_setfont)
test $use_setfont = yes && AC_DEFINE(EXP_CHARTRANS_AUTOSWITCH)
AC_MSG_CHECKING(if you want cgi-link support)
CF_ARG_ENABLE(cgi-links,
[ --enable-cgi-links support cgi links w/o a http daemon],
[AC_DEFINE(LYNXCGI_LINKS)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you want exec-links support)
CF_ARG_ENABLE(exec-links,
[ --enable-exec-links support cgi links w/o a http daemon],
[AC_DEFINE(EXEC_LINKS)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you want exec-scripts support)
CF_ARG_ENABLE(exec-scripts,
[ --enable-exec-scripts support cgi links w/o a http daemon],
[AC_DEFINE(EXEC_SCRIPTS)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you want internal-links feature)
CF_ARG_ENABLE(internal-links,
[ --enable-internal-links handle following links to same doc differently],
[use_internal_links=yes],
[use_internal_links=no])
AC_MSG_RESULT($use_internal_links)
test $use_internal_links = no && AC_DEFINE(DONT_TRACK_INTERNAL_LINKS)
AC_MSG_CHECKING(if you want to fork NSL requests)
CF_ARG_ENABLE(nsl-fork,
[ --enable-nsl-fork fork NSL requests, allowing them to be aborted],
[use_nsl_fork=yes],
[use_nsl_fork=no])
AC_MSG_RESULT($use_nsl_fork)
test $use_nsl_fork = yes && AC_DEFINE(NSL_FORK)
AC_MSG_CHECKING(if you want to log URL requests via syslog)
CF_ARG_ENABLE(syslog,
[ --enable-syslog log URL requests via syslog],
[use_syslog=yes],
[use_syslog=no])
AC_MSG_RESULT($use_syslog)
test $use_syslog = yes && AC_DEFINE(SYSLOG_REQUESTED_URLS)
AC_MSG_CHECKING(if you want to underline links)
CF_ARG_ENABLE(underlines,
[ --enable-underlines underline links rather than using boldface],
[use_underline=yes],
[use_underline=no])
AC_MSG_RESULT($use_underline)
test $use_underline = yes && AC_DEFINE(UNDERLINE_LINKS)
AC_MSG_CHECKING(if help files should be gzip'ed)
CF_ARG_ENABLE(gzip-help,
[ --enable-gzip-help install gzip'ed help files],
[use_gzip_help=$enableval],
[use_gzip_help=no])
AC_MSG_RESULT($use_gzip_help)
COMPRESS_PROG=
COMPRESS_EXT=
if test $use_gzip_help = yes ; then
COMPRESS_PROG=$ac_cv_path_GZIP
COMPRESS_EXT=.gz
fi
AC_SUBST(COMPRESS_PROG)
AC_SUBST(COMPRESS_EXT)
AC_MSG_CHECKING(if you want to use zlib for decompression of some gzip files)
AC_ARG_WITH(zlib,
[ --with-zlib use zlib for decompression of some gzip files],
[use_zlib=$withval],
[use_zlib=no])
AC_MSG_RESULT($use_zlib)
if test ".$use_zlib" != ".no" ; then
CF_FIND_LIBRARY(z,
[#include <zlib.h>],
[gzopen("name","mode")],
gzopen)
AC_DEFINE(USE_ZLIB)
fi
dnl --------------------------------------------------------------------------
dnl DirEd (directory-editor) options
dnl --------------------------------------------------------------------------
CF_HELP_MESSAGE(
Directory Editor Options:)
# All DirEd functions that were enabled on compilation can be disabled
# or modified at run time via DIRED_MENU symbols in lynx.cfg.
AC_MSG_CHECKING(if directory-editor code should be used)
CF_ARG_DISABLE(dired,
[ --disable-dired enable optional directory-editor, DirEd],
[use_dired=$enableval],
[use_dired=yes])
AC_MSG_RESULT($use_dired)
if test ".$use_dired" != ".no" ; then
AC_DEFINE(DIRED_SUPPORT)
AC_MSG_CHECKING(if you wish to allow extracting from archives via DirEd)
CF_ARG_DISABLE(dired-archive,
[ --disable-dired-archive disable dearchiving commands],[AC_DEFINE(ARCHIVE_ONLY)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you wish to allow users to redefine DirEd keys)
CF_ARG_DISABLE(dired-override,
[ --disable-dired-override disable private keymaps],,[AC_DEFINE(OK_OVERRIDE)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you wish to allow permissions commands via DirEd)
CF_ARG_DISABLE(dired-permit,
[ --disable-dired-permit disable chmod/attrib commands],,[AC_DEFINE(OK_PERMIT)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you wish to allow executable-permission commands via DirEd)
CF_ARG_DISABLE(dired-xpermit,
[ --disable-dired-xpermit disable chmod/attrib commands],[AC_DEFINE(NO_CHANGE_EXECUTE_PERMS)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you wish to allow "tar" commands from DirEd)
CF_ARG_DISABLE(dired-tar,
[ --disable-dired-tar disable "tar" command],,[AC_DEFINE(OK_TAR)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you wish to allow "uudecode" commands from DirEd)
CF_ARG_DISABLE(dired-uudecode,
[ --disable-dired-uudecode disable "uudecode" command],,[AC_DEFINE(OK_UUDECODE)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you wish to allow "zip" and "unzip" commands from DirEd)
CF_ARG_DISABLE(dired-zip,
[ --disable-dired-zip disable "zip", "unzip" commands],,[AC_DEFINE(OK_ZIP)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if you wish to allow "gzip" and "gunzip" commands from DirEd)
CF_ARG_DISABLE(dired-gzip,
[ --disable-dired-gzip disable "gzip", "gunzip" commands],,[AC_DEFINE(OK_GZIP)])
AC_MSG_RESULT($enableval)
fi
AC_MSG_CHECKING(if you want long-directory listings)
CF_ARG_DISABLE(long-list,
[ --disable-long-list disable long "ls -l" directory listings],,
[AC_DEFINE(LONG_LIST)])
AC_MSG_RESULT($enableval)
AC_MSG_CHECKING(if parent-directory references are permitted)
CF_ARG_DISABLE(parent-dir-refs,
[ --disable-parent-dir-refs
disable "Up-to" links in directory listings],
[AC_DEFINE(NO_PARENT_DIR_REFERENCE)])
AC_MSG_RESULT($enableval)
### Finally, build config.h and the makefiles
CFLAGS="$CFLAGS $EXTRA_CFLAGS"
srcdir="$srcdir"
SRCDIR_CLEAN="#"
if test -n "$srcdir" ; then
echo srcdir is $srcdir
$srcdir/mkdirs.sh WWW/Library/unix
$srcdir/mkdirs.sh src/chrtrans
test "$srcdir" != "." && SRCDIR_CLEAN=""
fi
AC_SUBST(SRCDIR_CLEAN)
AC_OUTPUT(
makefile \
WWW/Library/unix/makefile \
src/makefile \
src/chrtrans/makefile \
)
|