From 994f3bf77bf304a1c6aca8d82f720070b0ce6a467931124810b515f8e2f45da6 Mon Sep 17 00:00:00 2001 From: Stefan Dirsch Date: Mon, 27 Aug 2018 12:46:57 +0000 Subject: [PATCH] - Update to release 1.1.0 * Changes + Update the OpenGL XML and header files. + EGL: Remove a few unused functions in egldispatchstubs.c. + GLdispatch: Add a version script for the TSD build. + Some fixes for "make dist" + GLdispatch: Use --version-script instead -export-symbols. + Merge branch 'freebsd-fixes' + Add a (void*) cast for the last parameter when calling mincore. + Use sh instead of bash for the test scripts. + configure: Recognize both "x86_64" and "amd64" for host_cpu. + configure: Check if linking against libdl is necessary. + GL: Expand glapi_gen_libglglxstubs in the makefile. + Move the glapi_gen_libglglxstubs function into the GL makefile. + vnd-glapi: Change glapi_gen_mapi to a makefile variable. + Move the glapi_gen_mapi function into the vnd-glapi makefile. + generate: Remove glapi_gen_libopengl_exports. + GL: Don't generate g_glapi_mapi_gl_tmp.h + Merge pull request #150 from aaronp24/work-around-xorgproto-api-break + Merge pull request #153 from RAOF/fix-egl-platform-detection-crash + Handle dlsym succeeding with info.dli_sname == NULL. + Merge pull request #152 from kbrenneman/fix-eglMakeCurrent-bad-display + Always return an error from eglMakeCurrent if the EGLDispaly is invalid + GLX: Work around 'X_GLXCreateContextAtrribsARB' typo fix API break + Merge pull request #148 from kbrenneman/bump-library-versions + Bump the version numbers in the library filenames. + Merge pull request #143 from kbrenneman/gldispatch-fix-execmem + GLdispatch: Fix the allocation size for the dynamic stubs. + GLdispatch: Remove obsolete #ifdefs from u_execmem.c. + Merge pull request #140 from kbrenneman/add-GLX_EXT_no_config_context + tests: Only use glXCreateContext in testglxmakecurrent. + tests: Add a test for creating GLX contexts. + tests/GLX_dummy: Add a vendor-provided create context function + tests: Add a dummy attribute for glXQueryContext. + tests: Add support for GLX_EXT_no_context_config to GLX_dummy + tests: Remove the vendor dispatch stub for glXCreateContextAttribsARB. + Add support for GLX_EXT_no_config_context. OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/libglvnd?expand=0&rev=23 --- libglvnd-1.0.0.tar.gz | 3 --- libglvnd-1.1.0.tar.gz | 3 +++ libglvnd.changes | 41 +++++++++++++++++++++++++++++++++++++++++ libglvnd.spec | 2 +- 4 files changed, 45 insertions(+), 4 deletions(-) delete mode 100644 libglvnd-1.0.0.tar.gz create mode 100644 libglvnd-1.1.0.tar.gz diff --git a/libglvnd-1.0.0.tar.gz b/libglvnd-1.0.0.tar.gz deleted file mode 100644 index 5c33fc4..0000000 --- a/libglvnd-1.0.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8d1ba7d32162a64aa23f4cbccd2c29d75b2dedad5df3041536a276f9fe5a9bfa -size 1739470 diff --git a/libglvnd-1.1.0.tar.gz b/libglvnd-1.1.0.tar.gz new file mode 100644 index 0000000..521f1cf --- /dev/null +++ b/libglvnd-1.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e4a0232ade3dae9adeba8fe425e808193a6de985ee1d8e7b1f1b6f6f3cc094f +size 1826820 diff --git a/libglvnd.changes b/libglvnd.changes index 019f55f..8c48a1c 100644 --- a/libglvnd.changes +++ b/libglvnd.changes @@ -1,3 +1,44 @@ +------------------------------------------------------------------- +Mon Aug 27 12:30:13 UTC 2018 - sndirsch@suse.com + +- Update to release 1.1.0 + * Changes + + Update the OpenGL XML and header files. + + EGL: Remove a few unused functions in egldispatchstubs.c. + + GLdispatch: Add a version script for the TSD build. + + Some fixes for "make dist" + + GLdispatch: Use --version-script instead -export-symbols. + + Merge branch 'freebsd-fixes' + + Add a (void*) cast for the last parameter when calling mincore. + + Use sh instead of bash for the test scripts. + + configure: Recognize both "x86_64" and "amd64" for host_cpu. + + configure: Check if linking against libdl is necessary. + + GL: Expand glapi_gen_libglglxstubs in the makefile. + + Move the glapi_gen_libglglxstubs function into the GL makefile. + + vnd-glapi: Change glapi_gen_mapi to a makefile variable. + + Move the glapi_gen_mapi function into the vnd-glapi makefile. + + generate: Remove glapi_gen_libopengl_exports. + + GL: Don't generate g_glapi_mapi_gl_tmp.h + + Merge pull request #150 from aaronp24/work-around-xorgproto-api-break + + Merge pull request #153 from RAOF/fix-egl-platform-detection-crash + + Handle dlsym succeeding with info.dli_sname == NULL. + + Merge pull request #152 from kbrenneman/fix-eglMakeCurrent-bad-display + + Always return an error from eglMakeCurrent if the EGLDispaly is invalid + + GLX: Work around 'X_GLXCreateContextAtrribsARB' typo fix API break + + Merge pull request #148 from kbrenneman/bump-library-versions + + Bump the version numbers in the library filenames. + + Merge pull request #143 from kbrenneman/gldispatch-fix-execmem + + GLdispatch: Fix the allocation size for the dynamic stubs. + + GLdispatch: Remove obsolete #ifdefs from u_execmem.c. + + Merge pull request #140 from kbrenneman/add-GLX_EXT_no_config_context + + tests: Only use glXCreateContext in testglxmakecurrent. + + tests: Add a test for creating GLX contexts. + + tests/GLX_dummy: Add a vendor-provided create context function + + tests: Add a dummy attribute for glXQueryContext. + + tests: Add support for GLX_EXT_no_context_config to GLX_dummy + + tests: Remove the vendor dispatch stub for glXCreateContextAttribsARB. + + Add support for GLX_EXT_no_config_context. + ------------------------------------------------------------------- Thu Apr 19 13:24:28 UTC 2018 - sndirsch@suse.com diff --git a/libglvnd.spec b/libglvnd.spec index 6108a11..c1962a2 100644 --- a/libglvnd.spec +++ b/libglvnd.spec @@ -20,7 +20,7 @@ # Name: libglvnd -Version: 1.0.0 +Version: 1.1.0 Release: 0 Summary: The GL Vendor-Neutral Dispatch library License: MIT