forked from coin-or-tools/ThirdParty-Glpk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
43 lines (31 loc) · 1.54 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
# Copyright (C) 2007-2020 COIN-OR
# All Rights Reserved.
# This file is distributed under the Eclipse Public License.
#############################################################################
# Names and other basic things #
#############################################################################
AC_INIT([ThirdPartyGlpk],[devel],
[https://github.com/coin-or-tools/ThirdParty-Glpk/issues/new],[thirdpartyglpk],
[https://github.com/coin-or-tools/ThirdParty-Glpk/])
AC_COPYRIGHT([
Copyright 2007-2020 COIN-OR
All Rights Reserved.
This file is part of the open source package ThirdParty-Glpk which is
distributed under the Eclipse Public License.])
# List one file in the package so that the configure script can test whether
# the package is actually there.
AC_CONFIG_SRCDIR(glpk/src/glpk.h)
# Do some generic initialization work.
AC_COIN_INITIALIZE
#############################################################################
# Standard build tool stuff #
#############################################################################
# Make it appear as if --includedir was part of the command line, so that
# glpk's install will put glpk.h in the proper place. Suppress reentrancy.
ac_configure_args="$ac_configure_args --includedir=\\\${prefix}/include/coin-or/glpk"
ac_configure_args="$ac_configure_args --enable-reentrant=no"
# Invoke glpk's native configuration
AC_CONFIG_SUBDIRS(glpk)
# Finish up
AC_CONFIG_FILES([Makefile coinglpk.pc])
AC_COIN_FINALIZE