1 | # Copyright (C) 2006 International Business Machines. |
---|
2 | # All Rights Reserved. |
---|
3 | # This file is distributed under the Eclipse Public License. |
---|
4 | |
---|
5 | ## $Id: configure.ac 1688 2011-03-01 14:58:10Z stefan $ |
---|
6 | |
---|
7 | # Author: Andreas Waechter IBM 2006-04-13 |
---|
8 | |
---|
9 | ############################################################################# |
---|
10 | # Names and other basic things # |
---|
11 | ############################################################################# |
---|
12 | |
---|
13 | AC_PREREQ(2.59) |
---|
14 | |
---|
15 | AC_INIT([Clp],[trunk],[clp@list.coin-or.org]) |
---|
16 | |
---|
17 | AC_COPYRIGHT([ |
---|
18 | Copyright 2006 International Business Machines and others. |
---|
19 | All Rights Reserved. |
---|
20 | This file is part of the open source package Coin which is distributed |
---|
21 | under the Eclipse Public License.]) |
---|
22 | |
---|
23 | # List one file in the package so that the configure script can test |
---|
24 | # whether the package is actually there |
---|
25 | AC_CONFIG_SRCDIR(src/ClpSimplex.cpp) |
---|
26 | |
---|
27 | # Where should everything be installed by default? Here, we want it |
---|
28 | # to be installed directly in 'bin', 'lib', 'include' subdirectories |
---|
29 | # of the directory where configure is run. The default would be |
---|
30 | # /usr/local. |
---|
31 | AC_PREFIX_DEFAULT([`pwd`]) |
---|
32 | |
---|
33 | ############################################################################# |
---|
34 | # Standard build tool stuff # |
---|
35 | ############################################################################# |
---|
36 | |
---|
37 | # Get the system type |
---|
38 | AC_CANONICAL_BUILD |
---|
39 | |
---|
40 | # If this project depends on external projects, the Externals file in |
---|
41 | # the source root directory contains definition of where to find those |
---|
42 | # externals. The following macro ensures that those externals are |
---|
43 | # retrieved by svn if they are not there yet. |
---|
44 | AC_COIN_PROJECTDIR_INIT(Clp) |
---|
45 | |
---|
46 | # Check if user wants to produce debugging code |
---|
47 | AC_COIN_DEBUG_COMPILE(Clp) |
---|
48 | |
---|
49 | # Get the name of the C++ compiler and appropriate compiler options |
---|
50 | AC_COIN_PROG_CXX |
---|
51 | |
---|
52 | # Initialize automake and libtool |
---|
53 | AC_COIN_INIT_AUTO_TOOLS |
---|
54 | |
---|
55 | if test "$GXX" = "yes" ; then |
---|
56 | case "$CXX" in |
---|
57 | icpc* | */icpc* | icc ) |
---|
58 | ;; |
---|
59 | *) |
---|
60 | CXXFLAGS="$CXXFLAGS -Wno-long-long" |
---|
61 | ;; |
---|
62 | esac |
---|
63 | fi |
---|
64 | |
---|
65 | ############################################################################# |
---|
66 | # COIN-OR components # |
---|
67 | ############################################################################# |
---|
68 | |
---|
69 | AC_COIN_CHECK_PACKAGE(CoinUtils, [coinutils], [ClpLib]) |
---|
70 | if test $coin_has_coinutils != yes ; then |
---|
71 | AC_MSG_ERROR([Required package CoinUtils not available.]) |
---|
72 | fi |
---|
73 | AC_COIN_CHECK_PACKAGE(Osi, [osi], [OsiClpLib]) |
---|
74 | AC_COIN_CHECK_PACKAGE(OsiTests, [osi-unittests]) |
---|
75 | AC_COIN_CHECK_PACKAGE(Sample, [coindatasample]) |
---|
76 | AC_COIN_CHECK_PACKAGE(Netlib, [coindatanetlib]) |
---|
77 | |
---|
78 | ############################################################################# |
---|
79 | # Third party linear solvers # |
---|
80 | ############################################################################# |
---|
81 | |
---|
82 | # WSMP |
---|
83 | AC_ARG_WITH([wsmp], |
---|
84 | AC_HELP_STRING([--with-wsmp], |
---|
85 | [specify WSMP library]), |
---|
86 | [use_wsmp=$withval], [use_wsmp=no]) |
---|
87 | |
---|
88 | if test "$use_wsmp" != "no"; then |
---|
89 | CLPLIB_LIBS="$use_wsmp $CLPLIB_LIBS" |
---|
90 | CLPLIB_PCLIBS="$use_wsmp $CLPLIB_PCLIBS" |
---|
91 | |
---|
92 | defval= |
---|
93 | AC_MSG_CHECKING([whether user-supplied WSMP library \"$use_wsmp\" works (symbol wssmp_)]) |
---|
94 | AC_TRY_LINK([],[wssmp_()], |
---|
95 | [AC_MSG_RESULT(yes) |
---|
96 | defval=2], |
---|
97 | [AC_MSG_RESULT(no)]) |
---|
98 | if test "$defval" = ""; then |
---|
99 | AC_MSG_CHECKING([whether user-supplied WSMP library \"$use_wsmp\" works (symbol wssmp)]) |
---|
100 | AC_TRY_LINK([],[wssmp()], |
---|
101 | [AC_MSG_RESULT(yes) |
---|
102 | defval=3], |
---|
103 | [AC_MSG_RESULT(no)]) |
---|
104 | fi |
---|
105 | if test "x$defval" = "x"; then |
---|
106 | AC_MSG_ERROR([WSMP library $use_wsmp does not seem to work]) |
---|
107 | fi |
---|
108 | |
---|
109 | AC_DEFINE_UNQUOTED([WSSMP_BARRIER], [$defval], |
---|
110 | [Define to 2 if wssmp_ is available, and to 3 if wssmp is available]) |
---|
111 | fi |
---|
112 | |
---|
113 | ############################################################################# |
---|
114 | # Other dependencies # |
---|
115 | ############################################################################# |
---|
116 | |
---|
117 | AC_COIN_CHECK_GNU_READLINE(ClpLib) |
---|
118 | |
---|
119 | ############################################################################## |
---|
120 | # VPATH links for example input files # |
---|
121 | ############################################################################## |
---|
122 | |
---|
123 | # In case this is a VPATH configuration we need to make sure that the |
---|
124 | # input files for the examples are available in the VPATH directory. |
---|
125 | |
---|
126 | AC_COIN_VPATH_LINK(examples/hello.mps) |
---|
127 | AC_COIN_VPATH_LINK(examples/input.130) |
---|
128 | |
---|
129 | ############################################################################# |
---|
130 | # Check for doxygen # |
---|
131 | ############################################################################# |
---|
132 | |
---|
133 | AC_COIN_DOXYGEN(CoinUtils Osi) |
---|
134 | |
---|
135 | ############################################################################## |
---|
136 | # Finishing up by writing all the output # |
---|
137 | ############################################################################## |
---|
138 | |
---|
139 | # Here list all the files that configure should create (except for the |
---|
140 | # configuration header file) |
---|
141 | AC_CONFIG_FILES([Makefile |
---|
142 | examples/Makefile |
---|
143 | src/Makefile |
---|
144 | src/OsiClp/Makefile |
---|
145 | test/Makefile |
---|
146 | clp.pc |
---|
147 | clp-uninstalled.pc]) |
---|
148 | |
---|
149 | if test $coin_has_osi = yes ; then |
---|
150 | AC_CONFIG_FILES([osi-clp.pc:src/OsiClp/osi-clp.pc.in |
---|
151 | osi-clp-uninstalled.pc:src/OsiClp/osi-clp-uninstalled.pc.in]) |
---|
152 | fi |
---|
153 | |
---|
154 | AC_CONFIG_FILES([doxydoc/doxygen.conf]) |
---|
155 | |
---|
156 | # Here put the location and name of the configuration header file |
---|
157 | AC_CONFIG_HEADER([inc/config_clp.h]) |
---|
158 | |
---|
159 | # Finally, we let configure write all the output... |
---|
160 | AC_COIN_FINALIZE |
---|