mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 21:50:32 -04:00
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]
12 lines
539 B
C++
12 lines
539 B
C++
--- ./src/plugins/android/androidsettingswidget.cpp.orig 2012-09-10 07:29:16.000000000 -0700
|
|
+++ ./src/plugins/android/androidsettingswidget.cpp 2012-09-15 15:10:10.396152998 -0700
|
|
@@ -345,6 +345,9 @@
|
|
#elif defined(Q_OS_DARWIN)
|
|
dir = QLatin1String("/opt/local/bin/ant");
|
|
QLatin1String antApp("ant");
|
|
+#elif defined(Q_OS_FREEBSD)
|
|
+ dir = QLatin1String("/usr/local/bin/ant");
|
|
+ QLatin1String antApp("ant");
|
|
#endif
|
|
const QString file =
|
|
QFileDialog::getOpenFileName(this, tr("Select ant Script"), dir, antApp);
|