hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
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
dnl AC_PATH_XREQUIRED() requires X libs. This frag has been
dnl lifted nearly "as is" from Postgresql's configure.in script.
 
AC_DEFUN([AC_PATH_XREQUIRED],
[
   save_LIBS="$LIBS"
   save_CFLAGS="$CFLAGS"
   save_CPPFLAGS="$CPPFLAGS"
   save_LDFLAGS="$LDFLAGS"
 
   AC_PATH_X
   AC_PATH_XTRA
 
   LIBS="$LIBS $X_EXTRA_LIBS"
   CFLAGS="$CFLAGS $X_CFLAGS"
   CPPFLAGS="$CPPFLAGS $X_CFLAGS"
   LDFLAGS="$LDFLAGS $X_LIBS"
 
   dnl Check for X library
 
   X11_LIBS=""
   AC_CHECK_LIB(X11, XOpenDisplay, X11_LIBS="-lX11",,${X_PRE_LIBS})
   if test "$X11_LIBS" = ""; then
       dnl Not having X is bad news, period. Let the user fix this.
       AC_MSG_ERROR([The X11 library '-lX11' could not be found,
 so I won't go further. Please use the configure
 options '--x-includes=DIR' and '--x-libraries=DIR'
 to specify the X location. See the file 'config.log'
 for further diagnostics.])
   fi
   AC_SUBST(X_LIBS)
   AC_SUBST(X11_LIBS)
   AC_SUBST(X_PRE_LIBS)
 
   LIBS="$save_LIBS"
   CFLAGS="$save_CFLAGS"
   CPPFLAGS="$save_CPPFLAGS"
   LDFLAGS="$save_LDFLAGS"
])
 
dnl AC_POSIX_SIGHANDLER() determines whether
dnl signal handlers are posix compliant. This frag
dnl has been adapted from readline's aclocal.m4.
 
AC_DEFUN([AC_POSIX_SIGHANDLER],
[AC_MSG_CHECKING([if signal handlers are posix compliant])
AC_CACHE_VAL(ac_cv_posix_sighandler,
[AC_TRY_COMPILE([#include <sys/types.h>
#include <signal.h>
#ifdef signal
#undef signal
#endif
#ifdef __cplusplus
extern "C"
#endif
void (*signal(void))(void);],
[int i;], ac_cv_posix_sighandler=no, ac_cv_posix_sighandler=yes)])dnl
AC_MSG_RESULT($ac_cv_posix_sighandler)
if test $ac_cv_posix_sighandler = yes; then
AC_DEFINE(HAVE_POSIX_SIGHANDLER,1,[Kconfig])
fi
])
 
#------------------------------------------------------------------------
# SC_PATH_TCLCONFIG --
#
#    Locate the tclConfig.sh file and perform a sanity check on
#    the Tcl compile flags
#
# Arguments:
#    none
#
# Results:
#
#    Adds the following arguments to configure:
#        --with-tcl=...
#
#    Defines the following vars:
#        TCL_BIN_DIR    Full path to the directory containing
#                the tclConfig.sh file
#------------------------------------------------------------------------
 
