aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: e713f6b5d9780519ad165e23be8aaad8a7676ae4 (plain)
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
dnl Copyright (C) 2006-2022, Gabriel Dos Reis.
dnl All rights reserved.
dnl
dnl Redistribution and use in source and binary forms, with or without
dnl modification, are permitted provided that the following conditions are
dnl met:
dnl
dnl     - Redistributions of source code must retain the above copyright
dnl       notice, this list of conditions and the following disclaimer.
dnl
dnl     - Redistributions in binary form must reproduce the above copyright
dnl       notice, this list of conditions and the following disclaimer in
dnl       the documentation and/or other materials provided with the
dnl       distribution.
dnl
dnl THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
dnl IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
dnl TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
dnl PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
dnl OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
dnl EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
dnl PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
dnl PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
dnl LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
dnl NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
dnl SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

dnl
dnl  This configure template details the configuration process of setting up 
dnl  OpenAxiom for build from source codes.  The  process scrutinizes the 
dnl  build, host,  and target environments, and finally instantiates 
dnl  Makefiles for building OpenAxiom interpreter, compiler, libraries, and
dnl  auxiliary tools where appropriate.
dnl

AC_INIT([OpenAxiom],[1.5.0-2022-09-04],[open-axiom-bugs@lists.sf.net])

dnl Most of the macros used in this configure.ac are defined in files
dnl located in the subdirectory config/
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_MACRO_DIR([config])

