-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfigure.ac
44 lines (38 loc) · 1.27 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
44
# The version number in the following line must be synchronized with
# the project version numbering in graphLib.h
AC_INIT([planarity],[4.0.0.0],[[email protected]])
AM_INIT_AUTOMAKE([subdir-objects] [foreign])
AC_CONFIG_MACRO_DIRS([m4])
AC_CONFIG_SRCDIR([c/])
# The version of the libtool library is of the form current:revision:age
#
# See http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
#
# The version number in the following line must be synchronized with
# the LibPlanarity version numbers in graphLib.h
#
# When doing a release, they should be updated like this:
# 1. If no interfaces changed, only implementations: just increment
# revision.
# 2. If interfaces were added, none removed: increment current, set
# revision to zero and increment age.
# 3. If interfaces were removed (breaks backward compatibility): increment
# current, and set both revision and age to zero.
LT_CURRENT=2
LT_REVISION=0
LT_AGE=0
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
PKG_INSTALLDIR
AC_PROG_CC
LT_INIT
AC_PROG_INSTALL
AC_CHECK_HEADERS([ctype.h stdio.h stdlib.h string.h time.h unistd.h])
AC_CONFIG_FILES([
Makefile
c/samples/Makefile
])
AC_CONFIG_FILES([test-samples.sh], [chmod +x test-samples.sh])
AC_CONFIG_FILES([libplanarity.pc])
AC_OUTPUT