summaryrefslogtreecommitdiff
path: root/hsakmt/hsakmt-version.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'hsakmt/hsakmt-version.h.in')
-rw-r--r--hsakmt/hsakmt-version.h.in50
1 files changed, 50 insertions, 0 deletions
diff --git a/hsakmt/hsakmt-version.h.in b/hsakmt/hsakmt-version.h.in
new file mode 100644
index 0000000..fa9336d
--- /dev/null
+++ b/hsakmt/hsakmt-version.h.in
@@ -0,0 +1,50 @@
+/*
+ * Copyright © 2008 Red Hat, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use, copy,
+ * modify, merge, publish, distribute, sublicense, and/or sell copies
+ * of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ * Author: Carl D. Worth <cworth@cworth.org>
+ */
+
+#ifndef HSAKMT_VERSION_H__
+#define HSAKMT_VERSION_H__
+
+#ifndef LIBHSAKMT_H_INCLUDED
+# error hsakmt-version.h should only be included by libhsakmt.h
+#endif
+
+#define LIBHSAKMT_VERSION_MAJOR @HSAKMT_VERSION_MAJOR@
+#define LIBHSAKMT_VERSION_MINOR @HSAKMT_VERSION_MINOR@
+#define LIBHSAKMT_VERSION_MICRO @HSAKMT_VERSION_MICRO@
+
+#define LIBHSAKMT_VERSION_STRING "@HSAKMT_VERSION_MAJOR@.@HSAKMT_VERSION_MINOR@.@HSAKMT_VERSION_MICRO@"
+
+#define LIBHSAKMT_VERSION_ENCODE(major, minor, micro) ( \
+ ((major) * 10000) \
+ + ((minor) * 100) \
+ + ((micro) * 1))
+
+#define LIBHSAKMT_VERSION HSAKMT_VERSION_ENCODE( \
+ LIBHSAKMT_VERSION_MAJOR, \
+ LIBHSAKMT_VERSION_MINOR, \
+ LIBHSAKMT_VERSION_MICRO)
+
+#endif /* HSAKMT_VERSION_H__ */