]> git.pld-linux.org Git - packages/glslang.git/commitdiff
snapshot 20161029, for vulkan-sdk 1.0.32.0 auto/th/glslang-3.0.s20161029-1
authorJacek Konieczny <j.konieczny@eggsoft.pl>
Wed, 23 Nov 2016 12:29:28 +0000 (13:29 +0100)
committerJacek Konieczny <j.konieczny@eggsoft.pl>
Wed, 23 Nov 2016 12:29:28 +0000 (13:29 +0100)
glslang.spec
isinf.patch [deleted file]

index bbfc5b0f12af289566e973faf85d7410b52f3070..46173581bb6bd1d455bf44d9a00b12e64078e248 100644 (file)
@@ -2,19 +2,18 @@
 # Conditional build:
 %bcond_without tests           # build with tests
 #
-%define        snap    20160513
-%define        commit  4678ca9dacfec7a084dbc69bbe568bdad6889f1b
+%define        snap    20161029
+%define        commit  e19e68d4313617b8fe8bb68578d2de51507e603f
 
 Summary:       Khronos reference front-end for GLSL and ESSL
 Name:          glslang
 Version:       3.0.s%{snap}
-Release:       2
+Release:       1
 License:       BSD-like
 Group:         Applications/Graphics
 Source0:       https://github.com/KhronosGroup/glslang/archive/%{commit}/%{name}-%{version}.tar.gz
-# Source0-md5: 071445912a8d0f8a533046f0f3b35127
+# Source0-md5: 1d7dbf2fd8b2446258984eebccc34b65
 Patch0:                runtests.patch
-Patch1:                isinf.patch
 URL:           https://github.com/KhronosGroup/glslang
 BuildRequires: cmake
 BuildRequires: bison
@@ -35,7 +34,6 @@ A front-end library for programmatic parsing of GLSL/ESSL into an AST.
 %prep
 %setup -qn %{name}-%{commit}
 %patch0 -p1
-%patch1 -p1
 
 %build
 install -d build
diff --git a/isinf.patch b/isinf.patch
deleted file mode 100644 (file)
index d1873f4..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -dur -x '*~' glslang-4678ca9dacfec7a084dbc69bbe568bdad6889f1b.orig/glslang/MachineIndependent/intermOut.cpp glslang-4678ca9dacfec7a084dbc69bbe568bdad6889f1b/glslang/MachineIndependent/intermOut.cpp
---- glslang-4678ca9dacfec7a084dbc69bbe568bdad6889f1b.orig/glslang/MachineIndependent/intermOut.cpp     2016-05-13 17:33:42.000000000 +0200
-+++ glslang-4678ca9dacfec7a084dbc69bbe568bdad6889f1b/glslang/MachineIndependent/intermOut.cpp  2016-07-14 14:56:03.000000000 +0200
-@@ -49,6 +49,8 @@
- #ifdef _MSC_VER
-   return _fpclass(x) == _FPCLASS_PINF;
-+#elif defined isinf
-+  return isinf(x) && (x >= 0);
- #elif defined __ANDROID__ || defined __linux__ || __MINGW32__ || __MINGW64__
-   return std::isinf(x) && (x >= 0);
- #else
-   return isinf(x) && (x >= 0);
This page took 0.182497 seconds and 4 git commands to generate.