-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
1461 lines (1366 loc) · 47.3 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
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
dnl Process this file with autoconf to produce a configure script.
dnl If git is available, the version number here is not used.
dnl Instead, git is used to derive the version based on the closest
dnl annotated branch tag.
dnl
dnl Note: during Lisp-based builds (see INSTALL.lisp) the version
dnl number is read from the following AC_INIT line. It's sensitive to
dnl whitespace so when updating the version number only make changes
dnl within the second pair of square brackets.
AC_INIT([maxima], [5.46post])
AC_CONFIG_SRCDIR([src/macsys.lisp])
AM_INIT_AUTOMAKE([-Wno-portability tar-ustar])
# On debian-based systems this makes us use the right gcl version out-of-the box.
# On other systems it doesn't hurt.
export GCL_ANSI=t
# This enables running the testbench for "make check" on gcl versions with the old
# memory management (Which in January 2018 includes all Versions shipped with debian
# and Ubuntu)
export GCL_MEM_MULTIPLE=0.1
AM_PATH_LISPDIR
AC_CANONICAL_HOST
dnl If we were using a C compiler, EXEEXT would get defined
dnl automatically. But we aren't, so we have to define it ourselves.
dnl Still to do: Add Win64 support here, if this is needed.
case "$host" in
*mingw*)
win32=true
win64=false
mingw=true
EXEEXT=.exe
CLISPEXT=${EXEEXT}
;;
*cygwin*)
win32=false
win64=false
mingw=false
EXEEXT=.exe
CLISPEXT=${EXEEXT}
;;
*)
win32=false
win64=false
mingw=false
EXEEXT=
CLISPEXT=.run
esac
AC_SUBST(EXEEXT)
AC_SUBST(win32)
AC_SUBST(win64)
AM_CONDITIONAL(WIN32, test x$win32 = xtrue)
AM_CONDITIONAL(WIN64, test x$win64 = xtrue)
dnl To make life more confusing, the automake test machinery (which we
dnl use in ./tests) needs the am__EXEEXT conditional. This would have
dnl normally been expanded (via something we've copied from Automake's
dnl init.m4 into our aclocal.m4) as Automake computed EXEEXT, but it
dnl didn't so we have to drop this in ourselves.
AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
explicit_lisp=false
lisps_enabled=""
dnl Compiling with abcl requires a jre and the path to abcl.jar
AC_ARG_ENABLE(abcl,
[ --enable-abcl Use abcl, requires --with-abcl-jar],
[case "${enableval}" in
yes) abcl=true
lisps_enabled="${lisps_enabled} abcl"
explicit_lisp=true ;;
no) abcl=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-abcl) ;;
esac
explicit_lisp=true],
[abcl=false])
ABCL_JAR=`pwd`/"abcl.jar"
AC_ARG_WITH(abcl-jar,
[ --with-abcl-jar=<jarfile> Use <jarfile> as abcl install (default ./abcl.jar)],
[abcl=true
lisps_enabled="${lisps_enabled} abcl"
explicit_lisp=true
ABCL_JAR="${withval}"])
AC_ARG_WITH(jre,
[ --with-jre=<jre> When compiling with abcl: use <jre> as Java interpreter],
[JRE="${withval}"],
[JRE="java"])
if test x"${abcl}" = xtrue ; then
if test -e "${ABCL_JAR}" ; then
echo Using abcl found in ${ABCL_JAR}
else
AC_MSG_ERROR(${ABCL_JAR} not found.)
fi
fi
dnl n.b. clisp_default_name is hardcoded in "with" message
clisp_default_name=clisp
AC_ARG_ENABLE(clisp,
[ --enable-clisp Use clisp],
[case "${enableval}" in
yes) clisp=true
lisps_enabled="${lisps_enabled} clisp"
explicit_lisp=true ;;
no) clisp=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-clisp) ;;
esac
explicit_lisp=true],
[clisp=false])
AC_ARG_WITH(clisp,
[ --with-clisp=<prog> Use clisp executable <prog> (default clisp)],
[clisp=true
lisps_enabled="${lisps_enabled} clisp"
explicit_lisp=true
if test "$withval" = "yes"; then
CLISP_NAME="${clisp_default_name}"
else
CLISP_NAME="$withval"
fi],
[CLISP_NAME=${clisp_default_name}])
CLISP_RUNTIME="lisp${CLISPEXT}"
AC_ARG_WITH(clisp-runtime,
[ --with-clisp-runtime=<path> Use clisp runtime <path> (default
*lib-directory*/base/lisp.run on unix,
*lib-directory*\\lisp.exe on windows) ],
[clisp=true
lisps_enabled="${lisps_enabled} clisp"
CLISP_RUNTIME_PATH="$withval"
CLISP_RUNTIME=`basename ${CLISP_RUNTIME_PATH}`],
[])
AC_ARG_ENABLE(clisp-exec,
[ --enable-clisp-exec Create a maxima executable image using CLISP.
No check is made if the version of
CLISP supports executable images],
[case "${enableval}" in
yes) clisp_exec=true
clisp=true
lisps_enabled="${lisps_enabled} clisp"
explicit_lisp=true ;;
no) clisp_exec=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-clisp-exec) ;;
esac
CLISP_EXEC=${clisp_exec}],
[clisp_exec=false
CLISP_EXEC=false])
if test x"${clisp}" = xtrue ; then
if test `echo "$CLISP_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
if test -x "$CLISP_NAME" ; then
clisp_found=true
else
clisp_found=false
fi
else
AC_CHECK_PROG(clisp_found,$CLISP_NAME,true,false)
fi
if test x"${clisp_found}" = xfalse ; then
AC_MSG_WARN(clisp executable ${CLISP_NAME} not found in PATH)
fi
fi
dnl See if git exists. If it does, update VERSION to include a git tag
AC_CHECK_PROG(git_found, git, true, false)
if test x"${git_found}" = xtrue; then
# Test to see if git describe works (discarding any output). If
# it works, use it. Otherwise, keep existing value of VERSION.
# (git describe fails if git is executed in a non-Git directory, e.g.,
# an unpacked tarball. Since the exit codes of git describe are undocumented,
# we cannot distinguish that from a missing annotated tag.
# Play it safe by refusing to change VERSION.)
if git describe > /dev/null 2>&1; then
VERSION="`git describe --dirty`"
# When building RPMs, hyphens in the version are not allowed, so
# replace them with underscores.
VERSION=`echo $VERSION | sed 's;-;_;g'`
fi
fi
dnl Parses the version number for the manual
manual_version=`echo $VERSION | sed 's+branch_++; s+_base++; s+_dirty++; s+_+.+g'`
AC_SUBST(manual_version)
dnl n.b. cmucl_default_name is hardcoded in "with" message
cmucl_default_name=lisp
CMUCL_RUNTIME=lisp
AC_ARG_ENABLE(cmucl,
[ --enable-cmucl Use CMUCL],
[case "${enableval}" in
yes) cmucl=true
lisps_enabled="${lisps_enabled} cmucl"
explicit_lisp=true ;;
no) cmucl=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-cmucl) ;;
esac
explicit_lisp=true],
[cmucl=false])
AC_ARG_WITH(cmucl,
[ --with-cmucl=<prog> Use CMUCL executable <prog> (default lisp)],
[cmucl=true
lisps_enabled="${lisps_enabled} cmucl"
explicit_lisp=true
if test "$withval" = "yes"; then
CMUCL_NAME="${cmucl_default_name}"
else
CMUCL_NAME="$withval"
fi],
[CMUCL_NAME=${cmucl_default_name}])
AC_ARG_WITH(cmucl-runtime,
[ --with-cmucl-runtime=<path> Use CMUCL runtime <path> (default
*cmucl-lib*/../bin/lisp)],
[cmucl=true
lisps_enabled="${lisps_enabled} cmucl"
CMUCL_RUNTIME_PATH="$withval"
CMUCL_RUNTIME=`basename ${CMUCL_RUNTIME_PATH}`],
[])
AC_ARG_ENABLE(cmucl-exec,
[ --enable-cmucl-exec Create a maxima executable image using CMUCL.
No check is made if the version of
CMUCL supports executable images],
[case "${enableval}" in
yes) cmucl_exec=true
cmucl=true
lisps_enabled="${lisps_enabled} cmucl"
explicit_lisp=true ;;
no) cmucl_exec=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-cmucl-exec) ;;
esac
CMUCL_EXEC=${cmucl_exec}],
[cmucl_exec=false
CMUCL_EXEC=false])
if test x"${cmucl}" = xtrue ; then
if test `echo "$CMUCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
if test -x "$CMUCL_NAME" ; then
cmucl_found=true
else
cmucl_found=false
fi
else
AC_CHECK_PROG(cmucl_found,$CMUCL_NAME,true,false)
fi
AC_CHECK_PROG(cmucl_found,$CMUCL_NAME,true,false)
if test x"${cmucl_found}" = xfalse ; then
AC_MSG_WARN(cmucl executable ${CMUCL_NAME} not found in PATH)
fi
fi
dnl n.b. scl_default_name is hardcoded in "with" message
scl_default_name=scl
SCL_RUNTIME=lisp
AC_ARG_ENABLE(scl,
[ --enable-scl Use SCL],
[case "${enableval}" in
yes) scl=true
lisps_enabled="${lisps_enabled} scl"
explicit_lisp=true ;;
no) scl=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-scl) ;;
esac
explicit_lisp=true],
[scl=false])
AC_ARG_WITH(scl,
[ --with-scl=<prog> Use SCL executable <prog> (default scl)],
[scl=true
lisps_enabled="${lisps_enabled} scl"
explicit_lisp=true
if test "$withval" = "yes"; then
SCL_NAME="${scl_default_name}"
else
SCL_NAME="$withval"
fi],
[SCL_NAME=${scl_default_name}])
AC_ARG_WITH(scl-runtime,
[ --with-scl-runtime=<path> Use SCL runtime <path> (default
file://library/../bin/lisp)],
[scl=true
lisps_enabled="${lisps_enabled} scl"
SCL_RUNTIME_PATH="$withval"
SCL_RUNTIME=`basename ${SCL_RUNTIME_PATH}`],
[])
if test x"${scl}" = xtrue ; then
if test `echo "$SCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
if test -x "$SCL_NAME" ; then
scl_found=true
else
scl_found=false
fi
else
AC_CHECK_PROG(scl_found,$SCL_NAME,true,false)
fi
AC_CHECK_PROG(scl_found,$SCL_NAME,true,false)
if test x"${scl_found}" = xfalse ; then
AC_MSG_WARN(scl executable ${SCL_NAME} not found in PATH)
fi
fi
dnl n.b. sbcl_default_name is hardcoded in "with" message
sbcl_default_name=sbcl
AC_ARG_ENABLE(sbcl,
[ --enable-sbcl Use SBCL],
[case "${enableval}" in
yes) sbcl=true
lisps_enabled="${lisps_enabled} sbcl"
explicit_lisp=true ;;
no) sbcl=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-sbcl) ;;
esac
explicit_lisp=true],
[sbcl=false])
AC_ARG_WITH(sbcl,
[ --with-sbcl=<prog> Use SBCL executable <prog> (default sbcl)],
[sbcl=true
lisps_enabled="${lisps_enabled} sbcl"
explicit_lisp=true
if test "$withval" = "yes"; then
SBCL_NAME="${sbcl_default_name}"
else
SBCL_NAME="$withval"
fi],
[SBCL_NAME="${sbcl_default_name}"])
AC_ARG_ENABLE(sbcl-exec,
[ --enable-sbcl-exec Create a maxima executable image using SBCL.
No check is made if the version of
SBCL supports executable images],
[case "${enableval}" in
yes) sbcl_exec=true
sbcl=true
lisps_enabled="${lisps_enabled} sbcl"
explicit_lisp=true ;;
no) sbcl_exec=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-sbcl-exec) ;;
esac
SBCL_EXEC=${sbcl_exec}],
[sbcl_exec=false
SBCL_EXEC=false])
if test x"${sbcl}" = xtrue ; then
if test `echo "$SBCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
if test -x "$SBCL_NAME" ; then
sbcl_found=true
else
sbcl_found=false
fi
else
AC_CHECK_PROG(sbcl_found,"$SBCL_NAME",true,false)
fi
AC_CHECK_PROG(sbcl_found,"$SBCL_NAME",true,false)
if test x"${sbcl_found}" = xfalse ; then
AC_MSG_WARN(sbcl executable "${SBCL_NAME}" not found in PATH)
fi
fi
dnl n.b. acl_default_name is hardcoded in "with" message
acl_default_name=lisp
AC_ARG_ENABLE(acl,
[ --enable-acl Use ACL],
[case "${enableval}" in
yes) acl=true
lisps_enabled="${lisps_enabled} acl"
explicit_lisp=true ;;
no) acl=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-acl) ;;
esac
explicit_lisp=true],
[acl=false])
AC_ARG_WITH(acl,
[ --with-acl=<prog> Use ACL executable <prog> (default lisp)],
[acl=true
lisps_enabled="${lisps_enabled} acl"
explicit_lisp=true
if test "$withval" = "yes"; then
ACL_NAME="${acl_default_name}"
else
ACL_NAME="$withval"
fi],
[ACL_NAME=${acl_default_name}])
if test x"${acl}" = xtrue ; then
if test `echo "$ACL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
if test -x "$ACL_NAME" ; then
acl_found=true
else
acl_found=false
fi
else
AC_CHECK_PROG(acl_found,$ACL_NAME,true,false)
fi
AC_CHECK_PROG(acl_found,$ACL_NAME,true,false)
if test x"${acl_found}" = xfalse ; then
AC_MSG_WARN(acl executable ${ACL_NAME} not found in PATH)
fi
fi
dnl n.b. gcl_default_name is hardcoded in "with" message
gcl_default_name=gcl
AC_ARG_ENABLE(gcl,
[ --enable-gcl Use GCL],
[case "${enableval}" in
yes) gcl=true
lisps_enabled="${lisps_enabled} gcl"
explicit_lisp=true;;
no) gcl=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-gcl) ;;
esac],
[gcl=false])
AC_ARG_WITH(gcl,
[ --with-gcl=<prog> Use GCL executable <prog> (default gcl)],
[gcl=true
lisps_enabled="${lisps_enabled} gcl"
explicit_lisp=true
if test "$withval" = "yes"; then
GCL_NAME="${gcl_default_name}"
else
GCL_NAME="$withval"
fi],
[GCL_NAME=${gcl_default_name}])
if test x"${gcl}" = xtrue ; then
if test `echo "$GCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
if test -x "$GCL_NAME" ; then
gcl_found=true
else
gcl_found=false
fi
else
AC_CHECK_PROG(gcl_found,$GCL_NAME,true,false)
fi
if test x"${gcl_found}" = xfalse ; then
AC_MSG_WARN(gcl executable ${GCL_NAME} not found in PATH)
fi
fi
dnl n.b. openmcl_default_name is hardcoded in "with" message
openmcl_default_name=openmcl
AC_ARG_ENABLE(openmcl,
[ --enable-openmcl Use OpenMCL],
[case "${enableval}" in
yes) openmcl=true
lisps_enabled="${lisps_enabled} openmcl"
explicit_lisp=true;;
no) openmcl=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-openmcl) ;;
esac],
[openmcl=false])
AC_ARG_WITH(openmcl,
[ --with-openmcl=<prog> Use OpenMCL executable <prog> (default openmcl)],
[openmcl=true
lisps_enabled="${lisps_enabled} openmcl"
explicit_lisp=true
if test "$withval" = "yes"; then
OPENMCL_NAME="${openmcl_default_name}"
else
OPENMCL_NAME="$withval"
fi],
[OPENMCL_NAME=${openmcl_default_name}])
AC_ARG_ENABLE(openmcl-exec,
[ --enable-openmcl-exec Create a maxima executable image using OPENMCL.
No check is made if the version of
OPENMCL supports executable images],
[case "${enableval}" in
yes) openmcl_exec=true
openmcl=true
lisps_enabled="${lisps_enabled} openmcl"
explicit_lisp=true;;
no) openmcl_exec=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-openmcl-exec) ;;
esac
OPENMCL_EXEC=${openmcl_exec}],
[openmcl_exec=false
OPENMCL_EXEC=false])
dnl Define ccl as an alias (essentially) for openmcl
AC_ARG_ENABLE(ccl,
[ --enable-ccl Use CCL (Clozure Common Lisp)],
[case "${enableval}" in
yes) openmcl=true
lisps_enabled="${lisps_enabled} openmcl"
explicit_lisp=true;;
no) openmcl=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-ccl) ;;
esac],
[openmcl=false])
AC_ARG_WITH(ccl,
[ --with-ccl=<prog> Use OpenMCL executable <prog> (default ccl)],
[openmcl=true
lisps_enabled="${lisps_enabled} openmcl"
explicit_lisp=true
if test "$withval" = "yes"; then
OPENMCL_NAME="${openmcl_default_name}"
else
OPENMCL_NAME="$withval"
fi],
[OPENMCL_NAME=${openmcl_default_name}])
AC_ARG_ENABLE(ccl-exec,
[ --enable-ccl-exec Create a maxima executable image using CCL.
No check is made if the version of
CCL supports executable images],
[case "${enableval}" in
yes) openmcl_exec=true
openmcl=true
lisps_enabled="${lisps_enabled} openmcl"
explicit_lisp=true;;
no) openmcl_exec=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-ccl-exec) ;;
esac
OPENMCL_EXEC=${openmcl_exec}],
[openmcl_exec=false
OPENMCL_EXEC=false])
if test x"${openmcl}" = xtrue ; then
if test `echo "$OPENMCL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
if test -x "$OPENMCL_NAME" ; then
openmcl_found=true
else
openmcl_found=false
fi
else
AC_CHECK_PROG(openmcl_found,$OPENMCL_NAME,true,false)
fi
if test x"${openmcl_found}" = xfalse ; then
AC_MSG_WARN(openmcl executable ${OPENMCL_NAME} not found in PATH)
fi
fi
dnl n.b. ccl64_default_name is hardcoded in "with" message
dnl We assume we're running on an x86 processor. The user has to
dnl select a different executable name to match his system, if neceessary.
ccl64_default_name=dx86cl64
AC_ARG_ENABLE(ccl64,
[ --enable-ccl64 Use CCL (Clozure Common Lisp), 64-bit],
[case "${enableval}" in
yes) ccl64=true
lisps_enabled="${lisps_enabled} ccl64"
explicit_lisp=true;;
no) ccl64=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-ccl64) ;;
esac],
[ccl64=false])
AC_ARG_WITH(ccl64,
[ --with-ccl64=<prog> Use ccl64 executable <prog> (default dx86cl64)],
[ccl64=true
lisps_enabled="${lisps_enabled} ccl64"
explicit_lisp=true
if test "$withval" = "yes"; then
CCL64_NAME="${ccl64_default_name}"
else
CCL64_NAME="$withval"
fi],
[CCL64_NAME=${ccl64_default_name}])
AC_ARG_ENABLE(ccl64-exec,
[ --enable-ccl64-exec Create a maxima executable image using CCL.
No check is made if the version of
CCL supports executable images],
[case "${enableval}" in
yes) ccl64_exec=true
ccl64=true
lisps_enabled="${lisps_enabled} ccl64"
explicit_lisp=true;;
no) ccl64_exec=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-ccl64-exec) ;;
esac
CCL64_EXEC=${ccl64_exec}],
[ccl64_exec=false
CCL64_EXEC=false])
dnl n.b. ecl_default_name is hardcoded in "with" message
ecl_default_name=ecl
AC_ARG_ENABLE(ecl,
[ --enable-ecl Use ECL],
[case "${enableval}" in
yes) ecl=true
lisps_enabled="${lisps_enabled} ecl"
explicit_lisp=true;;
no) ecl=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-ecl) ;;
esac],
[ecl=false])
AC_ARG_WITH(ecl,
[ --with-ecl=<prog> Use ECL executable <prog> (default ecl)],
[ecl=true
lisps_enabled="${lisps_enabled} ecl"
explicit_lisp=true
if test "$withval" = "yes"; then
ECL_NAME="${ecl_default_name}"
else
ECL_NAME="$withval"
fi],
[ECL_NAME=${ecl_default_name}])
if test x"${ecl}" = xtrue ; then
if test `echo "$ECL_NAME" | sed 's/\(.\).*/\1/'` = "/" ; then
if test -x "$ECL_NAME" ; then
ecl_found=true
else
ecl_found=false
fi
else
AC_CHECK_PROG(ecl_found,$ECL_NAME,true,false)
fi
if test x"${ecl_found}" = xfalse ; then
AC_MSG_WARN(ecl executable ${ECL_NAME} not found in PATH)
fi
fi
dnl xgettext
AC_ARG_ENABLE(gettext,
[ --enable-gettext Locale support],
[case "${enableval}" in
yes) enable_gettext=true ;;
no) enable_gettext=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-gettext) ;;
esac],
[enable_gettext=false])
AM_CONDITIONAL(ENABLE_GETTEXT, test x$enable_gettext = xtrue)
AC_ARG_ENABLE(build-docs,
[ --enable-build-docs Execute make in doc directories],
[case "${enableval}" in
yes) enable_build_docs=true ;;
no) enable_build_docs=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-build-docs) ;;
esac],
[enable_build_docs=true])
AM_CONDITIONAL(ENABLE_BUILD_DOCS, test x$enable_build_docs = xtrue)
AC_CHECK_PROG(makeinfo_found,makeinfo,true,false)
if test x"${enable_build_docs}" = xtrue ; then
if test x"${makeinfo_found}" = xfalse ; then
AC_MSG_ERROR(No makeinfo found; consider --disable-build-docs)
fi
dnl Check the version number. First get the first line from
dnl 'makeinfo --version' and extract out the version digits.
makeinfo_old=false
if test x"${makeinfo_found}" = xtrue; then
AC_MSG_CHECKING([if makeinfo version >= 5.1])
dnl expr is looking for something like "junk<digits-or-dots>"
dnl assuming that the end of the version string contains the
dnl version number consisting of digits separated by a period.
dnl This allows for version numbers like 6.8.90.
makeinfo_version_string=`expr "\`makeinfo --version | head -1\`" : '.* \([[.0-9]]\+\)'`
dnl echo Makeinfo version ${makeinfo_version}
dnl From makeinfo_version, extract out the major and minor
dnl version numbers. We only need the major and minor version
dnl numbers.
makeinfo_major=`expr $makeinfo_version_string : '\([[0-9]]\+\)'`
makeinfo_minor=`expr $makeinfo_version_string : '[[0-9]]\+\.\([[0-9]]\+\)'`
dnl echo major ${makeinfo_major}
dnl echo minor ${makeinfo_minor}
dnl Create a numerical version number by multiplying the major
dnl version by 100 and adding the minor version. This assumes
dnl the minor version is always less than or equal to 99.
makeinfo_version=`expr ${makeinfo_major} \* 100 \+ ${makeinfo_minor}`
dnl If version is older than 5.1, it's too old for generating
dnl maxima docs.
if test ${makeinfo_version} -lt 501; then
AC_MSG_ERROR([Makeinfo version (${makeinfo_version_string}) too old; consider --disable-build-docs])
else
AC_MSG_RESULT([${makeinfo_version_string} (6.8 or later preferred)])
fi
dnl Makeinfo version 7.0 and later needs a different init
dnl file. Figure which one to use, and also substitute this
dnl value in build_html.sh.in.
if test ${makeinfo_version} -ge 700; then
TEXI2HTML=texi2html-7.init
else
TEXI2HTML=texi2html.init
fi
AC_SUBST(TEXI2HTML)
dnl If the makeinfo version is older than 6.8, we need to
dnl include MathJax ourselves when building the HTML files.
need_mathjax=false
if test ${makeinfo_version} -lt 608; then
need_mathjax=true
fi
if test x"${need_mathjax}" = xtrue; then
dnl Need to include Mathjax.
NEED_MATHJAX='<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>'
dnl This also means that makeinfo doesn't support
dnl @displaymath, so we need to do something else.
NO_DISPLAYMATH='true'
AC_SUBST(NEED_MATHJAX)
AC_SUBST(NO_DISPLAYMATH)
fi
fi
fi
dnl languages
AC_ARG_ENABLE(lang-de,
[ --enable-lang-de German language support],
[case "${enableval}" in
yes) lang_de=true ;;
no) lang_de=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-lang-de) ;;
esac],
[lang_de=false])
AM_CONDITIONAL(LANG_DE, test x$lang_de = xtrue)
AC_ARG_ENABLE(lang-ja,
[ --enable-lang-ja Japanese language support],
[case "${enableval}" in
yes) lang_ja=true ;;
no) lang_ja=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-lang-ja) ;;
esac],
[lang_ja=false])
AM_CONDITIONAL(LANG_JA, test x$lang_ja = xtrue)
AC_ARG_ENABLE(lang-es,
[ --enable-lang-es Spanish language support],
[case "${enableval}" in
yes) lang_es=true ;;
no) lang_es=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-lang-es) ;;
esac],
[lang_es=false])
AC_SUBST(lang_es)
AM_CONDITIONAL(LANG_ES, test x$lang_es = xtrue)
AC_ARG_ENABLE(lang-pt,
[ --enable-lang-pt Portuguese language support],
[case "${enableval}" in
yes) lang_pt=true ;;
no) lang_pt=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-lang-pt) ;;
esac],
[lang_pt=false])
AC_SUBST(lang_pt)
AM_CONDITIONAL(LANG_PT, test x$lang_pt = xtrue)
AC_ARG_ENABLE(lang-pt_BR,
[ --enable-lang-pt_BR Brazilian Portuguese language support],
[case "${enableval}" in
yes) lang_pt_br=true ;;
no) lang_pt_br=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-lang-pt_BR) ;;
esac],
[lang_pt_br=false])
AC_SUBST(lang_pt_br)
AM_CONDITIONAL(LANG_PT_BR, test x$lang_pt_br = xtrue)
AC_ARG_ENABLE(lang-ru,
[ --enable-lang-ru Russian language support],
[case "${enableval}" in
yes) lang_ru=true ;;
no) lang_ru=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-lang-ru) ;;
esac],
[lang_ru=false])
AM_CONDITIONAL(LANG_RU, test x$lang_ru = xtrue)
dnl Optionally build the windows CHM help files
dnl default to false as requires win32 and Microsoft HTML Help Workshop
AC_ARG_ENABLE(chm,
[ --enable-chm Build Windows CHM help files],
[case "${enableval}" in
yes) chm=true ;;
no) chm=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-chm) ;;
esac],
[chm=false])
AM_CONDITIONAL(CHM, test x$chm = xtrue)
dnl hhc is the HTML Help Compiler for CHM documentation
hhc_default_name=hhc$EXEEXT
AC_ARG_WITH(hhc,
[ --with-hhc=<prog> Use HTML Help Compiler executable <prog> (default hhc)],
[hhc=true
if test "$withval" = "yes"; then
HHC="${hhc_default_name}"
else
HHC="$withval"
fi],
[HHC="${hhc_default_name}"])
# Check that hhc exists, using AC_CHECK_PROG
if test x$chm = xtrue; then
if test -x "${HHC}"; then
# HHC was a path to the executable, and it existed, which is
# great! We still say something to the caller, since this is
# probably less confusing.
AC_MSG_CHECKING([for hhc])
AC_MSG_RESULT([yes])
else
AC_CHECK_PROG(hhc_found, ${HHC}, yes)
if test x"${hhc_found}" != x"yes"; then
AC_MSG_ERROR([HTML Help Compiler executable ${HHC} not found])
fi
fi
fi
dnl Make the build quiet
AC_ARG_ENABLE(quiet_build,
[ --enable-quiet-build Make the build quieter],
[case "${enableval}" in
yes) quiet_build=true ;;
no) quiet_build=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-quiet-build) ;;
esac],
[quiet_build=false])
AM_CONDITIONAL(QUIET_BUILD, test x${quiet_build} = xtrue)
dnl Optionally build xmaxima.exe under windows
dnl default to false as additional software
AC_ARG_ENABLE(xmaxima_exe,
[ --enable-xmaxima-exe Build Windows xmaxima.exe for installer],
[case "${enableval}" in
yes) xmaxima_exe=true ;;
no) xmaxima_exe=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-xmaxima-exe) ;;
esac],
[xmaxima_exe=false])
AM_CONDITIONAL(XMAXIMA_EXE, test x$xmaxima_exe = xtrue)
dnl Optionally build xmaxima.exe under windows
dnl default to false as additional software
AC_ARG_ENABLE(winkill_exe,
[ --enable-winkill Build Windows winkill.exe and winkill_lib.dll for installer],
[case "${enableval}" in
yes) winkill_exe=true ;;
no) winkill_exe=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-winkill-exe) ;;
esac],
[winkill_exe=false])
AM_CONDITIONAL(WINKILL_EXE, test x$winkill_exe = xtrue)
dnl Should we build a win64 installer?
AC_ARG_ENABLE(win64-installer,
[ --enable-win64-installer Build a 64bit installer on Windows],
[case "${enableval}" in
yes) win64_installer=true ;;
no) win64_installer=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-win64-installer) ;;
esac],
[win64_installer=false])
AM_CONDITIONAL(WIN64_INSTALLER, test x$win64_installer = xtrue)
AC_SUBST(win64_installer)
dnl Tools for building xmaxima.exe on windows
dnl Hard code the filenames for now. Can over-ride on make command line
GCCVER=undefined
if test x${xmaxima_exe} = xtrue ; then
GCCVER=`gcc -dumpversion`
dnl http://tclkits.rkeene.org/fossil/wiki?name=Downloads
dnl and https://www.tcl.tk/starkits/
TCLKITSH=/c/programs/star/tclkitsh-8.6.3-win32-ix86.exe
TCLKIT_RUNTIME=/c/programs/star/tclkit-8.6.3-win32-ix86.exe
SDXKIT=/c/programs/star/sdx.kit
IMGKIT=/c/programs/star/img.kit
fi
AC_SUBST(GCCVER)
AC_SUBST(TCLKITSH)
AC_SUBST(TCLKIT_RUNTIME)
AC_SUBST(SDXKIT)
AC_SUBST(IMGKIT)
AM_CONDITIONAL(GCC331, test x${GCCVER} = x3.3.1)
if test x"${explicit_lisp}" = xfalse ; then
dnl See if any of the lisps can be found
AC_CHECK_PROG(clisp_found,${clisp_default_name},true,false)
AC_CHECK_PROG(gcl_found,${gcl_default_name},true,false)
AC_CHECK_PROG(cmucl_found,$CMUCL_NAME,true,false)
AC_CHECK_PROG(scl_found,$SCL_NAME,true,false)
AC_CHECK_PROG(sbcl_found,$SBCL_NAME,true,false)
AC_CHECK_PROG(acl_found,$ACL_NAME,true,false)
AC_CHECK_PROG(openmcl_found,$OPENMCL_NAME,true,false)
AC_CHECK_PROG(ccl64_found,$CCL64_NAME,true,false)
AC_CHECK_PROG(ecl_found,$ECL_NAME,true,false)
if test x"${clisp_found}" = xtrue ; then
clisp=true
lisps_enabled="${lisps_enabled} clisp"
elif test x"${gcl_found}" = xtrue ; then
gcl=true
lisps_enabled="${lisps_enabled} gcl"
elif test x"${cmucl_found}" = xtrue ; then
cmucl=true
lisps_enabled="${lisps_enabled} cmucl"
elif test x"${scl_found}" = xtrue ; then
scl=true
lisps_enabled="${lisps_enabled} scl"
elif test x"${sbcl_found}" = xtrue ; then
sbcl=true
lisps_enabled="${lisps_enabled} sbcl"
elif test x"${acl_found}" = xtrue ; then
acl=true
lisps_enabled="${lisps_enabled} acl"
elif test x"${ecl_found}" = xtrue ; then
ecl=true
lisps_enabled="${lisps_enabled} ecl"
else
AC_MSG_ERROR(No lisp implementation specified and none of the default executables [${clisp_default_name}(clisp),${gcl_default_name}(GCL),${cmucl_default_name}(CMUCL),${scl_default_name}(SCL),${sbcl_default_name}(SBCL),${acl_default_name}(ACL),${openmcl_default_name}(OpenMCL),${ecl_default_name}(ECL)] were found in PATH)
fi
fi
AM_CONDITIONAL(ABCL, test x$abcl = xtrue)
AM_CONDITIONAL(CLISP, test x$clisp = xtrue)
AM_CONDITIONAL(CLISP_EXEC, test x$clisp_exec = xtrue)
AM_CONDITIONAL(GCL, test x$gcl = xtrue)
AM_CONDITIONAL(CMUCL, test x$cmucl = xtrue)
AM_CONDITIONAL(CMUCL_EXEC, test x${cmucl_exec} = xtrue)
AM_CONDITIONAL(SCL, test x$scl = xtrue)
AM_CONDITIONAL(SBCL, test x$sbcl = xtrue)
AM_CONDITIONAL(SBCL_EXEC, test x$sbcl_exec = xtrue)
AM_CONDITIONAL(ACL, test x$acl = xtrue)
AM_CONDITIONAL(OPENMCL, test x$openmcl = xtrue)
AM_CONDITIONAL(OPENMCL_EXEC, test x${openmcl_exec} = xtrue)
AM_CONDITIONAL(ECL, test x$ecl = xtrue)
AM_CONDITIONAL(CCL64, test x$ccl64 = xtrue)
AM_CONDITIONAL(CCL64_EXEC, test x${ccl64_exec} = xtrue)
if test x"${clisp}" = xtrue; then
if test x"${CLISP_RUNTIME_PATH}" = x"" ; then
if test x"${mingw}" = xtrue ; then
CLISP_RUNTIME_PATH=`${CLISP_NAME} -norc -q -x "(format nil \"~a${CLISP_RUNTIME}\" (namestring *lib-directory*))"|sed 's/\"\\(.*\\)\"/\\1/'`
else
CLISP_RUNTIME_PATH=`${CLISP_NAME} -norc -q -x "(format nil \"~abase/${CLISP_RUNTIME}\" (namestring *lib-directory*))"|sed 's/\"\\(.*\\)\"/\\1/'`
fi
fi
if test -x ${CLISP_RUNTIME_PATH} ; then
echo "clisp runtime is \"${CLISP_RUNTIME_PATH}\""
else
AC_MSG_ERROR(clisp runtime "${CLISP_RUNTIME_PATH}" is not an executable)
fi
CLISP_RUNTIME=`basename ${CLISP_RUNTIME_PATH}`
fi
if test x"${cmucl}" = xtrue; then
if test x"${CMUCL_RUNTIME_PATH}" = x"" ; then
CMUCL_RUNTIME_PATH=`${CMUCL_NAME} -noinit -nositeinit -quiet -batch -eval '#-cmu18 (progn (setf (search-list "cmuclbin:") (append (lisp::parse-unix-search-path lisp::*cmucl-lib*) (mapcar (function (lambda (p) (concatenate (quote string) p "../bin/"))) (lisp::parse-unix-search-path lisp::*cmucl-lib*))))(enumerate-search-list (s "cmuclbin:lisp") (when (probe-file s) (format t "~A~%" s) (quit)))) #+cmu18 (format t "~a/../bin/lisp~%" common-lisp::*cmucl-lib*)(quit)'`
fi
if test -x "${CMUCL_RUNTIME_PATH}" ; then
echo "cmucl runtime is \"${CMUCL_RUNTIME_PATH}\""
else
dnl last chance: find CMUCL_NAME in path. Use it if it doesn't appear to
dnl be a shell script.
cmucl_path=`type -p "${CMUCL_NAME}"`
if test x"`grep -c '#!.*bin.*sh.*' ${cmucl_path}`" = x"0" ; then
CMUCL_RUNTIME_PATH="${cmucl_path}"
else
AC_MSG_ERROR([Unable to determine CMUCL runtime path.
The best guess for CMUCL runtime, "${CMUCL_RUNTIME_PATH}", is not
an executable. Use the argument
--with-cmucl-runtime=<path>
to set the actual CMUCL executable. If the CMUCL lisp command is a shell
script the CMUCL executable is the program exec'd by that shell script.])
fi
fi
CMUCL_RUNTIME=`basename ${CMUCL_RUNTIME_PATH}`
dnl cmucl final check
result=`"${CMUCL_RUNTIME_PATH}" -quiet -eval '(format t "MAXIMA_CMUCL_TEST_SUCCESS%")(quit)'`
retval=$?
if test ! x"${retval}" = x"0" ; then
AC_MSG_ERROR(unable to run cmucl runtime = "${CMUCL_RUNTIME_PATH}".
Please specify the full path of the cmucl runtime using the
--with-cmucl-runtime=<path>
flag.)
fi
count=`echo "${result}" | grep -c "MAXIMA_CMUCL_TEST_SUCCESS"`
if test ! "${count}" = "1" ; then
AC_MSG_ERROR(an error occurred while checking cmucl runtime)
fi
fi
if test x"${scl}" = xtrue; then
if test x"${SCL_RUNTIME_PATH}" = x"" ; then
SCL_RUNTIME_PATH=`${SCL_NAME} -noinit -nositeinit -quiet -batch -eval '(progn (enumerate-pathname-translations (pathname "file://library/../bin/lisp") (when (probe-file pathname) (format t "~A~%" (unix-namestring pathname)))) (quit))'`
fi
if test -x "${SCL_RUNTIME_PATH}" ; then
echo "scl runtime is \"${SCL_RUNTIME_PATH}\""
else
dnl last chance: find SCL_NAME in path. Use it if it doesn't appear to
dnl be a shell script.
scl_path=`type -p "${SCL_NAME}"`
if test x"`grep -c '#!.*bin.*sh.*' ${scl_path}`" = x"0" ; then
SCL_RUNTIME_PATH="${scl_path}"
else
AC_MSG_ERROR([Unable to determine SCL runtime path.
The best guess for SCL runtime, "${SCL_RUNTIME_PATH}", is not
an executable. Use the argument
--with-scl-runtime=<path>
to set the actual SCL executable. If the SCL lisp command is a shell