[ocl-icd] 01/09: Imported Upstream version 2.2.3
Vincent Danjean
vdanjean at debian.org
Mon May 18 19:36:32 UTC 2015
This is an automated email from the git hooks/post-receive script.
vdanjean pushed a commit to branch master
in repository ocl-icd.
commit 1ba15e7a88ea233163f399a134092322015a5feb
Author: Vincent Danjean <Vincent.Danjean at ens-lyon.org>
Date: Sun Oct 5 17:07:04 2014 +0200
Imported Upstream version 2.2.3
---
NEWS | 7 +++++++
configure | 20 ++++++++++----------
configure.ac | 2 +-
icd_generator.rb | 2 +-
tests/package.m4 | 4 ++--
tests/testsuite | 12 ++++++------
6 files changed, 27 insertions(+), 20 deletions(-)
diff --git a/NEWS b/NEWS
index 14e0e69..c4d9163 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,11 @@
+Version 2.2.3
+=============
+
+Vincent Danjean (2):
+ Fix numbers in unknown members of dispatch table to avoid to reuse one
+ Release 2.2.3
+
Version 2.2.2
=============
diff --git a/configure b/configure
index e177852..674c4d8 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for OpenCL ICD Loader 2.2.2.
+# Generated by GNU Autoconf 2.69 for OpenCL ICD Loader 2.2.3.
#
# Report bugs to <ocl-icd-devel at lists.forge.imag.fr>.
#
@@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='OpenCL ICD Loader'
PACKAGE_TARNAME='ocl-icd'
-PACKAGE_VERSION='2.2.2'
-PACKAGE_STRING='OpenCL ICD Loader 2.2.2'
+PACKAGE_VERSION='2.2.3'
+PACKAGE_STRING='OpenCL ICD Loader 2.2.3'
PACKAGE_BUGREPORT='ocl-icd-devel at lists.forge.imag.fr'
PACKAGE_URL=''
@@ -1330,7 +1330,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures OpenCL ICD Loader 2.2.2 to adapt to many kinds of systems.
+\`configure' configures OpenCL ICD Loader 2.2.3 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1400,7 +1400,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of OpenCL ICD Loader 2.2.2:";;
+ short | recursive ) echo "Configuration of OpenCL ICD Loader 2.2.3:";;
esac
cat <<\_ACEOF
@@ -1517,7 +1517,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-OpenCL ICD Loader configure 2.2.2
+OpenCL ICD Loader configure 2.2.3
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1940,7 +1940,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by OpenCL ICD Loader $as_me 2.2.2, which was
+It was created by OpenCL ICD Loader $as_me 2.2.3, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -2807,7 +2807,7 @@ fi
# Define the identity of the package.
PACKAGE='ocl-icd'
- VERSION='2.2.2'
+ VERSION='2.2.3'
cat >>confdefs.h <<_ACEOF
@@ -13553,7 +13553,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by OpenCL ICD Loader $as_me 2.2.2, which was
+This file was extended by OpenCL ICD Loader $as_me 2.2.3, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -13619,7 +13619,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-OpenCL ICD Loader config.status 2.2.2
+OpenCL ICD Loader config.status 2.2.3
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff --git a/configure.ac b/configure.ac
index be0c7d5..da655d2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.67])
-AC_INIT([OpenCL ICD Loader], [2.2.2], [ocl-icd-devel at lists.forge.imag.fr], [ocl-icd])
+AC_INIT([OpenCL ICD Loader], [2.2.3], [ocl-icd-devel at lists.forge.imag.fr], [ocl-icd])
AC_CONFIG_SRCDIR([ocl_icd_loader.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS([config.h])
diff --git a/icd_generator.rb b/icd_generator.rb
index b2f3513..687ce3e 100644
--- a/icd_generator.rb
+++ b/icd_generator.rb
@@ -326,7 +326,6 @@ struct _cl_icd_dispatch {
EOF
nb=0
$api_entries_array.each { |entry|
- nb=nb+1
version = entry.split("\n").
grep(/ CL_API_SUFFIX__(VERSION_[0-9_]+)[^0-9_]/).join('').
gsub(/.* CL_API_SUFFIX__(VERSION_[0-9_]+)[^0-9_].*$/, '\1')
@@ -343,6 +342,7 @@ EOF
ocl_icd_header += '#endif'+"\n"
end
ocl_icd_header += "\n"
+ nb=nb+1
}
ocl_icd_header += "};\n"
ocl_icd_header += "#endif\n\n"
diff --git a/tests/package.m4 b/tests/package.m4
index 85d97d7..e0a0f69 100644
--- a/tests/package.m4
+++ b/tests/package.m4
@@ -4,9 +4,9 @@ m4_define([AT_PACKAGE_NAME],
m4_define([AT_PACKAGE_TARNAME],
[ocl-icd])
m4_define([AT_PACKAGE_VERSION],
- [2.2.2])
+ [2.2.3])
m4_define([AT_PACKAGE_STRING],
- [OpenCL ICD Loader 2.2.2])
+ [OpenCL ICD Loader 2.2.3])
m4_define([AT_PACKAGE_BUGREPORT],
[ocl-icd-devel at lists.forge.imag.fr])
m4_define([AT_PACKAGE_URL],
diff --git a/tests/testsuite b/tests/testsuite
index c4d00c7..08409e9 100755
--- a/tests/testsuite
+++ b/tests/testsuite
@@ -920,7 +920,7 @@ fi
# List of tests.
if $at_list_p; then
cat <<_ATEOF || at_write_fail=1
-OpenCL ICD Loader 2.2.2 test suite test groups:
+OpenCL ICD Loader 2.2.3 test suite test groups:
NUM: FILE-NAME:LINE TEST-GROUP-NAME
KEYWORDS
@@ -961,7 +961,7 @@ _ATEOF
exit $at_write_fail
fi
if $at_version_p; then
- $as_echo "$as_me (OpenCL ICD Loader 2.2.2)" &&
+ $as_echo "$as_me (OpenCL ICD Loader 2.2.3)" &&
cat <<\_ATEOF || at_write_fail=1
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1147,11 +1147,11 @@ exec 5>>"$at_suite_log"
# Banners and logs.
$as_echo "## ----------------------------------- ##
-## OpenCL ICD Loader 2.2.2 test suite. ##
+## OpenCL ICD Loader 2.2.3 test suite. ##
## ----------------------------------- ##"
{
$as_echo "## ----------------------------------- ##
-## OpenCL ICD Loader 2.2.2 test suite. ##
+## OpenCL ICD Loader 2.2.3 test suite. ##
## ----------------------------------- ##"
echo
@@ -1995,7 +1995,7 @@ _ASBOX
$as_echo "Please send $at_msg and all information you think might help:
To: <ocl-icd-devel at lists.forge.imag.fr>
- Subject: [OpenCL ICD Loader 2.2.2] $as_me: $at_fail_list${at_fail_list:+ failed${at_xpass_list:+, }}$at_xpass_list${at_xpass_list:+ passed unexpectedly}
+ Subject: [OpenCL ICD Loader 2.2.3] $as_me: $at_fail_list${at_fail_list:+ failed${at_xpass_list:+, }}$at_xpass_list${at_xpass_list:+ passed unexpectedly}
You may investigate any problem if you feel able to do so, in which
case the test suite provides a good starting point. Its output may
@@ -2394,7 +2394,7 @@ at_status=$? at_failed=false
$at_check_filter
at_fn_diff_devnull "$at_stderr" || at_failed=:
echo >>"$at_stdout"; $as_echo "ocl_version: OpenCL 1.2
-version: 2.2.2
+version: 2.2.3
name: OpenCL ICD Loader
vendor: OCL Icd free software
" | \
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/ocl-icd.git
More information about the Pkg-opencl-commits
mailing list