Commit 3126c8c8 authored by Rafaël Carré's avatar Rafaël Carré Committed by Jean-Baptiste Kempf

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

Define assert() to no-op
(cherry picked from commit 1e2a142f)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent c78769e4
......@@ -26,6 +26,9 @@
* Preamble
*****************************************************************************/
/* workaround libflac overriding assert.h system header */
#define assert(x) do {} while(0)
#ifdef HAVE_CONFIG_H
# include "config.h"
#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