annotate configure.ac @ 4854:990b5e6b1970

use AC_PATH_PROG to check for ccache; use result in ccache-links Makefile rule
author John W. Eaton <jwe@octave.org>
date Wed, 10 Oct 2018 14:39:43 -0400
parents 2ee6a02e6f28
children 2bffe6abd696
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 dnl Process this file with autoconf to produce a configure script.
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 AC_PREREQ([2.62])
4650
1d9448607538 Use https in links whenever possible (Bug #53555).
Rik <rik@octave.org>
parents: 4488
diff changeset
4 AC_INIT([MXE-Octave], [0.0.35], [https://octave.org/bugs.html], [mxe-octave])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5
4740
9942a9c37ffe remove octave 'alpha' package
John W. Eaton <jwe@octave.org>
parents: 4650
diff changeset
6 AC_CONFIG_SRCDIR([src/default-octave.mk])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 AC_CONFIG_AUX_DIR([tools])
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 ### Check for bootstrap tools. This list is probably not complete yet.
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 AC_PROG_AWK
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 AC_PROG_GREP
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 AC_PROG_LN_S
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 AC_PROG_MKDIR_P
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 AC_PROG_INSTALL
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 AC_PROG_CC
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 AC_PROG_CPP
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 AC_PROG_GCC_TRADITIONAL
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 dnl PKG_PROG_PKG_CONFIG
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 dnl OCTAVE_PROG_FIND
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 dnl OCTAVE_PROG_SED
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 dnl OCTAVE_PROG_PERL
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 dnl OCTAVE_PROG_GPERF
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 dnl OCTAVE_PROG_FLEX
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 dnl OCTAVE_PROG_BISON
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 dnl OCTAVE_PROG_MAKEINFO
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 dnl OCTAVE_PROG_TEXI2DVI
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 dnl OCTAVE_PROG_TEXI2PDF
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 dnl OCTAVE_PROG_GHOSTSCRIPT
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 dnl OCTAVE_PROG_GNUPLOT
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 dnl OCTAVE_PROG_PAGER
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 dnl OCTAVE_PROG_PYTHON
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 dnl OCTAVE_CHECK_LIB_TERMLIB
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 ### Define the path to the shell on the host system. Most systems will
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 ### ensure /bin/sh is the default shell so this can be safely ignored by
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 ### almost everyone. However, when building for Android, for example,
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39 ### this will need to be set.
4460
ce2a3053aabc configure: set SHELL to /bin/bash
Mike Miller <mtmiller@octave.org>
parents: 4320
diff changeset
40 SHELL=/bin/bash
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41 AC_ARG_WITH([shell],
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 [AS_HELP_STRING([--with-shell=SHELL],
4460
ce2a3053aabc configure: set SHELL to /bin/bash
Mike Miller <mtmiller@octave.org>
parents: 4320
diff changeset
43 [use SHELL as the shell interpreter (default: /bin/bash)])])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 case $with_shell in
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45 no)
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 AC_MSG_ERROR([A shell interpreter is required])
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
47 ;;
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48 yes | "")
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49 ;;
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 *)
3044
eb1a22446662 substitute SHELL
John W. Eaton <jwe@octave.org>
parents: 3043
diff changeset
51 SHELL=$with_shell
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52 ;;
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 esac
3044
eb1a22446662 substitute SHELL
John W. Eaton <jwe@octave.org>
parents: 3043
diff changeset
54 AC_SUBST(SHELL)
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
55
4197
667aa26d9dd4 * configure.ac: Don't use undefined in default definition of PKG_DIR.
John W. Eaton <jwe@octave.org>
parents: 4195
diff changeset
56 PKG_DIR="pkg"
4193
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
57 AC_ARG_WITH([pkg-dir],
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
58 [AS_HELP_STRING([--with-pkg-dir=DIR],
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
59 [use DIR as the location for downloaded packages (default: pkg)])])
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
60 case $with_pkg_dir in
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
61 no)
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
62 AC_MSG_ERROR([A pkg directory is required])
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
63 ;;
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
64 yes | "")
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
65 ;;
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
66 *)
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
67 PKG_DIR="$withval"
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
68 ;;
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
69 esac
4197
667aa26d9dd4 * configure.ac: Don't use undefined in default definition of PKG_DIR.
John W. Eaton <jwe@octave.org>
parents: 4195
diff changeset
70 ## Ensure directory exists and that we refer to it using an absolute name
667aa26d9dd4 * configure.ac: Don't use undefined in default definition of PKG_DIR.
John W. Eaton <jwe@octave.org>
parents: 4195
diff changeset
71 if ! test -d "$PKG_DIR"; then
667aa26d9dd4 * configure.ac: Don't use undefined in default definition of PKG_DIR.
John W. Eaton <jwe@octave.org>
parents: 4195
diff changeset
72 mkdir -p "$PKG_DIR"
667aa26d9dd4 * configure.ac: Don't use undefined in default definition of PKG_DIR.
John W. Eaton <jwe@octave.org>
parents: 4195
diff changeset
73 fi
667aa26d9dd4 * configure.ac: Don't use undefined in default definition of PKG_DIR.
John W. Eaton <jwe@octave.org>
parents: 4195
diff changeset
74 PKG_DIR=`(cd "$PKG_DIR"; pwd)`
4193
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
75 AC_SUBST(PKG_DIR)
32814edc00db allow location of pkg directory to be specified
John W. Eaton <jwe@octave.org>
parents: 4162
diff changeset
76
4194
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
77 AC_ARG_WITH([ccache],
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
78 [AS_HELP_STRING([--with-ccache], [use ccache (default: no)])],
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
79 [case $withval in
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
80 no) USE_CCACHE=no ;;
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
81 yes) USE_CCACHE=yes ;;
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
82 *) AC_MSG_ERROR([bad value "$enableval" for --with-ccache]) ;;
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
83 esac], [USE_CCACHE=no])
4853
2ee6a02e6f28 check for ccache; don't attempt to use ccache if it is missing (bug #54746)
John W. Eaton <jwe@octave.org>
parents: 4796
diff changeset
84 if test "$USE_CCACHE" = yes; then
4854
990b5e6b1970 use AC_PATH_PROG to check for ccache; use result in ccache-links Makefile rule
John W. Eaton <jwe@octave.org>
parents: 4853
diff changeset
85 AC_PATH_PROG(CCACHE, ccache)
4853
2ee6a02e6f28 check for ccache; don't attempt to use ccache if it is missing (bug #54746)
John W. Eaton <jwe@octave.org>
parents: 4796
diff changeset
86 if test -z "$CCACHE"; then
2ee6a02e6f28 check for ccache; don't attempt to use ccache if it is missing (bug #54746)
John W. Eaton <jwe@octave.org>
parents: 4796
diff changeset
87 AC_MSG_WARN([ccache program not found; not using ccache for build])
2ee6a02e6f28 check for ccache; don't attempt to use ccache if it is missing (bug #54746)
John W. Eaton <jwe@octave.org>
parents: 4796
diff changeset
88 USE_CCACHE=no
2ee6a02e6f28 check for ccache; don't attempt to use ccache if it is missing (bug #54746)
John W. Eaton <jwe@octave.org>
parents: 4796
diff changeset
89 fi
2ee6a02e6f28 check for ccache; don't attempt to use ccache if it is missing (bug #54746)
John W. Eaton <jwe@octave.org>
parents: 4796
diff changeset
90 fi
4194
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
91 AC_SUBST(USE_CCACHE)
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
92
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4748
diff changeset
93 AC_ARG_WITH([msys2],
4796
8fd91da9df90 configure.ac: use msys2 by default.
John W. Eaton <jwe@octave.org>
parents: 4793
diff changeset
94 [AS_HELP_STRING([--with-msys2], [use msys2 in windows distribution (default: yes)])],
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4748
diff changeset
95 [case $withval in
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4748
diff changeset
96 no) USE_MSYS2=no ;;
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4748
diff changeset
97 yes) USE_MSYS2=yes ;;
4796
8fd91da9df90 configure.ac: use msys2 by default.
John W. Eaton <jwe@octave.org>
parents: 4793
diff changeset
98 *) AC_MSG_ERROR([bad value "$enableval" for --with-msys2]) ;;
8fd91da9df90 configure.ac: use msys2 by default.
John W. Eaton <jwe@octave.org>
parents: 4793
diff changeset
99 esac], [USE_MSYS2=yes])
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4748
diff changeset
100 AC_SUBST(USE_MSYS2)
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4748
diff changeset
101
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
102 AC_ARG_ENABLE([windows-64],
4307
d15e1b63b01f make --enable-windows-64 the default
John W. Eaton <jwe@octave.org>
parents: 4304
diff changeset
103 [AS_HELP_STRING([--disable-windows-64],
d15e1b63b01f make --enable-windows-64 the default
John W. Eaton <jwe@octave.org>
parents: 4304
diff changeset
104 [don't build a Windows 64 cross compiler])],
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
105 [case $enableval in
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
106 no) ENABLE_WINDOWS_64=no ;;
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
107 yes) ENABLE_WINDOWS_64=yes ;;
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
108 *) AC_MSG_ERROR([bad value "$enableval" for --enable-windows-64]) ;;
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
109 esac], [ENABLE_WINDOWS_64=yes])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
110
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
111 AC_ARG_ENABLE([64],
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
112 [AS_HELP_STRING([--enable-64],
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
113 [use 64-bit integers for array dimensions and indexing])],
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
114 [case $enableval in
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
115 no) ENABLE_64=no ;;
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
116 yes) ENABLE_64=yes ;;
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
117 *) AC_MSG_ERROR([bad value "$enableval" for --enable-64]) ;;
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
118 esac], [ENABLE_64=unknown])
3710
1220a9158bc1 make building 64-bit Windows binaries independent from enabling 64-bit indexing in Octave
John W. Eaton <jwe@octave.org>
parents: 3702
diff changeset
119
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
120 if test "$ENABLE_64" = unknown; then
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
121 ENABLE_64="$ENABLE_WINDOWS_64"
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
122 fi
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
123
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
124 AC_ARG_ENABLE([fortran-int64],
4304
0db33a326eec make --enable-64 the default
John W. Eaton <jwe@octave.org>
parents: 4301
diff changeset
125 [AS_HELP_STRING([--enable-fortran-int64],
0db33a326eec make --enable-64 the default
John W. Eaton <jwe@octave.org>
parents: 4301
diff changeset
126 [use 64-bit integers for fortran (and other) numerical library code])],
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
127 [case $enableval in
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
128 no) ENABLE_FORTRAN_INT64=no ;;
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
129 yes) ENABLE_FORTRAN_INT64=yes ;;
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
130 *) AC_MSG_ERROR([bad value "$enableval" for --enable-fortran-int64]) ;;
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
131 esac], [ENABLE_FORTRAN_INT64=no])
4304
0db33a326eec make --enable-64 the default
John W. Eaton <jwe@octave.org>
parents: 4301
diff changeset
132
0db33a326eec make --enable-64 the default
John W. Eaton <jwe@octave.org>
parents: 4301
diff changeset
133 if test "$ENABLE_64" = yes || test "$ENABLE_FORTRAN_INT64" = yes; then
0db33a326eec make --enable-64 the default
John W. Eaton <jwe@octave.org>
parents: 4301
diff changeset
134 if test "$ENABLE_WINDOWS_64" = no; then
4319
79bddf470912 fix 64-bit --enable feature options
John W. Eaton <jwe@octave.org>
parents: 4307
diff changeset
135 AC_MSG_ERROR([--enable-fortran-int64 and --enable-64 both require --enable-windows-64])
4304
0db33a326eec make --enable-64 the default
John W. Eaton <jwe@octave.org>
parents: 4301
diff changeset
136 fi
3710
1220a9158bc1 make building 64-bit Windows binaries independent from enabling 64-bit indexing in Octave
John W. Eaton <jwe@octave.org>
parents: 3702
diff changeset
137 fi
1220a9158bc1 make building 64-bit Windows binaries independent from enabling 64-bit indexing in Octave
John W. Eaton <jwe@octave.org>
parents: 3702
diff changeset
138
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
139 AC_SUBST(ENABLE_64)
4304
0db33a326eec make --enable-64 the default
John W. Eaton <jwe@octave.org>
parents: 4301
diff changeset
140 AC_SUBST(ENABLE_FORTRAN_INT64)
3710
1220a9158bc1 make building 64-bit Windows binaries independent from enabling 64-bit indexing in Octave
John W. Eaton <jwe@octave.org>
parents: 3702
diff changeset
141 AC_SUBST(ENABLE_WINDOWS_64)
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
142
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
143 AC_ARG_ENABLE([shared],
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
144 [AS_HELP_STRING([--disable-shared], [Disable shared libraries])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
145 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
146 no) BUILD_SHARED=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
147 yes) BUILD_SHARED=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
148 *) AC_MSG_ERROR([bad value "$enableval" for --enable-shared]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
149 esac], [BUILD_SHARED=yes])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
150 AC_SUBST(BUILD_SHARED)
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
151
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
152 AC_ARG_ENABLE([static],
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
153 [AS_HELP_STRING([--enable-static], [Enable static libraries])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
154 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
155 no) BUILD_STATIC=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
156 yes) BUILD_STATIC=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
157 *) AC_MSG_ERROR([bad value "$enableval" for --enable-static]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
158 esac], [BUILD_STATIC=no])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
159 AC_SUBST(BUILD_STATIC)
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
160
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
161 AC_ARG_ENABLE([jit],
3524
8a4a11234ccf disable jit compiler by default
John W. Eaton <jwe@octave.org>
parents: 3472
diff changeset
162 [AS_HELP_STRING([--enable-jit], [Enable Octave JIT compiler])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
163 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
164 no) ENABLE_JIT=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
165 yes) ENABLE_JIT=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
166 *) AC_MSG_ERROR([bad value "$enableval" for --enable-jit]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
167 esac], [ENABLE_JIT=no])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
168 AC_SUBST(ENABLE_JIT)
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
169
3333
4372645ff7e3 Add --disable-java option to configure.
Rik <rik@octave.org>
parents: 3253
diff changeset
170 AC_ARG_ENABLE([java],
4162
febc08a7dee7 configure.ac: Make help strings more informative.
Rik <rik@octave.org>
parents: 4124
diff changeset
171 [AS_HELP_STRING([--disable-java], [Disable Java/Octave interface])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
172 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
173 no) ENABLE_JAVA=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
174 yes) ENABLE_JAVA=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
175 *) AC_MSG_ERROR([bad value "$enableval" for --enable-java]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
176 esac], [ENABLE_JAVA=yes])
3333
4372645ff7e3 Add --disable-java option to configure.
Rik <rik@octave.org>
parents: 3253
diff changeset
177 AC_SUBST(ENABLE_JAVA)
4372645ff7e3 Add --disable-java option to configure.
Rik <rik@octave.org>
parents: 3253
diff changeset
178
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
179 AC_ARG_ENABLE([[docs]],
4162
febc08a7dee7 configure.ac: Make help strings more informative.
Rik <rik@octave.org>
parents: 4124
diff changeset
180 [AS_HELP_STRING([--disable-docs], [Disable building Octave documentation])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
181 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
182 no) ENABLE_DOCS=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
183 yes) ENABLE_DOCS=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
184 *) AC_MSG_ERROR([bad value "$enableval" for --enable-[docs]]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
185 esac], [ENABLE_DOCS=yes])
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3333
diff changeset
186 AC_SUBST(ENABLE_DOCS)
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3333
diff changeset
187
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
188 AC_ARG_ENABLE([[native-build]],
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
189 [AS_HELP_STRING([--enable-native-build],
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
190 [Enable native build (default is cross compile)])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
191 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
192 no) MXE_NATIVE_BUILD=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
193 yes) MXE_NATIVE_BUILD=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
194 *) AC_MSG_ERROR([bad value "$enableval" for --enable-[native-build]]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
195 esac], [MXE_NATIVE_BUILD=no])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
196 AC_SUBST(MXE_NATIVE_BUILD)
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
197
3208
1080856f48c4 new configure option: --enable-system-fontconfig
John W. Eaton <jwe@octave.org>
parents: 3207
diff changeset
198 AC_ARG_ENABLE([system-fontconfig],
1080856f48c4 new configure option: --enable-system-fontconfig
John W. Eaton <jwe@octave.org>
parents: 3207
diff changeset
199 [AS_HELP_STRING([--enable-system-fontconfig],
1080856f48c4 new configure option: --enable-system-fontconfig
John W. Eaton <jwe@octave.org>
parents: 3207
diff changeset
200 [Use fontconfig already installed on system])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
201 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
202 no) USE_SYSTEM_FONTCONFIG=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
203 yes) USE_SYSTEM_FONTCONFIG=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
204 *) AC_MSG_ERROR([bad value "$enableval" for --enable-system-fontconfig]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
205 esac], [USE_SYSTEM_FONTCONFIG=$MXE_NATIVE_BUILD])
3208
1080856f48c4 new configure option: --enable-system-fontconfig
John W. Eaton <jwe@octave.org>
parents: 3207
diff changeset
206 AC_SUBST(USE_SYSTEM_FONTCONFIG)
1080856f48c4 new configure option: --enable-system-fontconfig
John W. Eaton <jwe@octave.org>
parents: 3207
diff changeset
207
4488
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
208 AC_ARG_ENABLE([system-opengl],
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
209 [AS_HELP_STRING([--disable-system-opengl],
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
210 [Use OpenGL libraries already installed on system])],
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
211 [case "$enableval" in
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
212 no) USE_SYSTEM_OPENGL=no ;;
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
213 yes) USE_SYSTEM_OPENGL=yes ;;
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
214 *) AC_MSG_ERROR([bad value "$enableval" for --enable-system-opengl]) ;;
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
215 esac], [USE_SYSTEM_OPENGL=yes])
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
216 AC_SUBST(USE_SYSTEM_OPENGL)
8f9bee27223f optionally build mesa OpenGL library
John W. Eaton <jwe@octave.org>
parents: 4461
diff changeset
217
3827
02990526ae69 allow building of X11 libs to be disabled
John W. Eaton <jwe@octave.org>
parents: 3756
diff changeset
218 AC_ARG_ENABLE([system-x11-libs],
02990526ae69 allow building of X11 libs to be disabled
John W. Eaton <jwe@octave.org>
parents: 3756
diff changeset
219 [AS_HELP_STRING([--enable-system-x11-libs],
02990526ae69 allow building of X11 libs to be disabled
John W. Eaton <jwe@octave.org>
parents: 3756
diff changeset
220 [Use X11 libraries already installed on system])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
221 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
222 no) USE_SYSTEM_X11_LIBS=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
223 yes) USE_SYSTEM_X11_LIBS=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
224 *) AC_MSG_ERROR([bad value "$enableval" for --enable-system-x11-libs]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
225 esac], [USE_SYSTEM_X11_LIBS=$MXE_NATIVE_BUILD])
3827
02990526ae69 allow building of X11 libs to be disabled
John W. Eaton <jwe@octave.org>
parents: 3756
diff changeset
226 AC_SUBST(USE_SYSTEM_X11_LIBS)
02990526ae69 allow building of X11 libs to be disabled
John W. Eaton <jwe@octave.org>
parents: 3756
diff changeset
227
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
228 AC_ARG_ENABLE([system-gcc],
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
229 [AS_HELP_STRING([--enable-system-gcc],
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
230 [Use GCC already installed on system])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
231 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
232 no) USE_SYSTEM_GCC=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
233 yes) USE_SYSTEM_GCC=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
234 *) AC_MSG_ERROR([bad value "$enableval" for --enable-system-gcc]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
235 esac], [USE_SYSTEM_GCC=$MXE_NATIVE_BUILD])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
236 AC_SUBST(USE_SYSTEM_GCC)
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
237
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
238 AC_ARG_ENABLE([lib64-directory],
3226
c56f388f1297 make using lib64 directory configurable
John W. Eaton <jwe@octave.org>
parents: 3219
diff changeset
239 [AS_HELP_STRING([--enable-lib64-directory],
c56f388f1297 make using lib64 directory configurable
John W. Eaton <jwe@octave.org>
parents: 3219
diff changeset
240 [Search lib64 directory for libraries])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
241 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
242 no) ENABLE_LIB64_DIRECTORY=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
243 yes) ENABLE_LIB64_DIRECTORY=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
244 *) AC_MSG_ERROR([bad value "$enableval" for --enable-lib64-directory]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
245 esac], [ENABLE_LIB64_DIRECTORY=no])
3226
c56f388f1297 make using lib64 directory configurable
John W. Eaton <jwe@octave.org>
parents: 3219
diff changeset
246 AC_SUBST(ENABLE_LIB64_DIRECTORY)
c56f388f1297 make using lib64 directory configurable
John W. Eaton <jwe@octave.org>
parents: 3219
diff changeset
247
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
248 AC_ARG_ENABLE([pic-flag],
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
249 [AS_HELP_STRING([--enable-pic-flag], [Compile with PIC flag])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
250 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
251 no) USE_PIC_FLAG=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
252 yes) USE_PIC_FLAG=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
253 *) AC_MSG_ERROR([bad value "$enableval" for --enable-pic-flag]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
254 esac], [USE_PIC_FLAG=no])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
255 AC_SUBST(USE_PIC_FLAG)
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
256
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3429
diff changeset
257 AC_ARG_ENABLE([strip-dist-files],
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3429
diff changeset
258 [AS_HELP_STRING([--disable-strip-dist-files], [Don't strip distributed files])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
259 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
260 no) STRIP_DIST_FILES=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
261 yes) STRIP_DIST_FILES=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
262 *) AC_MSG_ERROR([bad value "$enableval" for --enable-strip-dist-files]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
263 esac], [STRIP_DIST_FILES=yes])
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3429
diff changeset
264 AC_SUBST(STRIP_DIST_FILES)
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3429
diff changeset
265
3068
fb0836e4a677 Add --enable-openblas option to configure
John Donoghue <john.donoghue@ieee.org>
parents: 3060
diff changeset
266 AC_ARG_ENABLE([openblas],
3693
5037295b2e89 enable openblas by default
John W. Eaton <jwe@octave.org>
parents: 3655
diff changeset
267 [AS_HELP_STRING([--disable-openblas],
4162
febc08a7dee7 configure.ac: Make help strings more informative.
Rik <rik@octave.org>
parents: 4124
diff changeset
268 [Disable use of OpenBLAS in Octave])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
269 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
270 no) ENABLE_OPENBLAS=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
271 yes) ENABLE_OPENBLAS=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
272 *) AC_MSG_ERROR([bad value "$enableval" for --enable-openblas]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
273 esac], [ENABLE_OPENBLAS=yes])
3068
fb0836e4a677 Add --enable-openblas option to configure
John Donoghue <john.donoghue@ieee.org>
parents: 3060
diff changeset
274 AC_SUBST(ENABLE_OPENBLAS)
fb0836e4a677 Add --enable-openblas option to configure
John Donoghue <john.donoghue@ieee.org>
parents: 3060
diff changeset
275
3887
768c5d4c5b4e new configure option: --enable-qhull-no-strict-aliasing-flag
John W. Eaton <jwe@octave.org>
parents: 3853
diff changeset
276 AC_ARG_ENABLE([qhull-no-strict-aliasing-flag],
768c5d4c5b4e new configure option: --enable-qhull-no-strict-aliasing-flag
John W. Eaton <jwe@octave.org>
parents: 3853
diff changeset
277 [AS_HELP_STRING([--enable-qhull-no-strict-aliasing-flag],
768c5d4c5b4e new configure option: --enable-qhull-no-strict-aliasing-flag
John W. Eaton <jwe@octave.org>
parents: 3853
diff changeset
278 [Compile Qhull with -fno-strict-aliasing flag])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
279 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
280 no) ENABLE_QHULL_NO_STRICT_ALIASING_FLAG=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
281 yes) ENABLE_QHULL_NO_STRICT_ALIASING_FLAG=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
282 *) AC_MSG_ERROR([bad value "$enableval" for --enable-qhull-no-strict-aliasing-flag]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
283 esac], [ENABLE_QHULL_NO_STRICT_ALIASING_FLAG=no])
3887
768c5d4c5b4e new configure option: --enable-qhull-no-strict-aliasing-flag
John W. Eaton <jwe@octave.org>
parents: 3853
diff changeset
284 AC_SUBST(ENABLE_QHULL_NO_STRICT_ALIASING_FLAG)
768c5d4c5b4e new configure option: --enable-qhull-no-strict-aliasing-flag
John W. Eaton <jwe@octave.org>
parents: 3853
diff changeset
285
3721
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents: 3716
diff changeset
286 AC_ARG_ENABLE([octave],
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents: 3716
diff changeset
287 [AS_HELP_STRING([--enable-octave=stable],
4748
a6b4355efbd6 new organization for release, stable, and default versions of Octave
John W. Eaton <jwe@octave.org>
parents: 4740
diff changeset
288 [Enable a specific build of Octave (release, stable, default)])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
289 [case $enableval in
4748
a6b4355efbd6 new organization for release, stable, and default versions of Octave
John W. Eaton <jwe@octave.org>
parents: 4740
diff changeset
290 release) ENABLE_OCTAVE="release-" ;;
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
291 stable) ENABLE_OCTAVE="stable-" ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
292 default) ENABLE_OCTAVE="default-" ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
293 *) AC_MSG_ERROR([bad value "$enableval" for --enable-octave]) ;;
4748
a6b4355efbd6 new organization for release, stable, and default versions of Octave
John W. Eaton <jwe@octave.org>
parents: 4740
diff changeset
294 esac], [ENABLE_OCTAVE="release-"])
3721
933b99febcf1 Expand options to support 3 possible sources of octave
John Donoghue <john.donoghue@ieee.org>
parents: 3716
diff changeset
295 AC_SUBST(ENABLE_OCTAVE)
3611
5ab3fc53d7a5 Add enable/disable-stable configure option
John Donoghue
parents: 3566
diff changeset
296
3853
58935b4de51f Enable build cross mkoctfile and compile of-XXXX package files
John Donoghue
parents: 3827
diff changeset
297 AC_ARG_ENABLE([binary-packages],
58935b4de51f Enable build cross mkoctfile and compile of-XXXX package files
John Donoghue
parents: 3827
diff changeset
298 [AS_HELP_STRING([--enable-binary-packages],
4162
febc08a7dee7 configure.ac: Make help strings more informative.
Rik <rik@octave.org>
parents: 4124
diff changeset
299 [Enable creating binary Octave Forge packages])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
300 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
301 no) ENABLE_BINARY_PACKAGES=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
302 yes) ENABLE_BINARY_PACKAGES=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
303 *) AC_MSG_ERROR([bad value "$enableval" for --enable-binary-packages]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
304 esac], [ENABLE_BINARY_PACKAGES=no])
3853
58935b4de51f Enable build cross mkoctfile and compile of-XXXX package files
John Donoghue
parents: 3827
diff changeset
305 AC_SUBST(ENABLE_BINARY_PACKAGES)
58935b4de51f Enable build cross mkoctfile and compile of-XXXX package files
John Donoghue
parents: 3827
diff changeset
306
3958
ac3abcea55e8 Add --enable-devel-tools option to configure
John Donoghue <john.donoghue@ieee.org>
parents: 3890
diff changeset
307 AC_ARG_ENABLE([devel-tools],
ac3abcea55e8 Add --enable-devel-tools option to configure
John Donoghue <john.donoghue@ieee.org>
parents: 3890
diff changeset
308 [AS_HELP_STRING([--enable-devel-tools],
4162
febc08a7dee7 configure.ac: Make help strings more informative.
Rik <rik@octave.org>
parents: 4124
diff changeset
309 [Enable creating developer tools such as gdb])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
310 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
311 no) ENABLE_DEVEL_TOOLS=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
312 yes) ENABLE_DEVEL_TOOLS=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
313 *) AC_MSG_ERROR([bad value "$enableval" for --enable-devel-tools]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
314 esac], [ENABLE_DEVEL_TOOLS=no])
3958
ac3abcea55e8 Add --enable-devel-tools option to configure
John Donoghue <john.donoghue@ieee.org>
parents: 3890
diff changeset
315 AC_SUBST(ENABLE_DEVEL_TOOLS)
ac3abcea55e8 Add --enable-devel-tools option to configure
John Donoghue <john.donoghue@ieee.org>
parents: 3890
diff changeset
316
4222
44b1a9b2193e qt5: add initial qt5 to mxe-octave, based on mxe.cc
John D
parents: 4197
diff changeset
317 AC_ARG_ENABLE([qt5],
4461
cc4433ef0b89 configure: build with Qt 5 by default now
Mike Miller <mtmiller@octave.org>
parents: 4460
diff changeset
318 [AS_HELP_STRING([--disable-qt5],
cc4433ef0b89 configure: build with Qt 5 by default now
Mike Miller <mtmiller@octave.org>
parents: 4460
diff changeset
319 [Build GNU Octave using Qt 4 instead of the default Qt 5])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
320 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
321 no) ENABLE_QT5=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
322 yes) ENABLE_QT5=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
323 *) AC_MSG_ERROR([bad value "$enableval" for --enable-qt5]) ;;
4461
cc4433ef0b89 configure: build with Qt 5 by default now
Mike Miller <mtmiller@octave.org>
parents: 4460
diff changeset
324 esac], [ENABLE_QT5=yes])
4222
44b1a9b2193e qt5: add initial qt5 to mxe-octave, based on mxe.cc
John D
parents: 4197
diff changeset
325 AC_SUBST(ENABLE_QT5)
44b1a9b2193e qt5: add initial qt5 to mxe-octave, based on mxe.cc
John D
parents: 4197
diff changeset
326
4301
b6819fef128f Dont install gtk-docs
John D
parents: 4222
diff changeset
327 # install dependancy package docs (or not to save space)
b6819fef128f Dont install gtk-docs
John D
parents: 4222
diff changeset
328 AC_ARG_ENABLE([dep-docs],
b6819fef128f Dont install gtk-docs
John D
parents: 4222
diff changeset
329 [AS_HELP_STRING([--enable-dep-docs],
b6819fef128f Dont install gtk-docs
John D
parents: 4222
diff changeset
330 [Enable install of dependancy package dos])],
4320
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
331 [case "$enableval" in
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
332 no) ENABLE_DEP_DOCS=no ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
333 yes) ENABLE_DEP_DOCS=yes ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
334 *) AC_MSG_ERROR([bad value "$enableval" for --enable-dep-docs]) ;;
26e2e3ace9e6 handle unknown/unspecified AC_ARG options consistently
John W. Eaton <jwe@octave.org>
parents: 4319
diff changeset
335 esac], [ENABLE_DEP_DOCS=no])
4301
b6819fef128f Dont install gtk-docs
John D
parents: 4222
diff changeset
336 AC_SUBST(ENABLE_DEP_DOCS)
b6819fef128f Dont install gtk-docs
John D
parents: 4222
diff changeset
337
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
338 ### Default is to cross compile for mingw.
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
339
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
340 echo $host_alias
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
341 if test -n "$host_alias"; then
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
342 MXE_SYSTEM=$host_alias
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
343 else
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
344 MXE_SYSTEM=mingw
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
345 fi
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
346 AC_SUBST(MXE_SYSTEM)
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
347
3060
cbdf4575016d add set_mxe_env.sh.in to tools
"John Donoghue <john.donoghue@ieee.org>
parents: 3044
diff changeset
348 # set MXE_ROOTDIR for knowing the mxe root
4066
0962acdde3be builld: allow out of source build
John Donoghue
parents: 3958
diff changeset
349 MXE_ROOTDIR=`cd "$builddir"; pwd`
3060
cbdf4575016d add set_mxe_env.sh.in to tools
"John Donoghue <john.donoghue@ieee.org>
parents: 3044
diff changeset
350 AC_SUBST(MXE_ROOTDIR)
cbdf4575016d add set_mxe_env.sh.in to tools
"John Donoghue <john.donoghue@ieee.org>
parents: 3044
diff changeset
351
4194
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
352 if test "$MXE_NATIVE_BUILD" = no; then
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
353 if test "$ENABLE_WINDOWS_64" = yes; then
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
354 MXE_TARGET=x86_64-w64-mingw32
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
355 else
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
356 MXE_TARGET=i686-w64-mingw32
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
357 fi
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
358 fi
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
359 AC_SUBST(MXE_TARGET)
3dc897731d3b new option to enable ccache
John W. Eaton <jwe@octave.org>
parents: 4193
diff changeset
360
3429
6cf5d50556d4 * tools/set-mxe-env.sh.in: Rename from tools/set_mxe_env.sh.in.
John W. Eaton <jwe@octave.org>
parents: 3367
diff changeset
361 AC_CONFIG_FILES([Makefile tools/set-mxe-env.sh])
4124
5ae69991eaa1 installer: detect win64/win32 java depending on octave 32/64 (Bug #47606)
John Donoghue
parents: 4066
diff changeset
362 AC_CONFIG_FILES([tools/makeinst-script.sh], [chmod a+x tools/makeinst-script.sh])
3043
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
363
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
364 AC_OUTPUT
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
365
cbfe5d38ff2c use configure script to generate Makefile
John W. Eaton <jwe@octave.org>
parents:
diff changeset
366 ### End of configure.