AC_DEFUN([SC_PATH_TCLCONFIG], [
    #
    # Ok, lets find the tcl configuration
    # First, look for one uninstalled.
    # the alternative search directory is invoked by --with-tcl
    #
 
    if test x"${no_tcl}" = x ; then
   # we reset no_tcl in case something fails here
   no_tcl=true
   AC_ARG_WITH(tcl, [  --with-tcl              directory containing tcl configuration (tclConfig.sh)], with_tclconfig=${withval})
   AC_MSG_CHECKING([for Tcl configuration])
   AC_CACHE_VAL(ac_cv_c_tclconfig,[
 
       # First check to see if --with-tcl was specified.
       if test x"${with_tclconfig}" != x ; then
       if test -f "${with_tclconfig}/tclConfig.sh" ; then
           ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`
       else
           AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh])
       fi
       fi
 
       # then check for a private Tcl installation
       if test x"${ac_cv_c_tclconfig}" = x ; then
       for i in \
           ../tcl \
           `ls -dr ../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
           ../../tcl \
           `ls -dr ../../tcl[[8-9]].[[0-9]]* 2>/dev/null` \
           ../../../tcl \
           `ls -dr ../../../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
           if test -f "$i/unix/tclConfig.sh" ; then
           ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
           break
           fi
       done
       fi
 
       # check in a few common install locations
       if test x"${ac_cv_c_tclconfig}" = x ; then
       for i in ${prefix}/lib /usr/local/lib /usr/pkg/lib /usr/lib \
           `ls -dr /usr/lib/tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
           if test -f "$i/tclConfig.sh" ; then
           ac_cv_c_tclconfig=`(cd $i; pwd)`
           break
           fi
       done
       fi
 
       # check in a few other private locations
       if test x"${ac_cv_c_tclconfig}" = x ; then
       for i in \
           ${srcdir}/../tcl \
           `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
           if test -f "$i/unix/tclConfig.sh" ; then
           ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
           break
       fi
       done
       fi
   ])
 
   if test x"${ac_cv_c_tclconfig}" = x ; then
       TCL_BIN_DIR="# no Tcl configs found"
       AC_MSG_WARN(Can't find Tcl configuration definitions)
       exit 1
   else
       no_tcl=
       TCL_BIN_DIR=${ac_cv_c_tclconfig}
       AC_MSG_RESULT(found $TCL_BIN_DIR/tclConfig.sh)
   fi
    fi
])
 
#------------------------------------------------------------------------
# SC_PATH_TKCONFIG --
#
#    Locate the tkConfig.sh file
#
# Arguments:
#    none
#
# Results:
#
#    Adds the following arguments to configure:
#        --with-tk=...
#
#    Defines the following vars:
#        TK_BIN_DIR    Full path to the directory containing
#                the tkConfig.sh file
#------------------------------------------------------------------------
 
AC_DEFUN([SC_PATH_TKCONFIG], [
    #
    # Ok, lets find the tk configuration
    # First, look for one uninstalled.
    # the alternative search directory is invoked by --with-tk
    #
 
    if test x"${no_tk}" = x ; then
   # we reset no_tk in case something fails here
   no_tk=true
   AC_ARG_WITH(tk, [  --with-tk               directory containing tk configuration (tkConfig.sh)], with_tkconfig=${withval})
   AC_MSG_CHECKING([for Tk configuration])
   AC_CACHE_VAL(ac_cv_c_tkconfig,[
 
       # First check to see if --with-tkconfig was specified.
       if test x"${with_tkconfig}" != x ; then
       if test -f "${with_tkconfig}/tkConfig.sh" ; then
           ac_cv_c_tkconfig=`(cd ${with_tkconfig}; pwd)`
       else
           AC_MSG_ERROR([${with_tkconfig} directory doesn't contain tkConfig.sh])
       fi
       fi
 
       # then check for a private Tk library
       if test x"${ac_cv_c_tkconfig}" = x ; then
       for i in \
           ../tk \
           `ls -dr ../tk[[8-9]].[[0-9]]* 2>/dev/null` \
           ../../tk \
           `ls -dr ../../tk[[8-9]].[[0-9]]* 2>/dev/null` \
           ../../../tk \
           `ls -dr ../../../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do
           if test -f "$i/unix/tkConfig.sh" ; then
           ac_cv_c_tkconfig=`(cd $i/unix; pwd)`
           break
           fi
       done
       fi
       # check in a few common install locations
       if test x"${ac_cv_c_tkconfig}" = x ; then
       for i in ${prefix}/lib /usr/local/lib /usr/pkg/lib /usr/lib \
           `ls -dr /usr/lib/tk[[8-9]].[[0-9]]* 2>/dev/null` ; do
           if test -f "$i/tkConfig.sh" ; then
           ac_cv_c_tkconfig=`(cd $i; pwd)`
           break
           fi
       done
       fi
       # check in a few other private locations
       if test x"${ac_cv_c_tkconfig}" = x ; then
       for i in \
           ${srcdir}/../tk \
           `ls -dr ${srcdir}/../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do
           if test -f "$i/unix/tkConfig.sh" ; then
           ac_cv_c_tkconfig=`(cd $i/unix; pwd)`
           break
           fi
       done
       fi
   ])
   if test x"${ac_cv_c_tkconfig}" = x ; then
       TK_BIN_DIR="# no Tk configs found"
       AC_MSG_WARN(Can't find Tk configuration definitions)
       exit 1
   else
       no_tk=
       TK_BIN_DIR=${ac_cv_c_tkconfig}
       AC_MSG_RESULT(found $TK_BIN_DIR/tkConfig.sh)
   fi
    fi
 
])
 
#------------------------------------------------------------------------
# SC_LOAD_TCLCONFIG --
#
#    Load the tclConfig.sh file
#
# Arguments:
#    
#    Requires the following vars to be set:
#        TCL_BIN_DIR
#
# Results:
#
#    Subst the following vars:
#        TCL_BIN_DIR
#        TCL_SRC_DIR
#        TCL_LIB_FILE
#
#------------------------------------------------------------------------
 
AC_DEFUN([SC_LOAD_TCLCONFIG], [
    AC_MSG_CHECKING([for existence of $TCL_BIN_DIR/tclConfig.sh])
 
    if test -f "$TCL_BIN_DIR/tclConfig.sh" ; then
        AC_MSG_RESULT([loading])
   . $TCL_BIN_DIR/tclConfig.sh
    else
        AC_MSG_ERROR([not found])
    fi
 
    AC_PATH_PROG(TCL_SCRIPT, tclsh${TCL_VERSION}, tclsh)
 
    AC_SUBST(TCL_BIN_DIR)
    AC_SUBST(TCL_SRC_DIR)
    AC_SUBST(TCL_LIB_FILE)
    AC_SUBST(TCL_LIBS)
    AC_SUBST(TCL_DEFS)
    AC_SUBST(TCL_SHLIB_LD_LIBS)
    AC_SUBST(TCL_EXTRA_CFLAGS)
    AC_SUBST(TCL_LD_FLAGS)
    AC_SUBST(TCL_LIB_FILE)
    AC_SUBST(TCL_STUB_LIB_FILE)
    AC_SUBST(TCL_LIB_SPEC)
    AC_SUBST(TCL_BUILD_LIB_SPEC)
    AC_SUBST(TCL_STUB_LIB_SPEC)
    AC_SUBST(TCL_BUILD_STUB_LIB_SPEC)
    AC_SUBST(TCL_DBGX)
])
 
#------------------------------------------------------------------------
# SC_LOAD_TKCONFIG --
#
#    Load the tkConfig.sh file
#
# Arguments:
#    
#    Requires the following vars to be set:
#        TK_BIN_DIR
#
# Results:
#
#    Sets the following vars that should be in tkConfig.sh:
#        TK_BIN_DIR
#------------------------------------------------------------------------
 
AC_DEFUN([SC_LOAD_TKCONFIG], [
    AC_MSG_CHECKING([for existence of $TK_BIN_DIR/tkConfig.sh])
 
    if test -f "$TK_BIN_DIR/tkConfig.sh" ; then
        AC_MSG_RESULT([loading])
   . $TK_BIN_DIR/tkConfig.sh
    else
        AC_MSG_ERROR([not found])
    fi
 
    AC_SUBST(TK_BIN_DIR)
    AC_SUBST(TK_SRC_DIR)
    AC_SUBST(TK_LIB_FILE)
    AC_SUBST(TK_LIB_FLAG)
    AC_SUBST(TK_LIB_SPEC)
    AC_SUBST(TK_DBGX)
])
 
#------------------------------------------------------------------------
# SC_PATH_TIX --
#
#    Locate the Tix installation.
#
# Arguments:
#    None.
#
# Results:
#
#    Substs the following vars:
#        TIX_TCL_LIB
#        TIX_LIB_SPEC
#------------------------------------------------------------------------
 
AC_DEFUN([SC_PATH_TIX], [
    AC_MSG_CHECKING(for Tix's Tcl library)
 
    AC_ARG_WITH(tixlibrary, [  --with-tixlibrary      directory containing the Tix library files.], with_tixlibrary=${withval})
 
    if test x"${with_tixlibrary}" != x ; then
   if test -f "${with_tixlibrary}/Init.tcl" ; then
       ac_cv_tix_libdir=${with_tixlibrary}
   else
       AC_MSG_ERROR([${with_tixlibrary} directory does not contain Tix's init file Init.tcl])
   fi
    else
   AC_CACHE_VAL(ac_cv_tix_libdir, [
       for d in \
       `ls -dr /usr/local/lib/tix[[0-9]]* 2>/dev/null ` \
       `ls -dr /usr/local/share/tix[[0-9]]* 2>/dev/null ` \
       `ls -dr /usr/pkg/lib/tix[[0-9]]* 2>/dev/null ` \
       `ls -dr /usr/lib/tix[[0-9]]* 2>/dev/null ` \
       `ls -dr /usr/share/tix[[0-9]]* 2>/dev/null ` ; do
       if test -f "$d/Init.tcl" ; then
       ac_cv_tix_libdir=$d
           break
           fi
       done
        ])
    fi
 
    AC_MSG_RESULT($ac_cv_tix_libdir)
    TIX_TCL_LIB=$ac_cv_tix_libdir
    AC_SUBST(TIX_TCL_LIB)
 
    SC_LIB_SPEC(tix)
    TIX_LIB_SPEC=$tix_LIB_SPEC
    AC_SUBST(TIX_LIB_SPEC)
])
 
#------------------------------------------------------------------------
# SC_LIB_SPEC --
#
#    Compute the name of an existing object library located in libdir
#    from the given base name and produce the appropriate linker flags.
#
# Arguments:
#    basename    The base name of the library without version
#            numbers, extensions, or "lib" prefixes.
#
#    Requires:
#
# Results:
#
#    Defines the following vars:
#        ${basename}_LIB_NAME    The computed library name.
#        ${basename}_LIB_SPEC    The computed linker flags.
#------------------------------------------------------------------------
 
AC_DEFUN([SC_LIB_SPEC], [
    AC_MSG_CHECKING(for $1 library)
    eval "sc_lib_name_dir=${libdir}"
    for i in \
       `ls -dr ${sc_lib_name_dir}/$1[[0-9]]*.lib 2>/dev/null ` \
       `ls -dr ${sc_lib_name_dir}/lib$1.* 2>/dev/null ` \
       `ls -dr ${sc_lib_name_dir}/lib$1[[0-9]]* 2>/dev/null ` \
       `ls -dr /usr/pkg/*/lib$1.so 2>/dev/null ` \
       `ls -dr /usr/pkg/*/lib$1[[0-9]]* 2>/dev/null ` \
       `ls -dr /usr/pkg/lib/lib$1.so 2>/dev/null ` \
       `ls -dr /usr/pkg/lib/lib$1[[0-9]]* 2>/dev/null ` \
       `ls -dr /usr/lib/$1[[0-9]]*.lib 2>/dev/null ` \
       `ls -dr /usr/lib/lib$1.so 2>/dev/null ` \
       `ls -dr /usr/lib/lib$1[[0-9]]* 2>/dev/null ` \
       `ls -dr /usr/local/lib/$1[[0-9]]*.lib 2>/dev/null ` \
       `ls -dr /usr/local/lib/lib$1.so 2>/dev/null ` \
       `ls -dr /usr/local/lib/lib$1[[0-9]]* 2>/dev/null ` ; do
   if test -f "$i" ; then
       sc_lib_name_dir=`dirname $i`
       $1_LIB_NAME=`basename $i`
       break
   fi
    done
 
    case "`uname -s`" in
   *win32* | *WIN32* | *CYGWIN_NT*)
       $1_LIB_SPEC=${$1_LIB_NAME}
       ;;
   *)
       # Strip off the leading "lib" and trailing ".a" or ".so"
       sc_lib_name_lib=`echo ${$1_LIB_NAME}|sed -e 's/^lib//' -e 's/\.so.*$//' -e 's/\.a$//'`
       $1_LIB_SPEC="-L${sc_lib_name_dir} -l${sc_lib_name_lib}"
       ;;
    esac
    if test "x${sc_lib_name_lib}" = x ; then
   AC_MSG_ERROR(not found)
    else
   AC_MSG_RESULT(${$1_LIB_SPEC})
    fi
])
 
#------------------------------------------------------------------------
# SC_PUBLIC_TCL_HEADERS --
#
#    Locate the installed public Tcl header files
#
# Arguments:
#    None.
#
# Requires:
#
# Results:
#
#    Adds a --with-tclinclude switch to configure.
#    Result is cached.
#
#    Substs the following vars:
#        TCL_INCLUDES
#------------------------------------------------------------------------
 
AC_DEFUN([SC_PUBLIC_TCL_HEADERS], [
    AC_MSG_CHECKING(for Tcl public headers)
 
    AC_ARG_WITH(tclinclude, [  --with-tclinclude      directory containing the public Tcl header files.], with_tclinclude=${withval})
 
    if test x"${with_tclinclude}" != x ; then
   if test -f "${with_tclinclude}/tcl.h" ; then
       ac_cv_c_tclh=${with_tclinclude}
   else
       AC_MSG_ERROR([${with_tclinclude} directory does not contain Tcl public header file tcl.h])
   fi
    else
   AC_CACHE_VAL(ac_cv_c_tclh, [
       # Use the value from --with-tclinclude, if it was given
 
       if test x"${with_tclinclude}" != x ; then
       ac_cv_c_tclh=${with_tclinclude}
       else
       # Check in the includedir, if --prefix was specified
 
       eval "temp_includedir=${includedir}"
       for i in \
           ${temp_includedir} /usr/local/include /usr/include /usr/pkg/include \
           `ls -dr /usr/include/tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
           if test -f "$i/tcl.h" ; then
           ac_cv_c_tclh=$i
           break
           fi
       done
       fi
   ])
    fi
 
    # Print a message based on how we determined the include path
 
    if test x"${ac_cv_c_tclh}" = x ; then
   AC_MSG_ERROR(tcl.h not found.  Please specify its location with --with-tclinclude)
    else
   AC_MSG_RESULT(${ac_cv_c_tclh})
    fi
 
    # Convert to a native path and substitute into the output files.
 
    INCLUDE_DIR_NATIVE=`echo ${ac_cv_c_tclh}`
 
    TCL_INCLUDES="-I${INCLUDE_DIR_NATIVE}"
 
    AC_SUBST(TCL_INCLUDES)
])
 
