File: parted.m4

package info (click to toggle)
parted 1.6.21-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,896 kB
  • ctags: 4,009
  • sloc: ansic: 28,674; sh: 22,443; makefile: 453; asm: 36; sed: 16
file content (110 lines) | stat: -rw-r--r-- 3,407 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# library paths for libparted
# written by Damien Genet <damien.genet@free.fr>

dnl Usage:
dnl PARTED_CHECK_LIBPARTED([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl where MINIMUM-VERSION must be >= 1.2.8 and != 1.3.0
dnl
dnl Example:
dnl PARTED_CHECK_LIBPARTED(1.2.8, , [AC_MSG_ERROR([*** libparted >= 1.2.8 not installed - please install first ***])])
dnl
dnl Adds the required libraries to $PARTED_LIBS and does an
dnl AC_SUBST(PARTED_LIBS)
dnl


AC_DEFUN([PARTED_CHECK_LIBPARTED],
[
AC_REQUIRE([AC_CANONICAL_HOST])

dnl save LIBS
saved_LIBS="$LIBS"

dnl Check for headers and library
AC_CHECK_HEADER(parted/parted.h, ,
		[AC_MSG_ERROR([<parted/parted.h> not found; install GNU/Parted])]
		$3)
AC_CHECK_LIB(uuid, uuid_generate, ,
	     [AC_MSG_ERROR([libuuid not found; install e2fsprogs available at http://web.mit.edu/tytso/www/linux/e2fsprogs.html])]
             $3)
AC_CHECK_LIB(parted,ped_device_read, ,
             [AC_MSG_ERROR([libparted not found; install GNU/Parted available at http://www.gnu.org/software/parted/parted.html])]
             $3)

case "$host_os" in
	gnu*)	# The Hurd requires some special system libraries
		# with very generic names, which is why we special
		# case these tests.

		AC_CHECK_LIB(shouldbeinlibc,lcm, ,
                	[AC_MSG_ERROR([libshouldbeinlibc not found; install the Hurd development libraries.])]
                $3)

		AC_CHECK_LIB(store,store_open, ,
                	[AC_MSG_ERROR([libstore not found; install the Hurd development libraries.])]
                $3)
		;;
	*)	;;
esac

AC_MSG_CHECKING(for libparted - version >= $1)

AC_TRY_LINK_FUNC(ped_get_version,,
                 AC_MSG_RESULT(failed)
                 AC_MSG_ERROR([*** libparted < 1.2.8 or == 1.3.0 can't execute test ***]))

dnl Get major, minor, and micro version from arg MINIMUM-VERSION
parted_config_major_version=`echo $1 | \
    sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
parted_config_minor_version=`echo $1 | \
    sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
parted_config_micro_version=`echo $1 | \
    sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`

dnl Compare MINIMUM-VERSION with libparted version
AC_TRY_RUN([
#include <stdio.h>
#include <stdlib.h>
#include <parted/parted.h>

int main ()
{
	int		major, minor, micro;
	const char	*version;    
	
	if ( !(version = ped_get_version ()) )
		exit(1);
	if (sscanf(version, "%d.%d.%d", &major, &minor, &micro) != 3) {
		printf("%s, bad version string\n", version);
		exit(1);
	}
	
	if ((major > $parted_config_major_version) ||
	   ((major == $parted_config_major_version) && (minor > $parted_config_minor_version)) ||
	   ((major == $parted_config_major_version) && (minor == $parted_config_minor_version) && (micro >= $parted_config_micro_version))) {
		return 0;
	} else {
		printf("\n*** An old version of libparted (%s) was found.\n",
		       version);
		printf("*** You need a version of libparted newer than %d.%d.%d.\n",
			$parted_config_major_version, 
			$parted_config_minor_version,
			$parted_config_micro_version);
		printf("*** You can get it at - ftp://ftp.gnu.org/gnu/parted/\n");
		return 1;
	}
}
], 
    AC_MSG_RESULT(yes),
    AC_MSG_RESULT(no) ; $3,
    [echo $ac_n "cross compiling; assumed OK... $ac_c"])

dnl restore orignial LIBS and set @PARTED_LIBS@
PARTED_LIBS="$LIBS"
LIBS="$saved_LIBS"
AC_SUBST(PARTED_LIBS)

dnl Execute ACTION-IF-FOUND
$2

])