Fix build with glibc 2.26: https://github.com/tpaviot/oce/issues/675 Patch copied from upstream source repository: https://github.com/tpaviot/oce/commit/aa1321e68cc004e3debe38d79ae74581a617c767 From aa1321e68cc004e3debe38d79ae74581a617c767 Mon Sep 17 00:00:00 2001 From: Janus Weil Date: Mon, 18 Dec 2017 11:27:55 +0100 Subject: [PATCH] fix build errors with glibc 2.26+ due to missing xlocale.h (issue #675) * check for the presence of xlocale.h via cmake * remove related logic from Standard_CLocaleSentry.hxx --- CMakeLists.txt | 1 + src/Standard/Standard_CLocaleSentry.hxx | 15 --------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b782b4101..50e9500b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -616,6 +616,7 @@ if (NOT WIN32) # compilation anywhere in OCE include(CheckIncludeFile) check_include_file(strings.h HAVE_STRINGS_H) + check_include_file(xlocale.h HAVE_XLOCALE_H) include(CheckIncludeFileCXX) check_include_file_cxx(mm_malloc.h HAVE_MM_MALLOC_H) check_include_file_cxx(atomic.h OCE_HAVE_ATOMIC_H) diff --git a/src/Standard/Standard_CLocaleSentry.hxx b/src/Standard/Standard_CLocaleSentry.hxx index 2b226e7f3..1a4c1dadc 100644 --- a/src/Standard/Standard_CLocaleSentry.hxx +++ b/src/Standard/Standard_CLocaleSentry.hxx @@ -20,21 +20,6 @@ #include -#ifndef HAVE_XLOCALE_H - //! "xlocale.h" available in Mac OS X and glibc (Linux) for a long time as an extension - //! and become part of POSIX since '2008. - //! Notice that this is impossible to test (_POSIX_C_SOURCE >= 200809L) - //! since POSIX didn't declared such identifier. - #if defined(__APPLE__) - #define HAVE_XLOCALE_H - #endif - - //! We check _GNU_SOURCE for glibc extensions here and it is always defined by g++ compiler. - #if defined(_GNU_SOURCE) && !defined(__ANDROID__) - #define HAVE_XLOCALE_H - #endif -#endif // ifndef HAVE_LOCALE_H - #ifdef HAVE_XLOCALE_H #include #endif -- 2.15.1 g/?id=3ecf9d44bb927fc88223a15431428cb741dd1c2c'>root/gnu/packages/easyrpg.scm
ss can find guile-ac-d-bus and guile-packrat.
AgeCommit message (Expand)Author
2022-01-18gnu: easyrpg-player: Update to 0.7.0....* gnu/packages/easyrpg.scm (easyrpg-player): Update to 0.7.0. [inputs]: Add fluidsynth, fmt. Nicolas Goaziou
2022-01-18gnu: liblcf: Update to 0.7.0....* gnu/packages/easyrpg.scm (liblcf): Update to 0.7.0. Nicolas Goaziou
2021-12-13gnu: Further simplify package inputs....This is the result of running: ./pre-inst-env guix style --input-simplification=safe and manually undoing changes on a dozen of packages to reduce rebuilds (derivations for emacs, icecat, and libreoffice are unchanged.) Ludovic Courtès
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-09-18gnu: easyrpg-player: Add wildmidi input....Suggested by moshy on #guix. * gnu/packages/easyrpg.scm (easyrpg-player)[inputs]: Add wildmidi. Tobias Geerinckx-Rice
Ludovic Courtès
2023-03-30services: pam-limits-service-type: Deprecate file-like object support in favo......* doc/guix.texi (Base Services): Document it. * gnu/local.mk: Register test. * gnu/services/base.scm (pam-limits-service-type): Accept both lists and file-like objects. Deprecate file-like object support. * gnu/tests/pam.scm: New file. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Bruno Victal