]> www.ginac.de Git - ginac.git/blob - configure.ac
[build] Move archive version info into version.h (for non autotools build).
[ginac.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 dnl GiNaC version number
4 m4_define([ginac_major_version], GINAC_GET_VERSION([MAJOR]))
5 m4_define([ginac_minor_version], GINAC_GET_VERSION([MINOR]))
6 m4_define([ginac_micro_version], GINAC_GET_VERSION([MICRO]))
7 m4_define([ginac_version], [ginac_major_version.ginac_minor_version.ginac_micro_version])
8 m4_define([ginac_release], [ginac_major_version.ginac_minor_version])
9
10 dnl GiNaC library version information. It has very little to do with GiNaC
11 dnl version number. In particular, library version is OS dependent. 
12 dnl
13 dnl When making releases, do
14 dnl 1. Increment ginac_lt_revision
15 dnl 2. If any interfaces have been added, removed, or changed since the last
16 dnl    release, increment ginac_lt_current and set ginac_lt_revision to 0.
17 dnl 3. If any interfaces have been added since the last release, increment
18 dnl    ginac_lt_age.
19 dnl 4. If any interfaces have been removed since the last release, set 
20 dnl    ginac_lt_age to 0.
21 dnl
22 dnl Please note: the libtool naming scheme cannot guarantee that on all
23 dnl systems, the numbering is consecutive. It only guarantees that it is
24 dnl increasing. This doesn't matter, though: there is not incurred cost
25 dnl for numbers that are omitted, except for shrinking the available space
26 dnl of leftover numbers. Not something we need to worry about yet. ;-)
27 m4_define([ginac_lt_current], [3])
28 m4_define([ginac_lt_revision], [0])
29 m4_define([ginac_lt_age], [1])
30
31 AC_INIT([GiNaC], ginac_version, [ginac-list@ginac.de], [ginac], [http://www.ginac.de/])
32 AC_PREREQ(2.59)
33 AC_CONFIG_SRCDIR(ginac/basic.cpp)
34 AC_CONFIG_AUX_DIR([config])
35 AC_CONFIG_HEADERS([config/config.h])
36 AC_CONFIG_MACRO_DIR([m4])
37 dnl This defines PACKAGE and VERSION.
38 AM_INIT_AUTOMAKE([gnu 1.8 dist-bzip2])
39
40 dnl libtool versioning
41 LT_VERSION_INFO="ginac_lt_current:ginac_lt_revision:ginac_lt_age"
42 AC_SUBST(LT_VERSION_INFO)
43
44 dnl Check for the compiler and all the utilities needed for the build.
45 AC_PROG_CXX
46 AC_PROG_CXXCPP
47 AC_PROG_INSTALL
48 AM_PROG_LIBTOOL
49 AC_PROG_LEX
50 AC_PROG_YACC
51 AC_PATH_PROG(YACCEXE, $YACC, "")
52 AS_IF([test "x$LEX" = "x:" -a ! -f $srcdir/ginsh/ginsh_lexer.cc],
53       [GINAC_WARNING([ginsh will not compile, because lex/flex is missing])])
54 AS_IF([test -z "$YACCEXE" -a ! -f $srcdir/ginsh/ginsh_parser.h],
55       [GINAC_WARNING([ginsh will not compile, because yacc/bison is missing])])
56
57 dnl Switch to C++ language mode for the following libraries and headers.
58 AC_LANG([C++])
59
60 dnl Make sure all the necessary standard headers are installed on the system.
61 GINAC_STD_CXX_HEADERS
62
63 dnl We need to have CLN installed.
64 PKG_CHECK_MODULES(CLN, cln >= 1.2.2)
65 AC_LIB_LINKFLAGS_FROM_LIBS([CLN_RPATH], [$CLN_LIBS])
66 LIBS="$LIBS $CLN_LIBS $CLN_RPATH"
67 CPPFLAGS="$CPPFLAGS $CLN_CFLAGS"
68 dnl Include proper rpath into pkg-config meta data, so
69 dnl g++ `pkg-config --cflags --libs ginac`
70 dnl actually works
71 GINACLIB_LIBS='-L${libdir} -lginac'
72 AC_LIB_LINKFLAGS_FROM_LIBS([GINACLIB_RPATH], [$GINACLIB_LIBS])
73
74 dnl Check for data types which are needed by the hash function 
75 dnl (golden_ratio_hash).
76 AC_CHECK_TYPE(long long)
77
78 dnl Check for stuff needed for building the GiNaC interactive shell (ginsh).
79 AC_CHECK_HEADERS(unistd.h)
80 GINAC_HAVE_RUSAGE
81 GINAC_READLINE
82 dnl Python is necessary for building function.{cpp,h}
83 AC_PATH_PROG(PYTHON, python, "")
84 AS_IF([test -z "$PYTHON" -a ! -f "$srcdir/ginac/function.cpp"],
85       [AC_MSG_ERROR([GiNaC will not compile because Python is missing])])
86
87 dnl Check for dl library (needed for GiNaC::compile).
88 GINAC_EXCOMPILER
89 AM_CONDITIONAL(CONFIG_EXCOMPILER, [test "x${CONFIG_EXCOMPILER}" = "xyes"])
90
91 dnl Check for utilities needed by the different kinds of documentation.
92 dnl Documentation needs only be built when extending it, so never mind if it
93 dnl cannot find those helpers:
94 AC_PATH_PROG(DOXYGEN, doxygen, "")
95 AM_CONDITIONAL(CONFIG_DOXYGEN, [test ! -z "$DOXYGEN"])
96 AC_PATH_PROG(LATEX, latex, "")
97 AC_PATH_PROG(PDFLATEX, pdflatex, "")
98 AC_PATH_PROG(MAKEINDEX, makeindex, "")
99 AC_PATH_PROG(MAKEINFO, makeinfo, "")
100 AC_PATH_PROG(DVIPS, dvips, "")
101 AM_CONDITIONAL(CONFIG_TEX, [test ! \( -z "$LATEX" -o -z $"PDFLATEX" -o -z "$MAKEINDEX" -o -z "$DVIPS" \)])
102 AC_PATH_PROG(FIG2DEV, fig2dev, "")
103 AM_CONDITIONAL(CONFIG_FIG2DEV, [test ! -z "$FIG2DEV"])
104 AS_IF([test -z "$FIG2DEV" -o -z "$MAKEINFO"],
105           [GINAC_WARNING([Documentation may not build, because fig2dev/texinfo is missing.])])
106 AS_IF([test -z "$DOXYGEN"],
107           [GINAC_WARNING([Reference manual will not build, because doxygen is missing.])])
108 AS_IF([test -z "$LATEX" -o -z "$PDFLATEX" -o -z "$DVIPS"],
109           [GINAC_WARNING([Some documentation formats may not build, because latex/pdflatex/dvips is missing.])])
110            
111 dnl Output makefiles etc.
112 AC_CONFIG_FILES([
113 Makefile
114 GiNaC.spec
115 ginac.pc
116 ginac/Makefile
117 check/Makefile
118 ginsh/Makefile
119 ginsh/ginsh.1
120 tools/Makefile
121 tools/viewgar.1
122 tools/ginac-excompiler
123 doc/Makefile
124 doc/examples/Makefile
125 doc/tutorial/Makefile
126 doc/reference/Makefile
127 doc/reference/DoxyfileHTML
128 doc/reference/DoxyfileTEX
129 doc/reference/DoxyfilePDF
130 doc/reference/Doxyfooter
131 ])
132 AC_OUTPUT
133
134 dnl Display a final warning if there has been a GINAC_ERROR or a GINAC_WARNING
135 GINAC_CHECK_ERRORS