Commit 620fb19a authored by Greg Williams's avatar Greg Williams
Browse files

Disabled C99 compliance temporarily to avoid constness issues

parent fba35f18
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -28,7 +28,8 @@ OPTIMIZE = -O3
WARN = -Wall -Wextra -pedantic
# This is necessary because the library depends on
# both C99 _and_ POSIX (for the BSD sockets API).
CDEFS += -D_POSIX_C_SOURCE=1 -D_C99_SOURCE=1
#CDEFS += -D_POSIX_C_SOURCE=1 -D_C99_SOURCE=1
CDEFS += -D_POSIX_C_SOURCE=1
CFLAGS += -std=c99 -fPIC -g $(WARN) $(CDEFS) $(OPTIMIZE)

LIB_INCS = -I$(LIB_DIR) -I$(PUB_INC) -I$(PBC_LIB) -I$(PBC_INC) -I$(VND_INC)