aboutsummaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-01-23 01:57:39 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-01-23 01:57:39 +0100
commit1256660e1f0cea877b6d453704343f07d73d6224 (patch)
treefff760729e37626fc3749e587a29be5e94184db2 /make.c
parent52cde82ece54db9796e43f9ee7497d50414a216f (diff)
Properly support UTF-8 in patterns
Diffstat (limited to 'make.c')
-rw-r--r--make.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/make.c b/make.c
index 6a6dbb3..834b426 100644
--- a/make.c
+++ b/make.c
@@ -17,8 +17,9 @@
#include "cbs.h"
#include "src/compat.h"
-#define CC "cc"
-#define CFLAGS "-Wall", "-Wextra", "-Wpedantic", "-Werror", "-pipe"
+#define CC "cc"
+#define CFLAGS \
+ "-Wall", "-Wextra", "-Wpedantic", "-Werror", "-Wno-pointer-sign", "-pipe"
#define CFLAGS_DEBUG "-DGRAB_DEBUG", "-g", "-ggdb3"
#ifdef __APPLE__
# define CFLAGS_RELEASE "-O3"