mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 23:39:20 -04:00
- 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.
18 lines
502 B
Text
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)
|