forked from rncbc/qtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Early preparations for v0.7.7 (haziest photon) release.
- LV2 UI Touch feature/interface support added. (EXPERIMENTAL)
- Loading branch information
rncbc
committed
Apr 26, 2016
1 parent
5bf9c27
commit 3fe8414
Showing
18 changed files
with
728 additions
and
567 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Process this file with autoconf to produce a configure script. | ||
AC_INIT(Qtractor, 0.7.6.14, [email protected], qtractor) | ||
AC_INIT(Qtractor, 0.7.6.15, [email protected], qtractor) | ||
|
||
AC_CONFIG_SRCDIR(src/qtractor.cpp) | ||
AC_CONFIG_HEADERS(src/config.h) | ||
|
@@ -199,6 +199,11 @@ AC_ARG_ENABLE(lv2-buf-size, | |
[ac_lv2_buf_size="$enableval"], | ||
[ac_lv2_buf_size="yes"]) | ||
|
||
AC_ARG_ENABLE(lv2-ui-touch, | ||
AC_HELP_STRING([--enable-lv2-ui-touch], [enable LV2 plug-in UI Touch interface support (default=yes)]), | ||
[ac_lv2_ui_touch="$enableval"], | ||
[ac_lv2_ui_touch="yes"]) | ||
|
||
AC_ARG_ENABLE(lv2-ui-idle, | ||
AC_HELP_STRING([--enable-lv2-ui-idle], [enable LV2 plug-in UI Idle interface support (default=yes)]), | ||
[ac_lv2_ui_idle="$enableval"], | ||
|
@@ -723,6 +728,7 @@ fi | |
if test "x$ac_lv2_ui" = "xno"; then | ||
ac_suil="no" | ||
ac_lv2_external_ui="no" | ||
ac_lv2_ui_touch="no" | ||
ac_lv2_ui_idle="no" | ||
ac_lv2_ui_show="no" | ||
ac_lv2_ui_gtk2="no" | ||
|
@@ -799,6 +805,7 @@ if test "x$ac_lilv" = "xno"; then | |
ac_lv2_time_position="no"; | ||
ac_lv2_options="no" | ||
ac_lv2_buf_size="no" | ||
ac_lv2_ui_touch="no" | ||
ac_lv2_ui_idle="no" | ||
ac_lv2_ui_show="no" | ||
ac_lv2_ui_gtk2="no" | ||
|
@@ -1059,6 +1066,7 @@ if test "x$ac_lv2" = "xyes"; then | |
ac_lv2_time_position="no"; | ||
ac_lv2_options="no" | ||
ac_lv2_buf_size="no" | ||
ac_lv2_ui_touch="no" | ||
ac_lv2_ui_idle="no" | ||
ac_lv2_ui_show="no" | ||
ac_lv2_ui_gtk2="no" | ||
|
@@ -1074,13 +1082,15 @@ if test "x$ac_lv2_ui" = "xyes"; then | |
else | ||
AC_MSG_WARN([*** LV2 UI support will be disabled.]) | ||
ac_lv2_external_ui="no" | ||
ac_lv2_ui_touch="no" | ||
ac_lv2_ui_idle="no" | ||
ac_lv2_ui_show="no" | ||
ac_lv2_ui_gtk2="no" | ||
ac_lv2_ui_x11="no" | ||
fi | ||
else | ||
ac_lv2_external_ui="no" | ||
ac_lv2_ui_touch="no" | ||
ac_lv2_ui_idle="no" | ||
ac_lv2_ui_show="no" | ||
ac_lv2_ui_gtk2="no" | ||
|
@@ -1252,6 +1262,21 @@ if test "x$ac_lv2_time_position" = "xyes"; then | |
AC_MSG_WARN([*** LV2 Time/position support will be disabled.]) | ||
fi | ||
fi | ||
if test "x$ac_lv2_ui_touch" = "xyes"; then | ||
AC_CACHE_CHECK([for LV2 UI Touch interface], | ||
ac_cv_lv2_ui_touch, [ | ||
AC_TRY_LINK([#include "lv2/lv2plug.in/ns/extensions/ui/ui.h"], [ | ||
// Checking for LV2 UI Touch interface... | ||
LV2UI_Touch touch; | ||
], ac_cv_lv2_ui_touch="yes", ac_cv_lv2_ui_touch="no") | ||
]) | ||
ac_lv2_ui_touch=$ac_cv_lv2_ui_touch | ||
if test "x$ac_lv2_ui_touch" = "xyes"; then | ||
AC_DEFINE(CONFIG_LV2_UI_TOUCH, 1, [Define if LV2 UI Touch interface support is available.]) | ||
else | ||
AC_MSG_WARN([*** LV2 UI Touch interface support will be disabled.]) | ||
fi | ||
fi | ||
if test "x$ac_lv2_ui_idle" = "xyes"; then | ||
AC_CACHE_CHECK([for LV2 UI Idle interface], | ||
ac_cv_lv2_ui_idle, [ | ||
|
@@ -1434,6 +1459,7 @@ echo " LV2 plug-in Time support . . . . . . . . . . . . .: $ac_lv2_time" | |
echo " LV2 plug-in Time/position support . . . . . . . .: $ac_lv2_time_position" | ||
echo " LV2 plug-in Options support . . . . . . . . . . .: $ac_lv2_options" | ||
echo " LV2 plug-in Buf-size support . . . . . . . . . . .: $ac_lv2_buf_size" | ||
echo " LV2 plug-in UI Touch interface support . . . . . .: $ac_lv2_ui_touch" | ||
echo " LV2 plug-in UI Idle interface support . . . . . .: $ac_lv2_ui_idle" | ||
echo " LV2 plug-in UI Show interface support . . . . . .: $ac_lv2_ui_show" | ||
if test "x$ac_qt5" = "xyes"; then | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
qtractor (0.7.7-25) unstable; urgency=low | ||
|
||
* New release: haziest photon beta | ||
|
||
-- Rui Nuno Capela <[email protected]> Wed, 27 Apr 2016 19:30:00 +0100 | ||
|
||
qtractor (0.7.6-24) unstable; urgency=low | ||
|
||
* New release: hazier photon beta | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
%define name @PACKAGE_TARNAME@ | ||
%define version @PACKAGE_VERSION@ | ||
%define release 24 | ||
%define release 25 | ||
|
||
%define _prefix @ac_prefix@ | ||
|
||
|
@@ -108,6 +108,8 @@ the personal home-studio. | |
%{_datadir}/man/man1/%{name}.1.gz | ||
|
||
%changelog | ||
* Wed Apr 27 2016 Rui Nuno Capela <[email protected]> 0.7.7 | ||
- The Haziest Photon beta release. | ||
* Tue Apr 5 2016 Rui Nuno Capela <[email protected]> 0.7.6 | ||
- A Hazier Photon beta release. | ||
* Mon Mar 21 2016 Rui Nuno Capela <[email protected]> 0.7.5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.