AH_TOP([#ifndef OPENAXIOM_CONFIG_included]
[#define OPENAXIOM_CONFIG_included])
AH_BOTTOM([#endif // OPENAXIOM_CONFIG_included])

dnl Put all configuration macros here
AC_CONFIG_HEADERS([config/openaxiom-c-macros.h])

OPENAXIOM_CANONICAL_SYSTEM

dnl Page Automake
AM_INIT_AUTOMAKE([foreign subdir-objects])
dnl Don't attempt to re-run regenerate configuration and build
dnl files based on perception that they might be out of date
AM_MAINTAINER_MODE([disable])
AC_PREREQ([2.71])

dnl Simple sanity check.
AC_CONFIG_SRCDIR(src/Makefile.in)

dnl Look for PATHs to consider, on some exotic platforms.
OPENAXIOM_CHECK_FOR_ADDITIONAL_PATHS


open_axiom_installdir=$libdir/open-axiom/$target/$PACKAGE_VERSION
AC_SUBST(open_axiom_installdir)

dnl For the moment, the OpenAxiom base source code is written
dnl in a way that does not support cross build.  However, we do
dnl want to make cross build possible; consequently we issue
dnl a warning when we detect attempt at cross build.
dnl Note that we do not stop the configuration process because we do seek
dnl contributions for cross build support.
if test $build != $target; then
   AC_MSG_WARN([Cross build is not supported yet.])
   AC_MSG_WARN([Please notify open-axiom-devel@lists.sf.net if you succeed.])
fi

## Determine interpreters and shells.
OPENAXIOM_SHELLS

## Although OpenAxiom does not support cross build yet, let
## alone Canadian cross, we want to make sure that we do not write
## the build machinery in a way that actively unsupports 
## cross build.  Consequently, in the build tree, we sequester
## tools that we build and use on the build platform,
## in  sub-directories different from others.
oa_build_sharedir=$oa_builddir/share

## We have now almost switched entirely to C++.
AC_LANG([C++])

OPENAXIOM_HOST_COMPILERS
AM_CONDITIONAL([OA_USE_LLVM], [test -n $oa_use_llvm])
OPENAXIOM_REQUIRE_CXX([20])
OPENAXIOM_EXTRA_CXX_OPTIONS
AM_CONDITIONAL([OA_BUILD_GCL], [test x$oa_include_gcl = xyes])
AM_CONDITIONAL([OA_ECL_RT], [test x$oa_lisp_flavor = xecl])
AM_CONDITIONAL([OA_DELAYED_FFI], [test x$oa_delay_ffi = xyes])

OPENAXIOM_HOST_DATA_PROPERTIES

OPENAXIOM_DYNAMIC_MODULE_SUPPORT
OPENAXIOM_BUILD_TOOLS
OPENAXIOM_LISP_FLAGS
OPENAXIOM_FILE_EXTENSIONS

OPENAXIOM_BUILD_OPTIONS
OPENAXIOM_HOST_PROGS

OPENAXIOM_CHECK_CORE_SUPPORT
OPENAXIOM_CHECK_IO
AM_CONDITIONAL([OA_BUILD_SMAN], [test $oa_use_sman = 1])
OPENAXIOM_CHECK_GRAPHICS
AM_CONDITIONAL([OA_BUILD_GRAPHICS], [test x$oa_use_x = xyes])
AM_CONDITIONAL([OA_BUILD_GUI], [test x$oa_has_qt = xyes])

OPENAXIOM_FFI_TYPE_TABLE
OPENAXIOM_GCL_BUILD_OPTIONS
OPENAXIOM_CHECK_MM
OPENAXIOM_CHECK_MISC

## We are ready to instantiate makefiles.
AC_CONFIG_FILES([
  Makefile
  src/Makefile
  src/utils/Makefile
  src/rt/Makefile
  src/boot/Makefile
  src/algebra/Makefile])
OPENAXIOM_MAKEFILE([src/lib/Makefile])
OPENAXIOM_MAKEFILE([src/hyper/Makefile])
OPENAXIOM_MAKEFILE([src/driver/Makefile])
OPENAXIOM_MAKEFILE([src/lisp/Makefile])
OPENAXIOM_MAKEFILE([src/interp/Makefile])
OPENAXIOM_MAKEFILE([src/share/Makefile])
OPENAXIOM_MAKEFILE([src/input/Makefile])
OPENAXIOM_MAKEFILE([src/etc/Makefile])
OPENAXIOM_MAKEFILE([src/doc/Makefile])
OPENAXIOM_MAKEFILE([src/clef/Makefile])
OPENAXIOM_MAKEFILE([src/sman/Makefile])
OPENAXIOM_MAKEFILE([src/graph/Makefile])
OPENAXIOM_MAKEFILE([src/graph/Gdraws/Makefile])
OPENAXIOM_MAKEFILE([src/graph/view2D/Makefile])
OPENAXIOM_MAKEFILE([src/graph/view3D/Makefile])
OPENAXIOM_MAKEFILE([src/graph/viewAlone/Makefile])
OPENAXIOM_MAKEFILE([src/graph/viewman/Makefile])
AC_CONFIG_FILES([src/gui/gui.pro])

AC_CONFIG_LINKS([${target}/include/open-axiom/config:config/openaxiom-c-macros.h],
  [],
  [target=$target])

AC_OUTPUT

## Set up Makefile for QT-based gui
if test x$oa_has_qt = xyes; then
  oa_qmake_spec=
  case $host,$GXX in
     *darwin*,yes)
         oa_qmake_spec="-spec macx-g++"
         ;;
  esac
  (cd src/gui && $OA_QT_QMAKE -makefile $oa_qmake_spec gui.pro)
fi

## Generate rules to extrad SPAD type definitions from pamphlets.
AS_ECHO_N(["extracting list of SPAD type definitions..."])
egrep '<<(category|domain|package) .*>>=' \
    $srcdir/src/algebra/*.spad.pamphlet \
    | sort | uniq | \
    while IFS=':' read spad_file chunk_desc; do 
        chunk_desc=`echo $chunk_desc | sed -e 's,<<,,' -e 's,>>=,,'`
        set $chunk_desc; spad_abbrev=$2
        cat >> src/algebra/tmp-extract.mk <<EOF
$spad_abbrev.spad: \$(srcdir)/`basename $spad_file` ; \
    @\$(oa_hammer) --output=\$@.tmp --tangle="$chunk_desc" \$< && \
    \$(top_confdir)/move-if-change \$@.tmp \$@
EOF
    done 
AC_MSG_RESULT([done])
$srcdir/config/move-if-change \
    src/algebra/tmp-extract.mk src/algebra/extract.mk


echo "Type '${MAKE}' (without quotes) to build OpenAxiom"

dnl That is all folks.