mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
cac3f2b55b
MIDI data (ALSA Sequencer and/or JACK MIDI) over the network, using UDP/IP multicast. Inspired by multimidicast (http://llg.cubic.org/tools) and designed to be compatible with ipMIDI for Windows (http://nerds.de). QmidiNet is free, open-source software, distributed under the terms of the GNU General Public License (GPL) version 2 or later. WWW: http://sourceforge.net/projects/qmidinet
28 lines
872 B
Plaintext
28 lines
872 B
Plaintext
--- ./configure.ac.orig 2014-06-19 18:13:07.190594000 +0100
|
|
+++ ./configure.ac 2014-06-27 22:14:07.808215110 +0100
|
|
@@ -175,21 +175,21 @@
|
|
ac_errmsg="not found in current PATH. Maybe QT development environment isn't available (qt-devel)."
|
|
|
|
# Check for Qt qmake utility.
|
|
-AC_PATH_PROG(ac_qmake, qmake, [no], $ac_path)
|
|
+AC_PATH_PROG(ac_qmake, qmake-qt4, [no], $ac_path)
|
|
if test "x$ac_qmake" = "xno"; then
|
|
AC_MSG_ERROR([qmake $ac_errmsg])
|
|
fi
|
|
AC_SUBST(ac_qmake)
|
|
|
|
# Check for Qt moc utility.
|
|
-AC_PATH_PROG(ac_moc, moc, [no], $ac_path)
|
|
+AC_PATH_PROG(ac_moc, moc-qt4, [no], $ac_path)
|
|
if test "x$ac_moc" = "xno"; then
|
|
AC_MSG_ERROR([moc $ac_errmsg])
|
|
fi
|
|
AC_SUBST(ac_moc)
|
|
|
|
# Check for Qt uic utility.
|
|
-AC_PATH_PROG(ac_uic, uic, [no], $ac_path)
|
|
+AC_PATH_PROG(ac_uic, uic-qt4, [no], $ac_path)
|
|
if test "x$ac_uic" = "xno"; then
|
|
AC_MSG_ERROR([uic $ac_errmsg])
|
|
fi
|