-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac
31 lines (31 loc) · 1.26 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
AC_INIT([lazylpsolverlibs], [1.2.0], [[email protected]], [lazylpsolverlibs],
[https://code.google.com/p/lazylpsolverlibs/])
GENERIC_LIBRARY_VERSION="1:2:0"
# | | |
# +------+ | +---+
# | | |
# current:revision:age
# | | |
# | | +- increment if interfaces have
# | | been added; set to zero if
# | | interfaces have been removed or
# | | changed
# | +- increment if source code has changed;
# | set to zero if current is incremented
# +- increment if interfaces have been added, removed
# or changed
AC_SUBST(GENERIC_LIBRARY_VERSION)
DATE=`date +"%B %e, %Y"`
AC_SUBST(DATE)
AC_PREREQ([2.59])
AC_PROG_CC
LT_INIT
AM_INIT_AUTOMAKE([1.10 no-define])
PKG_CHECK_MODULES([GMODULE], [gmodule-2.0 >= 0])
AC_CONFIG_FILES([Makefile \
lib/pkgconfig/lazycplex.pc \
lib/pkgconfig/lazyxprs.pc \
lib/pkgconfig/lazygurobi.pc \
lib/pkgconfig/lazyglpk.pc \
share/man/man1/lazylpsolverlibs-config.1])
AC_OUTPUT