update math/cglm to 0.9.1

changelog: https://github.com/recp/cglm/releases/tag/v0.9.1
master
op 2023-09-08 10:37:24 +00:00
parent cb19f467e1
commit 5792bd7cca
4 changed files with 27 additions and 8 deletions

View File

@ -2,9 +2,9 @@ COMMENT = highly optimized graphics math library
GH_ACCOUNT = recp
GH_PROJECT = cglm
GH_TAGNAME = v0.9.0
GH_TAGNAME = v0.9.1
SHARED_LIBS = cglm 0.3 # 0.8.9
SHARED_LIBS = cglm 0.4
CATEGORIES = math

View File

@ -1,2 +1,2 @@
SHA256 (cglm-0.9.0.tar.gz) = m2iLxSkVzdSti31AgO9ZzJJnTVJoVtjxa7OhFNsd15Q=
SIZE (cglm-0.9.0.tar.gz) = 642861
SHA256 (cglm-0.9.1.tar.gz) = uhbuSEydXoCO8B5VAIoVaDHo/1KX8Qu8owet64J6CRM=
SIZE (cglm-0.9.1.tar.gz) = 657554

View File

@ -1,14 +1,14 @@
- don't hardcode optimization flags and drop -Werror
- drop hardcoded -O3
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -38,7 +38,7 @@ if(MSVC)
@@ -43,7 +43,7 @@ if(MSVC)
string(REGEX REPLACE "/RTC(su|[1su])" "" ${flag_var} "${${flag_var}}")
endforeach(flag_var)
else()
- add_compile_options(-Wall -Werror -O3)
- add_compile_options(-Wall -O3)
+ add_compile_options(-Wall)
endif()
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
get_directory_property(hasParent PARENT_DIRECTORY)

View File

@ -38,8 +38,14 @@ include/cglm/call/ivec2.h
include/cglm/call/ivec3.h
include/cglm/call/ivec4.h
include/cglm/call/mat2.h
include/cglm/call/mat2x3.h
include/cglm/call/mat2x4.h
include/cglm/call/mat3.h
include/cglm/call/mat3x2.h
include/cglm/call/mat3x4.h
include/cglm/call/mat4.h
include/cglm/call/mat4x2.h
include/cglm/call/mat4x3.h
include/cglm/call/plane.h
include/cglm/call/project.h
include/cglm/call/quat.h
@ -79,8 +85,14 @@ include/cglm/ivec2.h
include/cglm/ivec3.h
include/cglm/ivec4.h
include/cglm/mat2.h
include/cglm/mat2x3.h
include/cglm/mat2x4.h
include/cglm/mat3.h
include/cglm/mat3x2.h
include/cglm/mat3x4.h
include/cglm/mat4.h
include/cglm/mat4x2.h
include/cglm/mat4x3.h
include/cglm/plane.h
include/cglm/project.h
include/cglm/quat.h
@ -113,6 +125,7 @@ include/cglm/simd/x86.h
include/cglm/sphere.h
include/cglm/struct/
include/cglm/struct.h
include/cglm/struct/affine-mat.h
include/cglm/struct/affine-post.h
include/cglm/struct/affine-pre.h
include/cglm/struct/affine.h
@ -140,8 +153,14 @@ include/cglm/struct/euler.h
include/cglm/struct/frustum.h
include/cglm/struct/io.h
include/cglm/struct/mat2.h
include/cglm/struct/mat2x3.h
include/cglm/struct/mat2x4.h
include/cglm/struct/mat3.h
include/cglm/struct/mat3x2.h
include/cglm/struct/mat3x4.h
include/cglm/struct/mat4.h
include/cglm/struct/mat4x2.h
include/cglm/struct/mat4x3.h
include/cglm/struct/plane.h
include/cglm/struct/project.h
include/cglm/struct/quat.h