Skip to content

Commit

Permalink
Support compiling on macOS (hcmiya#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbowman authored and hcmiya committed Oct 15, 2019
1 parent 93cc151 commit a4fee1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/global.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#define GLOBAL_VAL(X)
#endif

#include <stdint.h>
#include <stdio.h>
#include <ogg/ogg.h>
#include <stdbool.h>
Expand Down
4 changes: 3 additions & 1 deletion src/select-codec.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand All @@ -7,6 +6,9 @@
#include <limits.h>
#include <arpa/inet.h>
#include <locale.h>
#ifdef __APPLE__
#include <xlocale.h>
#endif
#include <strings.h>

#include "opuscomment.h"
Expand Down

0 comments on commit a4fee1d

Please sign in to comment.