comparison configure.in @ 328:c507af52515a

add readpst -a option
author Carl Byington <carl@five-ten-sg.com>
date Wed, 12 Jun 2013 19:45:44 -0700
parents 1e39dc490627
children 160cf301ad4d
comparison
equal deleted inserted replaced
327:e1b9f9aa5074 328:c507af52515a
1 AC_PREREQ(2.59) 1 AC_PREREQ(2.60)
2 AC_INIT(libpst,0.6.59,carl@five-ten-sg.com) 2 AC_INIT(libpst,0.6.60,carl@five-ten-sg.com)
3 AC_CONFIG_SRCDIR([src/libpst.c]) 3 AC_CONFIG_SRCDIR([src/libpst.c])
4 AC_CONFIG_HEADER([config.h]) 4 AC_CONFIG_HEADER([config.h])
5 AC_CONFIG_MACRO_DIR([m4])
5 AM_INIT_AUTOMAKE 6 AM_INIT_AUTOMAKE
6 AC_CANONICAL_HOST 7 AC_CANONICAL_HOST
8 AC_USE_SYSTEM_EXTENSIONS
7 9
8 # 10 #
9 # 1. Remember that version-info is current:revision:age, and age <= current. 11 # 1. Remember that version-info is current:revision:age, and age <= current.
10 # 2. If the source code has changed at all since the last public release, 12 # 2. If the source code has changed at all since the last public release,
11 # then increment revision (`c:r:a' becomes `c:r+1:a'). 13 # then increment revision (`c:r:a' becomes `c:r+1:a').
17 # 5. If any interfaces have been removed or changed since the last public 19 # 5. If any interfaces have been removed or changed since the last public
18 # release, then set age to 0, since we are not backward compatible. 20 # release, then set age to 0, since we are not backward compatible.
19 # 6. libtool will build libpst.so.x.y.z where the SONAME is libpst.so.x 21 # 6. libtool will build libpst.so.x.y.z where the SONAME is libpst.so.x
20 # and x=current-age, y=age, z=revision 22 # and x=current-age, y=age, z=revision
21 23
22 libpst_version_info='5:8:1' 24 libpst_version_info='5:9:1'
23 AC_SUBST(LIBPST_VERSION_INFO, [$libpst_version_info]) 25 AC_SUBST(LIBPST_VERSION_INFO, [$libpst_version_info])
24 libpst_so_major='4' 26 libpst_so_major='4'
25 AC_SUBST(LIBPST_SO_MAJOR, [$libpst_so_major]) 27 AC_SUBST(LIBPST_SO_MAJOR, [$libpst_so_major])
26 28
27 # libpst 29 # libpst
42 # 0.6.55 libpst.so.4 libpst.so.4.1.5 44 # 0.6.55 libpst.so.4 libpst.so.4.1.5
43 # 0.6.56 libpst.so.4 libpst.so.4.1.6 45 # 0.6.56 libpst.so.4 libpst.so.4.1.6
44 # 0.6.57 libpst.so.4 libpst.so.4.1.6 46 # 0.6.57 libpst.so.4 libpst.so.4.1.6
45 # 0.6.58 libpst.so.4 libpst.so.4.1.7 47 # 0.6.58 libpst.so.4 libpst.so.4.1.7
46 # 0.6.59 libpst.so.4 libpst.so.4.1.8 48 # 0.6.59 libpst.so.4 libpst.so.4.1.8
49 # 0.6.60 libpst.so.4 libpst.so.4.1.9
47 50
48 51
49 52
50 # Check for solaris 53 # Check for solaris
51 AC_MSG_CHECKING([for Solaris]) 54 AC_MSG_CHECKING([for Solaris])
145 AC_PROG_CPP 148 AC_PROG_CPP
146 AC_PROG_INSTALL 149 AC_PROG_INSTALL
147 AC_PROG_LN_S 150 AC_PROG_LN_S
148 AC_PROG_LIBTOOL 151 AC_PROG_LIBTOOL
149 AC_PROG_MAKE_SET 152 AC_PROG_MAKE_SET
150 AC_PROG_RANLIB
151 153
152 154
153 # make sure we get large file support 155 # make sure we get large file support
154 AC_SYS_LARGEFILE 156 AC_SYS_LARGEFILE
155 AC_CHECK_SIZEOF(off_t) 157 AC_CHECK_SIZEOF(off_t)