-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.in
677 lines (599 loc) · 17.7 KB
/
configure.in
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
#
# shx-0.2 configure script
# December 17, 2002
# Devin Teske <[email protected]>
#
# $Id: configure.in,v 2.0 2002/12/17 9:39:10 teske Exp $
#
AC_INIT(include/main.h)
AC_PREREQ(2.12)
AC_REVISION($Revision: 2.0 $)
AC_CONFIG_HEADER(include/config.h)
AC_PREFIX_DEFAULT(/usr/local/bin)
AC_CONFIG_AUX_DIR(cfgaux)
AC_CANONICAL_HOST
# add a .exe suffix to the binary if we are on a win32 host
case "$host_os" in
cygwin|cygwin32|os2)
exec_suffix=".exe"
;;
*)
exec_suffix=""
;;
esac
AC_SUBST(exec_suffix)
AC_DEFINE_UNQUOTED(CONFIG_HOST_TYPE, "$host")
# is the server included in this package?
hotline_server="no"
# Substitutions
AC_SUBST(CFLAGS)
AC_SUBST(TARGETS)
AC_SUBST(hxdirs)
AC_SUBST(INCLUDES)
AC_SUBST(SYS_INCLUDES)
AC_SUBST(HXOBJS)
AC_SUBST(SHARED_OBJS)
AC_SUBST(HXLIBS)
AC_SUBST(SHAREDLIBS)
AC_SUBST(CDEFS)
# list of default makefiles to produce:
makefiles="\
./makefile \
./src/Makefile "
############################## Compiler Settings ##############################
# Set default LDFLAGS
if test -z "$LDFLAGS"; then
LDFLAGS="-g"
fi
PRESET_CFLAGS="$CFLAGS"
# Check for GNU cc
AC_PROG_CC
if test $cross_compiling = yes; then
AC_CHECK_PROGS(BUILD_CC, gcc cc)
CC=$BUILD_CC
fi
# Check for ISC POSIX for additional arguments to compiler
AC_ISC_POSIX
# Gerban Wierda <[email protected]>
case "$host" in
mab-next-nextstep3)
CC="$CC -arch m68k -arch i486 -arch hppa -arch sparc"
;;
esac
# Set Default CFLAGS
if test -z "$PRESET_CFLAGS"; then
if test "$GCC" = "yes"; then
case "$host" in
*-sun-sunos*)
# sunos has too many warnings for this to be useful
# motorola too
;;
*m88k*)
# Motorola cc/ld does not like -O2 but is ok on -O
CFLAGS=`echo $CFLAGS | sed -e 's/-O[0-9]/-O/'`
;;
*)
CFLAGS="$CFLAGS -Wall"
;;
esac
else
case "$host" in
*mips-sgi-irix6.*)
# suggested by Rafael Seidl <[email protected]>
CFLAGS="$CFLAGS -n32 -mips3 -O3 -OPT:Olimit=0:space=OFF \
-woff 1009,1014,1048,1110,1116,1185,1188,1204,1230,1233 \
-Wl,-woff,85,84,-woff,134 \
-nostdinc -I/usr/include -D_BSD_SIGNALS"
;;
alpha-dec-osf4.*)
# Mogul says DEC compilers take both -g and -O2
CFLAGS=`echo $CFLAGS | sed -e 's/-g/-g3/'`
CFLAGS="$CFLAGS -O2"
;;
*)
;;
esac
fi
fi
# Set LDFLAGS
if test -z "$PRESET_LDFLAGS"; then
if test "$GCC" = "yes"; then
case "$host" in
*)
# nothing
;;
esac
else
case "$host" in
*mips-sgi-irix6.*)
# suggested by Rafael Seidl <[email protected]>
LDFLAGS="-n32 -mips3 -nostdlib -L/usr/lib32"
;;
esac
fi
fi
############################### Enable Options ###############################
# Enable optional compile settings
echo "Enable Options:"
echo ""
AC_ARG_ENABLE(warnings,
[ --enable-warnings Show compiler warnings],
[ if test "$enableval" = "no" ; then
CFLAGS=`echo $CFLAGS | sed -e 's/\ -Wall//'`
CFLAGS="-w $CFLAGS"
else
echo " Compiler warnings enabled"
fi
],
[ CFLAGS=`echo $CFLAGS | sed -e 's/\ -Wall//'`
CFLAGS="-w $CFLAGS"
])
hotline_client="yes"
AC_ARG_ENABLE(hotline_client,
[ --disable-hotline-client Don't compile hotline client],
[ if test "$enableval" = "no" ; then
hotline_client="no"
fi
])
if test "$hotline_client" = "yes" ; then
echo " Hotline client enabled"
fi
# shared by the server and client
AC_ARG_ENABLE(htxf-pthread,
[ --enable-htxf-pthread use pthread instead of fork or clone for htxf],
[ if test "$enableval" = "yes" ; then
use_pthread="yes"
fi
])
AC_ARG_ENABLE(htxf-clone,
[ --enable-htxf-clone use clone instead of fork for htxf],
[ if test "$enableval" = "yes" ; then
use_clone="yes"
fi
])
# only enable htxf when something that uses it is enabled
if test "$hotline_server" = "yes" -o "$hotline_client" = "yes"; then
if test "$use_pthread" = "yes" ; then
echo " pthreads enabled for file transfers"
AC_DEFINE(CONFIG_HTXF_PTHREAD)
AC_CHECK_HEADERS(pthread.h)
# fark! darwin has no pthread_kill, kill should do fine
case "$host" in
*-darwin*)
#AC_DEFINE(pthread_kill(A,B) kill(A,B))
;;
esac
AC_CHECK_LIB(pthread, main)
# damn! FreeBSD's pthreads break dup2().
case "$host" in
i386-unknown-freebsd*)
HXLIBS="$HXDLIBS -pthread";;
i386-unknown-openbsd*)
HXLIBS="$HXDLIBS -pthread";;
*)
HXLIBS="$HXDLIBS -lpthread";;
esac
use_clone="no"
elif test "$use_clone" = "yes"; then
echo " clone enabled for file transfers"
AC_DEFINE(CONFIG_HTXF_CLONE)
AC_CHECK_HEADER(sched.h)
AC_CHECK_HEADER(asm/pal.h)
else
echo " fork enabled for file transfers"
AC_DEFINE(CONFIG_HTXF_FORK)
fi
fi
# shared by the client and server
AC_ARG_ENABLE(htxf-preview,
[ --enable-htxf-preview enable image preview (needs ImageMagick)],
[ if test "$enableval" = "yes" ; then
# only enable htxf-preview when something that uses it is enabled
if test "$hotline_server" = "yes" -o "$hotline_client" = "yes" ; then
echo " image preview for ghx enabled"
AC_DEFINE(CONFIG_HTXF_PREVIEW)
SYS_INCLUDES="$SYS_INCLUDES -I/usr/X11R6/include -I/usr/X11R6/include/X11"
SHAREDLIBS="$SHAREDLIBS `Magick-config --libs`"
fi
fi
])
# shared by the client and server
enable_hfs="yes"
AC_ARG_ENABLE(hfs,
[ --disable-hfs disable HFS file system emulation],
[ if test "$enableval" = "no" ; then
enable_hfs="no"
fi
])
# only enable hfs when something that uses it is enabled
if test "$hotline_server" = "yes" -o "$hotline_client" = "yes" ; then
if test "$enable_hfs" = "yes" ; then
echo " HFS emulation enabled"
HXLIBS="$HXLIBS hfs/hfs.o"
hxdirs="$hxdirs hfs"
makefiles="$makefiles ./src/hfs/Makefile"
AC_DEFINE(CONFIG_HFS)
else
echo " HFS emulation disabled"
fi
fi
# shared by the client and server
AC_ARG_ENABLE(hope,
[ --enable-hope enable HOPE],
[ if test "$enableval" = "yes" ; then
use_hope="yes"
fi
])
# only enable hope when something that uses it is enabled
if test "$hotline_server" = "yes" -o "$hotline_client" = "yes" ; then
if test "$use_hope" = "yes" ; then
echo " HOPE enabled"
AC_DEFINE(CONFIG_HOPE)
AC_CHECK_HEADER(endian.h)
SHAREDLIBS="$SHAREDLIBS hope/hmac.o hope/md5.o hope/sha.o"
SHAREDLIBS="$SHAREDLIBS hope/haval.o hope/rand.o"
hxdirs="$hxdirs hope"
makefiles="$makefiles ./src/hope/Makefile"
fi
fi
# shared by the server and client
AC_ARG_ENABLE(cipher,
[ --enable-cipher enable cipher],
[ if test "$enableval" = "yes" ; then
use_cipher="yes"
fi
])
# only enable cipher when something that uses it is enabled
if test "$hotline_server" = "yes" -o "$hotline_client" = "yes" ; then
if test "$use_cipher" = "yes" ; then
echo " cipher enabled"
if test "$use_hope" != "yes" ; then
AC_MSG_ERROR("hope must be enbaled to enable cipher")
fi
AC_DEFINE(CONFIG_CIPHER)
SHAREDLIBS="$SHAREDLIBS cipher/cipher.o"
hxdirs="$hxdirs cipher"
makefiles="$makefiles ./src/cipher/Makefile"
fi
fi
# more hope stuff
if test "$hotline_server" = "yes" -o "$hotline_client" = "yes" ; then
if test "$use_hope" = "yes" -o "$use_cipher" = "yes" ; then
AC_CHECK_HEADERS(openssl/rand.h)
SYS_INCLUDES="$SYS_INCLUDES -I/usr/local/ssl/include"
LDFLAGS="$LDFLAGS -L/usr/local/ssl/lib"
SHAREDLIBS="$SHAREDLIBS -lcrypto"
fi
fi
# shared by the server and client
AC_ARG_ENABLE(compress,
[ --enable-compress enable compress],
[ if test "$enableval" = "yes" ; then
use_compress="yes"
fi
])
# only enable compress when something that uses it is enabled
if test "$hotline_server" = "yes" -o "$hotline_client" = "yes" ; then
if test "$use_compress" = "yes" ; then
echo " on-the-fly compression enabled"
AC_DEFINE(CONFIG_COMPRESS)
SHAREDLIBS="$SHAREDLIBS compress/compress.o"
hxdirs="$hxdirs compress"
makefiles="$makefiles ./src/compress/Makefile"
AC_CHECK_LIB(z, deflate, SHAREDLIBS="$SHAREDLIBS -lz")
fi
fi
# client only feature
AC_ARG_ENABLE(hal,
[ --enable-hal compile MegaHAL],
[ if test "$enableval" = "yes" -a "$hotline_client" = "yes" ; then
echo " MegaHAL enabled for client"
HXOBJS="$HXOBJS hal.o"
AC_DEFINE(CONFIG_HAL)
AC_CHECK_LIB(moto, log, HXLIBS="$HXLIBS -lmoto",
AC_CHECK_LIB(m, log,
[ HXLIBS="$HXLIBS -lm"
math_used="yes" ]
)
)
fi
])
# client only feature
AC_ARG_ENABLE(xmms,
[ --enable-xmms enable trackname command],
[ if test "$enableval" = "yes" -a "$hotline_client" = "yes" ; then
echo " xmms support enabled for client"
AC_DEFINE(CONFIG_XMMS)
HXOBJS="$HXOBJS xmmslib.o"
fi
])
# client only feature
AC_ARG_ENABLE(gtk,
[ --enable-gtk compile gtk frontend],
[ if test "$enableval" = "yes" ; then
enable_gtk="yes"
fi
])
# only enable gtk if the client is enabled
if test "$hotline_client" = "yes" ; then
if test "$enable_gtk" = "yes" ; then
echo " GTK front end enabled for client"
SYS_INCLUDES="$SYS_INCLUDES `gtk-config --cflags gtk`"
SYS_INCLUDES="$SYS_INCLUDES `glib-config --cflags glib`"
HXLIBS="$HXLIBS `gtk-config --libs gtk`"
HXLIBS="$HXLIBS `glib-config --libs glib`"
HXLIBS="$HXLIBS gtk/hlist.o gtk/gtk.o gtk/about.o"
HXLIBS="$HXLIBS gtk/cicn.o gtk/history.o"
HXOBJS="$HXOBJS ghx_main.o ghx_tty.o ghx_hlclient.o"
hxdirs="$hxdirs gtk"
makefiles="$makefiles ./src/gtk/Makefile"
TARGETS="$TARGETS \$(GHX_EXE)"
else
# search for the tgetent termcap function (in termcap library first)
AC_CHECK_LIB(termcap, tgetent, HXLIBS="$HXLIBS -ltermcap", tgetent="no")
# if it wasn't found in termcap it might be in the ncurses library
if test "$tgetent" = "no" ; then
AC_CHECK_LIB(ncurses, tgetent,
[ HXLIBS="$HXLIBS -lncurses"
ncurses_used="yes"
tgetent="yes"
],
tgetent="no"
)
# finally if it wasn't in ncurses, let's check for it with ldconfig
if test "$tgetent" = "no" ; then
tge=`/sbin/ldconfig -p|grep libtermcap|awk '{print $4}'|head -1`
if test -z "$tge" ; then
# couldn't find it
AC_MSG_ERROR("missing termcap function tgetent")
else
HXLIBS="$HXLIBS $tge"
fi
fi
fi
# the following check is for informational purposes only
AC_CHECK_LIB(readline, rl_callback_handler_install)
# always add readline (it is necessary)
HXLIBS="$HXLIBS -lreadline"
AC_CHECK_LIB(history, using_history, HXLIBS="$HXLIBS -lhistory")
HXOBJS="$HXOBJS hx_main.o hx_tty.o hlclient.o"
TARGETS="$TARGETS \$(HX_EXE)"
fi
fi
# client only feature
AC_ARG_ENABLE(dulled,
[ --enable-dulled enabled dulled idle user icons],
[ if test "$enableval" = "yes" -a "$hotline_client" = "yes" ; then
echo " dulled user icons enabled for gtk front end"
AC_DEFINE(CONFIG_DULLED)
fi
])
# shared by the client and server
AC_ARG_ENABLE(ipv6,
[ --enable-ipv6 IPv6 support. IPv4 will not work],
[ if test "$enableval" = "yes" ; then
# only enable IPv6 when something that uses it is enabled
if test "$hotline_server" = "yes" -o "$hotline_client" = "yes" ; then
AC_DEFINE(CONFIG_IPV6)
fi
fi
])
# client only feature
AC_ARG_WITH(socks,
[ --with-socks[=dir] use socks library in dir],
[ if test "$hotline_client" = "yes" ; then
echo " Socks v5 support enabled for client"
AC_CHECK_LIB(socks5, SOCKSinit, HXLIBS="$HXLIBS -lsocks5")
CFLAGS="$CFLAGS -DSOCKS -DINCLUDE_PROTOTYPES"
if test -n "$withval" ; then
HXLIBS="$HXLIBS -L$withval"
fi
fi
])
# client only feature
AC_ARG_WITH(socks_include,
[ --with-socks-include=dir use socks header in dir],
[ if test -n "$withval" -a "$hotline_client" = "yes" ; then
SYS_INCLUDES="$SYS_INCLUDES -I$withval"
fi
])
# client only feature
AC_ARG_WITH(sndplayer,
[ --with-sndplayer=player default=play],
[ if test "$hotline_client" = "yes" ; then
if test -n "$withval" ; then
AC_DEFINE_UNQUOTED(DEFAULT_SND_PLAYER, "$withval")
else
AC_DEFINE_UNQUOTED(DEFAULT_SND_PLAYER, "play")
fi
fi
],
[ if test "$hotline_client" = "yes" ; then
AC_DEFINE_UNQUOTED(DEFAULT_SND_PLAYER, "play")
fi
])
echo ""
############################ Environment Settings ############################
# Force some compilers to use ANSI features
case "$host" in
alpha-dec-osf*)
if test "$ac_cv_prog_CC" = "cc" ; then
echo "adding '-std1' to cc args for $host"
CC="cc -std1";
ac_cv_prog_CC="$CC"
fi
;;
*-hp-hpux*)
if test "$ac_cv_prog_CC" = "cc" ; then
echo "adding '-Ae' to cc args for $host"
CC="cc -Ae";
ac_cv_prog_CC="$CC"
fi
esac
# Check for programs
AC_PROG_INSTALL
AC_PATH_PROG(SH, sh, /bin/sh)
AC_PATH_PROG(TR, tr, "/bin/tr")
AC_PATH_PROG(FALSE, false, /usr/bin/false)
AC_PATH_PROG(TRUE, true, /usr/bin/true)
AC_PATH_PROG(RM, rm, $FALSE)
AC_PATH_PROG(MV, mv, $FALSE)
AC_PATH_PROG(MKDIR, mkdir, $FALSE)
AC_PATH_PROG(LN, ln, cp)
AC_PATH_PROG(MAKEDEPEND, makedepend, $TRUE)
AC_DEFINE_UNQUOTED(PATH_TR, "$TR")
AC_C_CONST
AC_C_INLINE
AC_C_BIGENDIAN
AC_CHECK_HEADERS(sys/select.h stdarg.h)
# test for CoreServices API
AC_MSG_CHECKING(for CoreServices (Mac OS X))
AC_CACHE_VAL(ac_cv_coreservices,
AC_TRY_COMPILE([ #include <CoreServices/CoreServices.h> ],
[ FSRef foo; ],
ac_cv_coreservices="yes",
ac_cv_coreservices="no"
)
)
AC_MSG_RESULT($ac_cv_coreservices)
# enable CoreServices files (if the server is enabled)
if test "$hotline_server" = "yes" ; then
if test "$ac_cv_coreservices" = "yes" ; then
AC_DEFINE(CORESERVICES)
SYS_INCLUDES="$SYS_INCLUDES -I/Developer/Headers/FlatCarbon"
HXDLIBS="$HXDLIBS -framework coreservices"
HXDLIBS="$HXDLIBS apple/alias.o apple/cfurl.o"
hxddirs="$hxddirs apple"
makefiles="$makefiles ./src/apple/Makefile"
fi
fi
# set flags for darwin based operating systems
case "$host" in
*-darwin*)
AC_DEFINE(HOST_DARWIN)
;;
esac
# Check for typedefs
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(void *)
AC_TYPE_SIGNAL
AC_TYPE_SIZE_T
AC_CHECK_TYPE(pid_t, int)
AC_CHECK_TYPE(ssize_t, long)
AC_CHECK_TYPE(u_int8_t, unsigned char)
AC_CHECK_TYPE(u_int16_t, unsigned short)
AC_CHECK_TYPE(u_int32_t, unsigned int)
AC_CHECK_TYPE(int8_t, char)
AC_CHECK_TYPE(int16_t, short)
AC_CHECK_TYPE(int32_t, int)
# Check for type in sys/socket.h
AC_CACHE_CHECK(for socklen_t, ac_cv_type_socklen_t,
[ AC_EGREP_CPP(
[ socklen_t[^a-zA-Z_0-9] ],
[ #include <sys/types.h>
#include <sys/socket.h>
#if STDC_HEADERS
#include <stdlib.h>
#include <stddef.h>
#endif
],
ac_cv_type_socklen_t="yes",
ac_cv_type_socklen_t="no"
)
])
if test "$ac_cv_type_socklen_t" = "no" ; then
AC_DEFINE(socklen_t, int)
fi
AC_CHECK_FUNCS(snprintf,
AC_CHECK_FUNCS(vsnprintf, ac_cv_func_snprintf="yes",
[ SHARED_OBJS="$SHARED_OBJS snprintf.o"
ac_cv_func_snprintf="no"
]
),
[ SHARED_OBJS="$SHARED_OBJS snprintf.o"
ac_cv_func_snprintf="no"
]
)
if test "$ac_cv_func_snprintf" = "yes" ; then
AC_MSG_CHECKING(for broken snprintf)
AC_CACHE_VAL(ac_cv_broken_snprintf,
AC_TRY_RUN(
[ #include <stdio.h>
int main()
{
char *buf;
return snprintf(buf,1,"ab%s","cdefg")!=-1 ? 1 : 0;
}
],
ac_cv_broken_snprintf="no",
ac_cv_broken_snprintf="yes"
)
)
AC_MSG_RESULT($ac_cv_broken_snprintf)
if test "$ac_cv_broken_snprintf" = "yes" ; then
AC_DEFINE(BROKEN_SNPRINTF)
SHARED_OBJS="$SHARED_OBJS snprintf.o"
fi
fi
# server check
if test "$hotline_server" = "yes" ; then
AC_CHECK_FUNC(bind, gethostbyname)
if test "$ac_cv_lib_bind_gethostbyname" = "no" ; then
case "$host" in
i386-*-freebsd*)
echo "skipping libresolv checks for $host"
;;
*)
AC_CHECK_LIB(resolv, inet_aton, [ AC_CHECK_LIB(44bsd, inet_aton) ])
AC_CHECK_LIB(resolv, main)
;;
esac
fi
AC_CHECK_LIB(m, main)
fi
# Check for library functions
AC_REPLACE_FUNCS(localtime_r inet_aton)
AC_CHECK_FUNCS(getrlimit getdtablesize)
AC_CHECK_FUNC(gethostbyname, , AC_CHECK_LIB(nsl, gethostbyname))
AC_CHECK_FUNC(socket, , AC_CHECK_LIB(socket, socket))
# add ncurses if it hasn't already (from a previous test) to client libraries
if test "$hotline_client" = "yes" ; then
if test "$ncurses_used" != "yes" ; then
AC_CHECK_LIB(ncurses, initscr,
HXLIBS="$HXLIBS -lncurses",
AC_CHECK_LIB(curses, initscr, HXLIBS="$HXLIBS -lcurses")
)
fi
AC_CHECK_HEADERS(termcap.h)
fi
# client/server function tests
if test "$hotline_server" = "yes" -o "$hotline_client" = "yes" ; then
AC_CHECK_FUNC(strcasestr,
AC_DEFINE(HAVE_STRCASESTR),
SHARED_OBJS="$SHARED_OBJS strcasestr.o")
AC_REPLACE_FUNCS(inet_ntoa_r)
fi
# server function tests
if test "$hotline_server" = "yes" ; then
AC_CHECK_FUNC(realpath,
AC_DEFINE(HAVE_REALPATH),
HXDOBJS="$HXDOBJS realpath.o")
AC_CHECK_FUNC(strptime,
AC_DEFINE(HAVE_STRPTIME),
HXDOBJS="$HXDOBJS strptime.o")
TARGETS="$TARGETS \$(HXD_EXE)"
fi
# client function tests
if test "$hotline_client" = "yes" ; then
AC_CHECK_FUNC(basename,
AC_DEFINE(HAVE_BASENAME),
HXOBJS="$HXOBJS basename.o")
AC_CHECK_FUNCS(hstrerror gethostname putenv tcgetattr tcsetattr)
AC_CHECK_FUNC(getopt_long_r, ,
HXOBJS="$HXOBJS getopt_r.o getopt1_r.o")
fi
# Clean up after OSF/1 core dump bug
rm -f core
# generate the makefiles
AC_OUTPUT($makefiles)