From 7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de Mon Sep 17 00:00:00 2001 From: bigbiff Date: Thu, 1 Jan 2015 19:44:14 -0500 Subject: Update blkid to 2.25.0 Break libblkid into 4 libraries: libblkid, libuuid, libutil-linux and libfdisk. This should help in later patch updates. Change-Id: I680d9a7feb031e5c29a603e9c58aff4b65826262 --- libblkid/version.c | 63 ------------------------------------------------------ 1 file changed, 63 deletions(-) delete mode 100644 libblkid/version.c (limited to 'libblkid/version.c') diff --git a/libblkid/version.c b/libblkid/version.c deleted file mode 100644 index 9659b4c78..000000000 --- a/libblkid/version.c +++ /dev/null @@ -1,63 +0,0 @@ -/* - * version.c --- Return the version of the blkid library - * - * Copyright (C) 2004 Theodore Ts'o. - * - * %Begin-Header% - * This file may be redistributed under the terms of the GNU Lesser General - * Public License. - * %End-Header% - */ - -#ifdef HAVE_UNISTD_H -#include -#endif -#include -#include -#include - -#include "blkid.h" -#include "config.h" - -/* LIBBLKID_* defined in the global config.h */ -static const char *lib_version = LIBBLKID_VERSION; /* release version */ -static const char *lib_date = LIBBLKID_DATE; - -/** - * blkid_parse_version_string: - * @ver_string: version string (e.g. "2.16.0") - * - * Returns: release version code. - */ -int blkid_parse_version_string(const char *ver_string) -{ - const char *cp; - int version = 0; - - for (cp = ver_string; *cp; cp++) { - if (*cp == '.') - continue; - if (!isdigit(*cp)) - break; - version = (version * 10) + (*cp - '0'); - } - return version; -} - -/** - * blkid_get_library_version: - * @ver_string: returns relese version (!= SONAME version) - * @date_string: returns date - * - * Returns: release version code. - */ -int blkid_get_library_version(const char **ver_string, - const char **date_string) -{ - if (ver_string) - *ver_string = lib_version; - if (date_string) - *date_string = lib_date; - - return blkid_parse_version_string(lib_version); -} -- cgit v1.2.3