Skip to content

Commit

Permalink
Merge remote-tracking branch 'mpg123/master' into master-with-github-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mpg123 GitHub bot committed Feb 14, 2024
2 parents 31b10db + 45463af commit 25e379c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
-- Fix --enable-portable (no usage of LFS_WRAP_NONE, bug 368).
-- Fix dct36 wrapper usage for x86-64 and NEON. Stupid (bug 367) and
also avoid returning void.
-- Make ARM builds work with nagging (missing feature macros for std=c99).

1.32.4
------
Expand Down
8 changes: 7 additions & 1 deletion src/libmpg123/getcpuflags_arm.c
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
/*
getcpuflags_arm: get cpuflags for ARM
copyright 1995-2014 by the mpg123 project - free software under the terms of the LGPL 2.1
copyright 1995-2024 by the mpg123 project - free software under the terms of the LGPL 2.1
see COPYING and AUTHORS files in distribution or http://mpg123.org
initially written by Taihei Momma
*/

// For sigsetjmp, we need POSIX 2001
#define _POSIX_C_SOURCE 200112L
// For SA_RESTART, XSI is needed (or POSIX 2008).
// This here should include the above, keeping that for clarity.
#define _XOPEN_SOURCE 600

#include <setjmp.h>
#include <signal.h>
#include "mpg123lib_intern.h"
Expand Down

0 comments on commit 25e379c

Please sign in to comment.