-
Notifications
You must be signed in to change notification settings - Fork 3
/
configure.ac
75 lines (61 loc) · 1.79 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Copyright (C) 2006 Ben Martin <[email protected]>
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
AC_INIT([petardfs],
[0.0.2],
[Ben Martin [email protected]],
[petardfs])
AC_PREREQ([2.69])
PACKAGE=$PACKAGE_NAME
VERSION=$PACKAGE_VERSION
PETARDFS_VERSION=$VERSION
PETARDFS_FULLV=$VERSION
PETARDFS_MAJOR=`echo $VERSION | sed 's/^\([[0-9]]\)*\..*/\1/g'`
PETARDFS_MINOR=$(echo $VERSION | sed 's/^[[0-9]]*\.\([[0-9]]\)*\..*/\1/g')
PETARDFS_BETA=$(echo $VERSION | sed 's/^[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\).*/\1/g')
AC_SUBST(PETARDFS_MAJOR)
AC_SUBST(PETARDFS_MINOR)
AC_SUBST(PETARDFS_BETA)
AC_SUBST(PETARDFS_FULLV)
AC_SUBST(PETARDFS_VERSION)
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_MACRO_DIR([macros])
AC_CANONICAL_SYSTEM
AC_USE_SYSTEM_EXTENSIONS
LT_INIT([disable-static])
LT_PREREQ([2.4.2])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([1.14 tar-ustar dist-bzip2])
AC_PROG_CC
AC_PROG_CPP
AC_AIX
AC_ISC_POSIX
AC_MINIX
AC_HEADER_STDC
AC_PROG_CXX
AC_PROG_CXXCPP
AC_SYS_LARGEFILE
PKG_CHECK_MODULES([FUSE], [fuse >= 2.2] )
AC_SUBST([FUSE_CFLAGS])
AC_SUBST([FUSE_LIBS])
AM_FERRIS_XERCESC( 2.8.0 )
AM_FERRIS_FUSELAGE( 0.0.2 )
AM_FERRIS_POPT( 1.0.0 )
AC_OUTPUT([
Makefile
petardfs.spec
doc/Makefile
m4/Makefile
src/Makefile
testsuite/Makefile
testsuite/config/Makefile
testsuite/petardfs.test/Makefile
testsuite/sampledata/Makefile
testsuite/expected_output/Makefile
])