ports/multimedia/mlt/files/patch-git4035fc1
Alberto Villa 3f77b2e3ab multimedia/mlt:
- Update to 0.9.2.
- Add optional dependency on Vid.Stab.
- Remove deprecated plugins.
- Remove stale MAN* macro.
- Use OPTIONS handlers.
- Remove @dirrm*.
- Strip binary and libraries.

This is a bugfix and enhancement release:
http://mltframework.blogspot.com/2014/06/version-092-released.html

multimedia/py-mlt:
- Force dependency on Python 2.
- Take maintainership.
2014-09-24 01:01:34 +00:00

18 lines
502 B
Text

commit 4035fc1177b355b0adc0f52616f5075feb88e2ba
Author: Dan Dennedy <dan@dennedy.org>
Date: Sun Jul 13 11:26:49 2014 -0700
Add missing stdlib include for getenv().
diff --git a/src/modules/qt/common.cpp b/src/modules/qt/common.cpp
index 9cd4cac..8ae1708 100644
--- src/modules/qt/common.cpp
+++ src/modules/qt/common.cpp
@@ -22,6 +22,7 @@
#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
#include <X11/Xlib.h>
+#include <cstdlib>
#endif
bool createQApplicationIfNeeded(mlt_service service)