aports/testing/minidlna/makefile.patch
Natanael Copa 4ab6246313 testing/minidlna: update to 1.0.25 and misc fixes
- create minidlna user
- fix initd script
- ship default config
2012-11-19 20:21:31 +00:00

28 lines
914 B
Diff

diff --git a/Makefile b/Makefile
index 86e03a3..17871ea 100644
--- a/Makefile
+++ b/Makefile
@@ -12,13 +12,17 @@
#
#CFLAGS = -Wall -O -D_GNU_SOURCE -g -DDEBUG
#CFLAGS = -Wall -g -Os -D_GNU_SOURCE
-CFLAGS = -Wall -g -O3 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 \
- -I/usr/include/ffmpeg \
- -I/usr/include/libavutil -I/usr/include/libavcodec -I/usr/include/libavformat \
- -I/usr/include/ffmpeg/libavutil -I/usr/include/ffmpeg/libavcodec -I/usr/include/ffmpeg/libavformat
+
+libavutil_cflags := $(shell pkg-config --cflags libavutil)
+libavformat_cflags := $(shell pkg-config --cflags libavformat)
+libavfilter_cflags := $(shell pkg-config --cflags libavfilter)
+
+CFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I. \
+ $(libavutil_cflags) $(libavfilter_cflags) $(libavformat_clfags)
+
#STATIC_LINKING: CFLAGS += -DSTATIC
#STATIC_LINKING: LDFLAGS = -static
-CC = gcc
+CC ?= gcc
RM = rm -f
INSTALL = install