#------------------------------------------------------------------------
# SC_PUBLIC_TK_HEADERS --
#
#    Locate the installed public Tk header files
#
# Arguments:
#    None.
#
# Requires:
#
# Results:
#
#    Adds a --with-tkinclude switch to configure.
#    Result is cached.
#
#    Substs the following vars:
#        TK_INCLUDES
#------------------------------------------------------------------------
 
AC_DEFUN([SC_PUBLIC_TK_HEADERS], [
    AC_MSG_CHECKING(for Tk public headers)
 
    AC_ARG_WITH(tkinclude, [  --with-tkinclude      directory containing the public Tk header files.], with_tkinclude=${withval})
 
    if test x"${with_tkinclude}" != x ; then
   if test -f "${with_tkinclude}/tk.h" ; then
       ac_cv_c_tkh=${with_tkinclude}
   else
       AC_MSG_ERROR([${with_tkinclude} directory does not contain Tk public header file tk.h])
   fi
    else
   AC_CACHE_VAL(ac_cv_c_tkh, [
       # Use the value from --with-tkinclude, if it was given
 
       if test x"${with_tkinclude}" != x ; then
       ac_cv_c_tkh=${with_tkinclude}
       else
       # Check in the includedir, if --prefix was specified
 
       eval "temp_includedir=${includedir}"
       for i in \
           ${temp_includedir} /usr/local/include /usr/include /usr/pkg/include \
           `ls -dr /usr/include/tk[[8-9]].[[0-9]]* 2>/dev/null` \
           `ls -dr /usr/include/tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
           if test -f "$i/tk.h" ; then
           ac_cv_c_tkh=$i
           break
           fi
       done
       fi
   ])
    fi
 
    # Print a message based on how we determined the include path
 
    if test x"${ac_cv_c_tkh}" = x ; then
   AC_MSG_ERROR(tk.h not found.  Please specify its location with --with-tkinclude)
    else
   AC_MSG_RESULT(${ac_cv_c_tkh})
    fi
 
    # Convert to a native path and substitute into the output files.
 
    INCLUDE_DIR_NATIVE=`echo ${ac_cv_c_tkh}`
 
    TK_INCLUDES="-I${INCLUDE_DIR_NATIVE}"
 
    AC_SUBST(TK_INCLUDES)
])