Commit 1e2a142f authored by Rafaël Carré's avatar Rafaël Carré Committed by Rémi Denis-Courmont

libflac installs its own assert.h which fails to define assert()

Define assert() to no-op
parent 07329b0a
...@@ -26,6 +26,9 @@ ...@@ -26,6 +26,9 @@
* Preamble * Preamble
*****************************************************************************/ *****************************************************************************/
/* workaround libflac overriding assert.h system header */
#define assert(x) do {} while(0)
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include "config.h" # include "config.h"
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment