File: configure.ac

package info (click to toggle)
pyparted 3.6-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,576 kB
  • sloc: sh: 10,205; ansic: 7,530; python: 3,923; makefile: 138
file content (59 lines) | stat: -rw-r--r-- 2,123 bytes parent folder | download
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
dnl configure.ac for pyparted
dnl
dnl Copyright (C) 2007, 2008, 2009  Red Hat, Inc.
dnl
dnl This copyrighted material is made available to anyone wishing to use,
dnl modify, copy, or redistribute it subject to the terms and conditions of
dnl the GNU General Public License v.2, or (at your option) any later version.
dnl This program is distributed in the hope that it will be useful, but WITHOUT
dnl ANY WARRANTY expressed or implied, including the implied warranties of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
dnl Public License for more details.  You should have received a copy of the
dnl GNU General Public License along with this program; if not, write to the
dnl Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
dnl 02110-1301, USA.  Any Red Hat trademarks that are incorporated in the
dnl source code or documentation are not subject to the GNU General Public
dnl License and may only be used or replicated with the express permission of
dnl Red Hat, Inc.
dnl
dnl Red Hat Author(s): David Cantrell <dcantrell@redhat.com>

m4_define(libparted_required_version, 2.3)
m4_define(python_required_version, 2.6)

AC_PREREQ(2.59)
AC_INIT([pyparted], [3.6], [pyparted-devel@redhat.com])
AM_INIT_AUTOMAKE([color-tests])
AC_CONFIG_SRCDIR([src/_pedmodule.c])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_FILES([Makefile
                 include/Makefile
                 include/docstrings/Makefile
                 include/typeobjects/Makefile
                 src/Makefile
                 src/parted/Makefile
                 tests/Makefile
                 tests/_ped/Makefile
                 tests/parted/Makefile])

AC_CONFIG_MACRO_DIR([m4])

AC_DEFINE_UNQUOTED([BUILD_DATE], ["`date +%m%d%Y`"], [Date of pyparted build])

AC_DISABLE_STATIC
AC_PROG_CPP
AC_PROG_CC

AC_HEADER_STDC

AC_PROG_LIBTOOL

dnl Check for Python
AM_PATH_PYTHON(python_required_version)
AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers or library)])

dnl Check for GNU parted
AM_CHECK_LIBPARTED(libparted_required_version)
AM_CHECK_PED_PARTITION_LEGACY_BOOT

AC_OUTPUT