]> git.proxmox.com Git - mirror_zfs.git/blob - config/zfs-meta.m4
ztest: scrub ddt repair
[mirror_zfs.git] / config / zfs-meta.m4
1 dnl #
2 dnl # DESCRIPTION:
3 dnl # Read meta data from the META file. When building from a git repository
4 dnl # the ZFS_META_RELEASE field will be overwritten if there is an annotated
5 dnl # tag matching the form ZFS_META_NAME-ZFS_META_VERSION-*. This allows
6 dnl # for working builds to be uniquely identified using the git commit hash.
7 dnl #
8 dnl # The META file format is as follows:
9 dnl # ^[ ]*KEY:[ \t]+VALUE$
10 dnl #
11 dnl # In other words:
12 dnl # - KEY is separated from VALUE by a colon and one or more spaces/tabs.
13 dnl # - KEY and VALUE are case sensitive.
14 dnl # - Leading spaces are ignored.
15 dnl # - First match wins for duplicate keys.
16 dnl #
17 dnl # A line can be commented out by preceding it with a '#' (or technically
18 dnl # any non-space character since that will prevent the regex from
19 dnl # matching).
20 dnl #
21 dnl # WARNING:
22 dnl # Placing a colon followed by a space or tab (ie, ":[ \t]+") within the
23 dnl # VALUE will prematurely terminate the string since that sequence is
24 dnl # used as the awk field separator.
25 dnl #
26 dnl # KEYS:
27 dnl # The following META keys are recognized:
28 dnl # Name, Version, Release, Date, Author, LT_Current, LT_Revision, LT_Age
29 dnl #
30 dnl # Written by Chris Dunlap <cdunlap@llnl.gov>.
31 dnl # Modified by Brian Behlendorf <behlendorf1@llnl.gov>.
32 dnl #
33 AC_DEFUN([ZFS_AC_META], [
34
35 AH_BOTTOM([
36 #undef PACKAGE
37 #undef PACKAGE_BUGREPORT
38 #undef PACKAGE_NAME
39 #undef PACKAGE_STRING
40 #undef PACKAGE_TARNAME
41 #undef PACKAGE_VERSION
42 #undef STDC_HEADERS
43 #undef VERSION])
44
45 AC_PROG_AWK
46 AC_MSG_CHECKING([metadata])
47
48 META="$srcdir/META"
49 _zfs_ac_meta_type="none"
50 if test -f "$META"; then
51 _zfs_ac_meta_type="META file"
52
53 ZFS_META_NAME=_ZFS_AC_META_GETVAL([(Name|Project|Package)]);
54 if test -n "$ZFS_META_NAME"; then
55 AC_DEFINE_UNQUOTED([ZFS_META_NAME], ["$ZFS_META_NAME"],
56 [Define the project name.]
57 )
58 AC_SUBST([ZFS_META_NAME])
59 fi
60
61 ZFS_META_VERSION=_ZFS_AC_META_GETVAL([Version]);
62 if test -n "$ZFS_META_VERSION"; then
63 AC_DEFINE_UNQUOTED([ZFS_META_VERSION],
64 ["$ZFS_META_VERSION"],
65 [Define the project version.])
66 AC_DEFINE_UNQUOTED([SPL_META_VERSION],
67 [ZFS_META_VERSION],
68 [Defined for legacy compatibility.])
69 AC_SUBST([ZFS_META_VERSION])
70 fi
71
72 ZFS_META_RELEASE=_ZFS_AC_META_GETVAL([Release]);
73 if test ! -f ".nogitrelease" && git rev-parse --git-dir > /dev/null 2>&1; then
74 _match="${ZFS_META_NAME}-${ZFS_META_VERSION}"
75 _alias=$(git describe --match=${_match} 2>/dev/null)
76 _release=$(echo ${_alias}|cut -f3- -d'-'|sed 's/-/_/g')
77 if test -n "${_release}"; then
78 ZFS_META_RELEASE=${_release}
79 _zfs_ac_meta_type="git describe"
80 else
81 _match="${ZFS_META_NAME}-${ZFS_META_VERSION}-${ZFS_META_RELEASE}"
82 _alias=$(git describe --match=${_match} 2>/dev/null)
83 _release=$(echo ${_alias}|cut -f3- -d'-'|sed 's/-/_/g')
84 if test -n "${_release}"; then
85 ZFS_META_RELEASE=${_release}
86 _zfs_ac_meta_type="git describe"
87 fi
88 fi
89 fi
90
91 if test -n "$ZFS_META_RELEASE"; then
92 AC_DEFINE_UNQUOTED([ZFS_META_RELEASE],
93 ["$ZFS_META_RELEASE"],
94 [Define the project release.])
95 AC_DEFINE_UNQUOTED([SPL_META_RELEASE],
96 [ZFS_META_RELEASE],
97 [Defined for legacy compatibility.])
98 AC_SUBST([ZFS_META_RELEASE])
99
100 RELEASE="$ZFS_META_RELEASE"
101 AC_SUBST([RELEASE])
102 fi
103
104 ZFS_META_LICENSE=_ZFS_AC_META_GETVAL([License]);
105 if test -n "$ZFS_META_LICENSE"; then
106 AC_DEFINE_UNQUOTED([ZFS_META_LICENSE], ["$ZFS_META_LICENSE"],
107 [Define the project license.]
108 )
109 AC_SUBST([ZFS_META_LICENSE])
110 fi
111
112 if test -n "$ZFS_META_NAME" -a -n "$ZFS_META_VERSION"; then
113 ZFS_META_ALIAS="$ZFS_META_NAME-$ZFS_META_VERSION"
114 test -n "$ZFS_META_RELEASE" &&
115 ZFS_META_ALIAS="$ZFS_META_ALIAS-$ZFS_META_RELEASE"
116 AC_DEFINE_UNQUOTED([ZFS_META_ALIAS],
117 ["$ZFS_META_ALIAS"],
118 [Define the project alias string.])
119 AC_DEFINE_UNQUOTED([SPL_META_ALIAS],
120 [ZFS_META_ALIAS],
121 [Defined for legacy compatibility.])
122 AC_SUBST([ZFS_META_ALIAS])
123 fi
124
125 ZFS_META_DATA=_ZFS_AC_META_GETVAL([Date]);
126 if test -n "$ZFS_META_DATA"; then
127 AC_DEFINE_UNQUOTED([ZFS_META_DATA], ["$ZFS_META_DATA"],
128 [Define the project release date.]
129 )
130 AC_SUBST([ZFS_META_DATA])
131 fi
132
133 ZFS_META_AUTHOR=_ZFS_AC_META_GETVAL([Author]);
134 if test -n "$ZFS_META_AUTHOR"; then
135 AC_DEFINE_UNQUOTED([ZFS_META_AUTHOR], ["$ZFS_META_AUTHOR"],
136 [Define the project author.]
137 )
138 AC_SUBST([ZFS_META_AUTHOR])
139 fi
140
141 m4_pattern_allow([^LT_(CURRENT|REVISION|AGE)$])
142 ZFS_META_LT_CURRENT=_ZFS_AC_META_GETVAL([LT_Current]);
143 ZFS_META_LT_REVISION=_ZFS_AC_META_GETVAL([LT_Revision]);
144 ZFS_META_LT_AGE=_ZFS_AC_META_GETVAL([LT_Age]);
145 if test -n "$ZFS_META_LT_CURRENT" \
146 -o -n "$ZFS_META_LT_REVISION" \
147 -o -n "$ZFS_META_LT_AGE"; then
148 test -n "$ZFS_META_LT_CURRENT" || ZFS_META_LT_CURRENT="0"
149 test -n "$ZFS_META_LT_REVISION" || ZFS_META_LT_REVISION="0"
150 test -n "$ZFS_META_LT_AGE" || ZFS_META_LT_AGE="0"
151 AC_DEFINE_UNQUOTED([ZFS_META_LT_CURRENT],
152 ["$ZFS_META_LT_CURRENT"],
153 [Define the libtool library 'current'
154 version information.]
155 )
156 AC_DEFINE_UNQUOTED([ZFS_META_LT_REVISION],
157 ["$ZFS_META_LT_REVISION"],
158 [Define the libtool library 'revision'
159 version information.]
160 )
161 AC_DEFINE_UNQUOTED([ZFS_META_LT_AGE], ["$ZFS_META_LT_AGE"],
162 [Define the libtool library 'age'
163 version information.]
164 )
165 AC_SUBST([ZFS_META_LT_CURRENT])
166 AC_SUBST([ZFS_META_LT_REVISION])
167 AC_SUBST([ZFS_META_LT_AGE])
168 fi
169 fi
170
171 AC_MSG_RESULT([$_zfs_ac_meta_type])
172 ]
173 )
174
175 dnl # _ZFS_AC_META_GETVAL (KEY_NAME_OR_REGEX)
176 dnl #
177 dnl # Returns the META VALUE associated with the given KEY_NAME_OR_REGEX expr.
178 dnl #
179 dnl # Despite their resemblance to line noise,
180 dnl # the "@<:@" and "@:>@" constructs are quadrigraphs for "[" and "]".
181 dnl # <www.gnu.org/software/autoconf/manual/autoconf.html#Quadrigraphs>
182 dnl #
183 dnl # The "$[]1" and "$[]2" constructs prevent M4 parameter expansion
184 dnl # so a literal $1 and $2 will be passed to the resulting awk script,
185 dnl # whereas the "$1" will undergo M4 parameter expansion for the META key.
186 dnl #
187 AC_DEFUN([_ZFS_AC_META_GETVAL],
188 [`$AWK -F ':@<:@ \t@:>@+' '$[]1 ~ /^ *$1$/ { print $[]2; exit }' $META`]dnl
189 )