The area51 repository features commits by Alonso Schaich, avilla, fluffy, jhale, makc and rakuco. Common changes: - Trim Makefile header - Convert to new option framework - Add/improve desktop entries - Remove upstreamed patches Mk/bsd.qt.mk: - Set QMAKESPEC at late stage (to fix potential problem if USE_GCC is used) [1] devel/qmake: - Fix crash due to off-by one error [2] multimedia/qt4-phonon*: - Deprecate in favour of multimedia/phonon* www/qt4-webkit: - Make dependence on GStreamer optional [3] devel/qtcreator: - Enable qml-designer in devel/qtcreator (requires privite Qt headers) [4] Reported by: avg via irc [1] Submitted by: avg via maillist [2] PR: ports/175644 [3] Submitted by: danfe [3] PR: ports/169809 [4] Reported by: tcb <tcberner at gmail.com> [4]
17 lines
544 B
C
17 lines
544 B
C
--- ./src/plugins/android/androidconfigurations.h.orig 2012-09-10 07:29:16.000000000 -0700
|
|
+++ ./src/plugins/android/androidconfigurations.h 2012-09-15 16:15:01.085988267 -0700
|
|
@@ -52,8 +52,12 @@
|
|
# ifdef Q_OS_WIN32
|
|
const QLatin1String ToolchainHost("windows");
|
|
# else
|
|
-# warning No Android supported OSs found
|
|
+# ifdef Q_OS_FREEBSD
|
|
+ const QLatin1String ToolchainHost("freebsd-x86");
|
|
+# else
|
|
+# warning No Android supported OSs found
|
|
const QLatin1String ToolchainHost("linux-x86");
|
|
+# endif
|
|
# endif
|
|
# endif
|
|
#endif
|