Browse Source

TT#14008 allow externally set CFLAGS

Change-Id: I1cfc8ef5ae2df9edace39acffd803b0c766e9ac3
pull/1093/head
Richard Fuchs 5 years ago
parent
commit
5883f16383
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      daemon/Makefile
  2. +1
    -1
      recording-daemon/Makefile

+ 1
- 1
daemon/Makefile View File

@ -51,7 +51,7 @@ endif
endif
endif
CFLAGS= -g -Wall -Wstrict-prototypes -pthread -fno-strict-aliasing
CFLAGS+= -g -Wall -Wstrict-prototypes -pthread -fno-strict-aliasing
CFLAGS+= -std=c99
CFLAGS+= $(shell pkg-config --cflags glib-2.0)
CFLAGS+= $(shell pkg-config --cflags gthread-2.0)


+ 1
- 1
recording-daemon/Makefile View File

@ -1,6 +1,6 @@
TARGET= rtpengine-recording
CFLAGS= -g -Wall -Wstrict-prototypes -pthread -I. -I../lib/ -I../kernel-module/
CFLAGS+= -g -Wall -Wstrict-prototypes -pthread -I. -I../lib/ -I../kernel-module/
CFLAGS+= -std=c99 -fno-strict-aliasing
CFLAGS+= -D_GNU_SOURCE -D_POSIX_SOURCE -D_POSIX_C_SOURCE
CFLAGS+= $(shell pkg-config --cflags glib-2.0)


Loading…
Cancel
Save