mirror of
https://git.freebsd.org/ports.git
synced 2025-06-25 22:50:32 -04:00
Detailed maintainer log: - pulseaudio removed from default option: because otherwise kodi will select pulseaudio first and it's really not needed. - texturepacker disabled: because it's so heavily broken in upstream. not really important. it will be back in 17.0 with the new cmake build system. - switch to swig3, like all linux distrib (no change) PR: 208456 Submitted by: mickael.maillot@gmail.com (maintainer)
14 lines
609 B
Text
14 lines
609 B
Text
--- tools/depends/target/ffmpeg/Makefile.orig 2016-02-20 15:21:19 UTC
|
|
+++ tools/depends/target/ffmpeg/Makefile
|
|
@@ -24,6 +24,11 @@ ffmpg_config += --enable-libdcadec
|
|
ifeq ($(CROSS_COMPILING), yes)
|
|
ffmpg_config += --arch=$(CPU) --enable-cross-compile
|
|
endif
|
|
+ifeq ($(OS), freebsd)
|
|
+ ffmpg_config += --target-os=$(OS) --cpu=$(CPU)
|
|
+ ffmpg_config += --enable-vdpau --enable-vaapi --enable-gnutls
|
|
+ ffmpg_config += --enable-libvorbis --enable-muxer=ogg --enable-encoder=libvorbis
|
|
+endif
|
|
ifeq ($(OS), linux)
|
|
ffmpg_config += --target-os=$(OS) --cpu=$(CPU)
|
|
ffmpg_config += --enable-vdpau --enable-vaapi
|