diff options
author | Alberto Villa <avilla@FreeBSD.org> | 2012-05-15 20:34:48 +0000 |
---|---|---|
committer | Alberto Villa <avilla@FreeBSD.org> | 2012-05-15 20:34:48 +0000 |
commit | f2008a44e4f246774c6b8a11bc072bd66dae657b (patch) | |
tree | 85c2d23ac6c2301ee33c4c02ff82c4fe3ed44781 /multimedia/mlt | |
parent | 3772632854ab378203258a86e83cf7e080a80df8 (diff) |
- Fix build on FreeBSD 10.
Reported by: andy@neu.net via mailing list
Notes
Notes:
svn path=/head/; revision=296691
Diffstat (limited to 'multimedia/mlt')
-rw-r--r-- | multimedia/mlt/files/patch-src__modules__kdenlive__Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/multimedia/mlt/files/patch-src__modules__kdenlive__Makefile b/multimedia/mlt/files/patch-src__modules__kdenlive__Makefile new file mode 100644 index 000000000000..ee8058e8832e --- /dev/null +++ b/multimedia/mlt/files/patch-src__modules__kdenlive__Makefile @@ -0,0 +1,16 @@ +--- ./src/modules/kdenlive/Makefile.orig 2012-05-15 08:54:26.554246237 +0200 ++++ ./src/modules/kdenlive/Makefile 2012-05-15 08:57:20.794280283 +0200 +@@ -3,6 +3,13 @@ + LDFLAGS += -L../../framework -lmlt + + include ../../../config.mak ++include ../../framework/config.mak ++ ++ifeq ($(targetos), FreeBSD) ++ ifdef HAVE_SYS_PARAM_H ++ CFLAGS += -DHAVE_SYS_PARAM_H ++ endif ++endif + + TARGET = ../libmltkdenlive$(LIBSUF) + |