Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (138923feb1c69892e77a9aba26a81ece65e0505f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Juuso Alasuutari <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (138923feb1c69892e77a9aba26a81ece65e0505f)
  • Date: Thu, 27 Jul 2006 11:10:46 -0500

GIT changes to master grimoire by Juuso Alasuutari <iuso AT sourcemage.org>:

ChangeLog | 3
audio-libs/dssi/BUILD | 3
audio-libs/dssi/CONFIGURE | 5
audio-libs/dssi/DEPENDS | 12 +
audio-libs/dssi/DETAILS | 24 ++
audio-libs/dssi/HISTORY | 3
audio-libs/dssi/PRE_BUILD | 11
audio-libs/dssi/configure-host.diff | 277 +++++++++++++++++++++++
audio-libs/dssi/configure-none.diff | 429
++++++++++++++++++++++++++++++++++++
9 files changed, 767 insertions(+)

New commits:
commit e6a7db32452548fca042ed2cd579c91edcd2a087
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

New spell dssi, an API for audio processing plugins.

diff --git a/ChangeLog b/ChangeLog
index 474388c..4d4558e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2006-07-27 Juuso Alasuutari <iuso AT sourcemage.org>
+ * audio-libs/dssi: New spell, API for audio processing plugins.
+
2006-07-27 Kevin Dahan <unet AT sourcemage.org>
* audio-soft/smstools: new spell
* audio-soft/annotator: new spell
diff --git a/audio-libs/dssi/BUILD b/audio-libs/dssi/BUILD
new file mode 100755
index 0000000..f1b2863
--- /dev/null
+++ b/audio-libs/dssi/BUILD
@@ -0,0 +1,3 @@
+# remove this BUILD file when/if QTINCDIR is exported in profile.d by
+# the qt-x11 spell
+QTINCDIR=/usr/include/qt default_build
diff --git a/audio-libs/dssi/CONFIGURE b/audio-libs/dssi/CONFIGURE
new file mode 100755
index 0000000..f7a19a3
--- /dev/null
+++ b/audio-libs/dssi/CONFIGURE
@@ -0,0 +1,5 @@
+config_query DSSI_HOST "Build JACK/ALSA-sequencer plugin host?" n &&
+
+if [[ $DSSI_HOST == y ]]; then
+ config_query DSSI_PLUGINS "Build example plugins and utils?" n
+fi
diff --git a/audio-libs/dssi/DEPENDS b/audio-libs/dssi/DEPENDS
new file mode 100755
index 0000000..8c60f14
--- /dev/null
+++ b/audio-libs/dssi/DEPENDS
@@ -0,0 +1,12 @@
+depends alsa-lib &&
+depends ladspa &&
+
+if [[ $DSSI_HOST == y ]]; then
+ depends liblo &&
+ depends jack &&
+ if [[ $DSSI_PLUGINS == y ]]; then
+ depends libsamplerate &&
+ depends libsndfile &&
+ depends qt-x11
+ fi
+fi
diff --git a/audio-libs/dssi/DETAILS b/audio-libs/dssi/DETAILS
new file mode 100755
index 0000000..ede8bf6
--- /dev/null
+++ b/audio-libs/dssi/DETAILS
@@ -0,0 +1,24 @@
+ SPELL=dssi
+ VERSION=0.9.1
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:3f8b8f9979a00d04117cd0b5d95154aae580110008563753db04d89b6496263e8f477ee15b4a9c3f46dea40f8b6bca8d2c9c8bf992c1502cfd28933b955291f6
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ WEB_SITE=http://dssi.sourceforge.net/
+ ENTERED=20060727
+ LICENSE[0]=LGPL
+ SHORT="An API for audio processing plugins, particularly useful
for software synthesis plugins with user interfaces."
+cat << EOF
+DSSI (pronounced "dizzy") is an API for audio processing plugins,
particularly
+useful for software synthesis plugins with user interfaces.
+
+DSSI is an open and well-documented specification developed for use in Linux
+audio applications, although portable to other platforms. It may be thought
+of as LADSPA-for-instruments, or something comparable to VSTi.
+
+DSSI consists of a C language API for use by plugins and hosts, based on the
+LADSPA API, and an OSC (Open Sound Control) API for use in user interface
+to host communications. The DSSI specification consists of an RFC which
+describes the background for the proposal and defines the OSC part of the
+specification, and a documented header file which defines the C API.
+EOF
diff --git a/audio-libs/dssi/HISTORY b/audio-libs/dssi/HISTORY
new file mode 100644
index 0000000..f708a46
--- /dev/null
+++ b/audio-libs/dssi/HISTORY
@@ -0,0 +1,3 @@
+2006-07-27 Juuso Alasuutari <iuso AT sourcemage.org>
+ * BUILD, CONFIGURE, DEPENDS, DETAILS, HISTORY, PRE_BUILD,
+ configure-host.diff, configure-none.diff: created spell
diff --git a/audio-libs/dssi/PRE_BUILD b/audio-libs/dssi/PRE_BUILD
new file mode 100755
index 0000000..93c3276
--- /dev/null
+++ b/audio-libs/dssi/PRE_BUILD
@@ -0,0 +1,11 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+
+# Prevent configure & build of unselected components
+if [[ $DSSI_HOST == n ]]; then
+ patch -p0 < $SCRIPT_DIRECTORY/configure-none.diff
+ sedit 's/SUBDIRS =.*/SUBDIRS = tests/' Makefile.in
+elif [[ $DSSI_PLUGINS == n ]]; then
+ patch -p0 < $SCRIPT_DIRECTORY/configure-host.diff
+ sedit 's/SUBDIRS =.*/SUBDIRS = jack-dssi-host tests/' Makefile.in
+fi
diff --git a/audio-libs/dssi/configure-host.diff
b/audio-libs/dssi/configure-host.diff
new file mode 100644
index 0000000..55c3d4b
--- /dev/null
+++ b/audio-libs/dssi/configure-host.diff
@@ -0,0 +1,277 @@
+--- configure 2005-10-12 20:07:38.000000000 +0300
++++ configure.host 2006-07-27 18:25:43.000000000 +0300
+@@ -20213,59 +20213,6 @@
+
+ fi
+
+- if test "$PKG_CONFIG" = "no" ; then
+- echo "*** The pkg-config script could not be found. Make sure it is"
+- echo "*** in your path, or set the PKG_CONFIG environment variable"
+- echo "*** to the full path to pkg-config."
+- echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get
pkg-config."
+- else
+- PKG_CONFIG_MIN_VERSION=0.9.0
+- if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION;
then
+- echo "$as_me:$LINENO: checking for sndfile" >&5
+-echo $ECHO_N "checking for sndfile... $ECHO_C" >&6
+-
+- if $PKG_CONFIG --exists "sndfile" ; then
+- echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+- succeeded=yes
+-
+- echo "$as_me:$LINENO: checking SNDFILE_CFLAGS" >&5
+-echo $ECHO_N "checking SNDFILE_CFLAGS... $ECHO_C" >&6
+- SNDFILE_CFLAGS=`$PKG_CONFIG --cflags "sndfile"`
+- echo "$as_me:$LINENO: result: $SNDFILE_CFLAGS" >&5
+-echo "${ECHO_T}$SNDFILE_CFLAGS" >&6
+-
+- echo "$as_me:$LINENO: checking SNDFILE_LIBS" >&5
+-echo $ECHO_N "checking SNDFILE_LIBS... $ECHO_C" >&6
+- SNDFILE_LIBS=`$PKG_CONFIG --libs "sndfile"`
+- echo "$as_me:$LINENO: result: $SNDFILE_LIBS" >&5
+-echo "${ECHO_T}$SNDFILE_LIBS" >&6
+- else
+- SNDFILE_CFLAGS=""
+- SNDFILE_LIBS=""
+- ## If we have a custom action on failure, don't print errors,
but
+- ## do set a variable so people can do so.
+- SNDFILE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout
--print-errors "sndfile"`
+-
+- fi
+-
+-
+-
+- else
+- echo "*** Your version of pkg-config is too old. You need version
$PKG_CONFIG_MIN_VERSION or newer."
+- echo "*** See http://www.freedesktop.org/software/pkgconfig";
+- fi
+- fi
+-
+- if test $succeeded = yes; then
+- with_sndfile=yes
+- else
+- with_sndfile=no
+- fi
+-
+-
+- succeeded=no
+-
+ if test -z "$PKG_CONFIG"; then
+ # Extract the first word of "pkg-config", so it can be a program name
with args.
+ set dummy pkg-config; ac_word=$2
+@@ -20309,134 +20256,8 @@
+
+ fi
+
+- if test "$PKG_CONFIG" = "no" ; then
+- echo "*** The pkg-config script could not be found. Make sure it is"
+- echo "*** in your path, or set the PKG_CONFIG environment variable"
+- echo "*** to the full path to pkg-config."
+- echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get
pkg-config."
+- else
+- PKG_CONFIG_MIN_VERSION=0.9.0
+- if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION;
then
+- echo "$as_me:$LINENO: checking for samplerate" >&5
+-echo $ECHO_N "checking for samplerate... $ECHO_C" >&6
+-
+- if $PKG_CONFIG --exists "samplerate" ; then
+- echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+- succeeded=yes
+-
+- echo "$as_me:$LINENO: checking SRC_CFLAGS" >&5
+-echo $ECHO_N "checking SRC_CFLAGS... $ECHO_C" >&6
+- SRC_CFLAGS=`$PKG_CONFIG --cflags "samplerate"`
+- echo "$as_me:$LINENO: result: $SRC_CFLAGS" >&5
+-echo "${ECHO_T}$SRC_CFLAGS" >&6
+-
+- echo "$as_me:$LINENO: checking SRC_LIBS" >&5
+-echo $ECHO_N "checking SRC_LIBS... $ECHO_C" >&6
+- SRC_LIBS=`$PKG_CONFIG --libs "samplerate"`
+- echo "$as_me:$LINENO: result: $SRC_LIBS" >&5
+-echo "${ECHO_T}$SRC_LIBS" >&6
+- else
+- SRC_CFLAGS=""
+- SRC_LIBS=""
+- ## If we have a custom action on failure, don't print errors,
but
+- ## do set a variable so people can do so.
+- SRC_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors
"samplerate"`
+-
+- fi
+-
+-
+-
+- else
+- echo "*** Your version of pkg-config is too old. You need version
$PKG_CONFIG_MIN_VERSION or newer."
+- echo "*** See http://www.freedesktop.org/software/pkgconfig";
+- fi
+- fi
+-
+- if test $succeeded = yes; then
+- with_SRC=yes
+- else
+- with_SRC=no
+- fi
+-
+-
+-
+-
+-
+-
+-echo "$as_me:$LINENO: checking whether QTDIR environment variable is set"
>&5
+-echo $ECHO_N "checking whether QTDIR environment variable is set...
$ECHO_C" >&6
+-if test "x${QTDIR}" = x ; then
+- echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+- echo "$as_me:$LINENO: checking for Qt library" >&5
+-echo $ECHO_N "checking for Qt library... $ECHO_C" >&6
+- for qq in /usr/lib/qt3 /usr/qt/3 /usr/share/qt /usr/share/qt3
/usr/lib/qt-3.1 /usr/lib/qt31 /usr/local/qt31 /usr/local/qt3 /usr/lib/qt
/usr/local/qt
+- do
+- if test "x${QTDIR}" = x -a \( -f $qq/lib/libqt-mt.so -o -f
$qq/lib/libqt-mt.a \)
+- then
+- QTDIR=$qq
+- fi
+- done
+- if test "x${QTDIR}" = x ; then
+- with_qt=no
+- echo "$as_me:$LINENO: result: none found. Perhaps you need to set
QTDIR?" >&5
+-echo "${ECHO_T}none found. Perhaps you need to set QTDIR?" >&6
+- else
+- with_qt=yes
+- echo "$as_me:$LINENO: result: found one in $QTDIR/lib" >&5
+-echo "${ECHO_T}found one in $QTDIR/lib" >&6
+- fi
+-else
+- echo "$as_me:$LINENO: result: $QTDIR" >&5
+-echo "${ECHO_T}$QTDIR" >&6
+- echo "$as_me:$LINENO: checking for Qt library" >&5
+-echo $ECHO_N "checking for Qt library... $ECHO_C" >&6
+- if test -f $QTDIR/lib/libqt-mt.so -o -f $QTDIR/lib/libqt-mt.a; then
+- with_qt=yes
+- echo "$as_me:$LINENO: result: in $QTDIR/lib" >&5
+-echo "${ECHO_T}in $QTDIR/lib" >&6
+- else
+- with_qt=no
+- echo "$as_me:$LINENO: result: no. Perhaps QTDIR is not set correctly?"
>&5
+-echo "${ECHO_T}no. Perhaps QTDIR is not set correctly?" >&6
+- fi
+-fi
+-if test "x${with_qt}" = xyes ; then
+- if test "x${QTINCDIR}" != x ; then
+- QT_CXXFLAGS="-I${QTINCDIR}"
+- else
+- QT_CXXFLAGS="-I${QTDIR}/include"
+- fi
+- if test "x${QTLIBDIR}" != x ; then
+- QT_LIBS="-L${QTLIBDIR} -lqt-mt"
+- else
+- QT_LIBS="-L${QTDIR}/lib -lqt-mt"
+- fi
+- if test "x${MOC}" != x ; then
+- QT_MOC="${MOC}"
+- else
+- QT_MOC="${QTDIR}/bin/moc"
+- fi
+- # dnl Check for Qt moc utility.
+- # AC_PATH_PROG(ac_moc, moc, [no])
+- # if test "x$ac_moc" = "xno"; then
+- # AC_MSG_ERROR([moc $ac_qtdir_errmsg])
+- # fi
+- # AC_SUBST(ac_moc)
+-fi
+-
+-
+-
+-
+-
+-if test x$with_qt = xyes; then
+- HAVE_QT_TRUE=
+- HAVE_QT_FALSE='#'
+-else
+ HAVE_QT_TRUE='#'
+ HAVE_QT_FALSE=
+-fi
+
+
+ case "${host_os}" in
+@@ -20478,42 +20299,17 @@
+ fi
+
+ jack_dssi_host_needs=''
+-dssi_osc_tools_needs=''
+-trivial_sampler_needs=''
+-less_trivial_synth_gui_needs=''
+-trivial_sampler_gui_needs=''
+ if test "x$with_liblo" != xyes ; then
+ jack_dssi_host_needs="$jack_dssi_host_needs liblo"
+- dssi_osc_tools_needs="$dssi_osc_tools_needs liblo"
+- less_trivial_synth_gui_needs="$less_trivial_synth_gui_needs liblo"
+- trivial_sampler_gui_needs="$trivial_sampler_gui_needs liblo"
+ fi
+ if test "x$with_jack" != xyes ; then
+ jack_dssi_host_needs="$jack_dssi_host_needs JACK"
+ fi
+-if test "x$with_sndfile" != xyes ; then
+- trivial_sampler_needs="$trivial_sampler_needs libsndfile"
+- trivial_sampler_gui_needs="$trivial_sampler_gui_needs libsndfile"
+-fi
+-if test "x$with_SRC" != xyes ; then
+- trivial_sampler_needs="$trivial_sampler_needs libsamplerate"
+-fi
+-
+-
+-if test -z "$trivial_sampler_needs"; then
+- BUILD_SAMPLER_TRUE=
+- BUILD_SAMPLER_FALSE='#'
+-else
+- BUILD_SAMPLER_TRUE='#'
+- BUILD_SAMPLER_FALSE=
+-fi
+
+-if test "x$with_qt" != xyes ; then
+- less_trivial_synth_gui_needs="$less_trivial_synth_gui_needs Qt"
+- trivial_sampler_gui_needs="$trivial_sampler_gui_needs Qt"
+-fi
++BUILD_SAMPLER_TRUE='#'
++BUILD_SAMPLER_FALSE=
+
+-
ac_config_files="$ac_config_files Makefile dssi.pc jack-dssi-host/Makefile
examples/Makefile tests/Makefile"
++
ac_config_files="$ac_config_files Makefile dssi.pc jack-dssi-host/Makefile
tests/Makefile"
+ cat >confcache <<\_ACEOF
+ # This file is a shell script that caches the results of configure
+ # tests run on this system so they can be shared between configure
+@@ -21108,7 +20904,6 @@
+ "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+ "dssi.pc" ) CONFIG_FILES="$CONFIG_FILES dssi.pc" ;;
+ "jack-dssi-host/Makefile" ) CONFIG_FILES="$CONFIG_FILES
jack-dssi-host/Makefile" ;;
+- "examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;;
+ "tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
+ "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
+ "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
+@@ -22015,25 +21810,3 @@
+ else
+ echo "* building jack-dssi-host: no
(missing$jack_dssi_host_needs)"
+ fi
+-if test -z "$dssi_osc_tools_needs" ; then
+- echo "* building DSSI OSC tools: yes"
+-else
+- echo "* building DSSI OSC tools: no
(missing$dssi_osc_tools_needs)"
+-fi
+-echo "* building trivial_synth plugin: yes"
+-echo "* building less_trivial_synth plugin: yes"
+-if test -z "$trivial_sampler_needs" ; then
+- echo "* building trivial_sampler plugin: yes"
+-else
+- echo "* building trivial_sampler plugin: no
(missing$trivial_sampler_needs)"
+-fi
+-if test -z "$less_trivial_synth_gui_needs" ; then
+- echo "* building less_trivial_synth GUI: yes"
+-else
+- echo "* building less_trivial_synth GUI: no
(missing$less_trivial_synth_gui_needs)"
+-fi
+-if test -z "$trivial_sampler_gui_needs" ; then
+- echo "* building trivial_sampler GUI: yes"
+-else
+- echo "* building trivial_sampler GUI: no
(missing$trivial_sampler_gui_needs)"
+-fi
diff --git a/audio-libs/dssi/configure-none.diff
b/audio-libs/dssi/configure-none.diff
new file mode 100644
index 0000000..40ba7f0
--- /dev/null
+++ b/audio-libs/dssi/configure-none.diff
@@ -0,0 +1,429 @@
+--- configure 2005-10-12 20:07:38.000000000 +0300
++++ configure.none 2006-07-27 18:26:16.000000000 +0300
+@@ -19995,71 +19995,8 @@
+
+ fi
+
+- if test "$PKG_CONFIG" = "no" ; then
+- echo "*** The pkg-config script could not be found. Make sure it is"
+- echo "*** in your path, or set the PKG_CONFIG environment variable"
+- echo "*** to the full path to pkg-config."
+- echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get
pkg-config."
+- else
+- PKG_CONFIG_MIN_VERSION=0.9.0
+- if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION;
then
+- echo "$as_me:$LINENO: checking for liblo >= 0.12" >&5
+-echo $ECHO_N "checking for liblo >= 0.12... $ECHO_C" >&6
+-
+- if $PKG_CONFIG --exists "liblo >= 0.12" ; then
+- echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+- succeeded=yes
+-
+- echo "$as_me:$LINENO: checking LIBLO_CFLAGS" >&5
+-echo $ECHO_N "checking LIBLO_CFLAGS... $ECHO_C" >&6
+- LIBLO_CFLAGS=`$PKG_CONFIG --cflags "liblo >= 0.12"`
+- echo "$as_me:$LINENO: result: $LIBLO_CFLAGS" >&5
+-echo "${ECHO_T}$LIBLO_CFLAGS" >&6
+-
+- echo "$as_me:$LINENO: checking LIBLO_LIBS" >&5
+-echo $ECHO_N "checking LIBLO_LIBS... $ECHO_C" >&6
+- LIBLO_LIBS=`$PKG_CONFIG --libs "liblo >= 0.12"`
+- echo "$as_me:$LINENO: result: $LIBLO_LIBS" >&5
+-echo "${ECHO_T}$LIBLO_LIBS" >&6
+- else
+- LIBLO_CFLAGS=""
+- LIBLO_LIBS=""
+- ## If we have a custom action on failure, don't print errors,
but
+- ## do set a variable so people can do so.
+- LIBLO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors
"liblo >= 0.12"`
+-
+- fi
+-
+-
+-
+- else
+- echo "*** Your version of pkg-config is too old. You need version
$PKG_CONFIG_MIN_VERSION or newer."
+- echo "*** See http://www.freedesktop.org/software/pkgconfig";
+- fi
+- fi
+-
+- if test $succeeded = yes; then
+- with_liblo=yes
+- else
+- with_liblo=no
+- fi
+-
+-
+-
+-
+-
+-if test x$with_liblo = xyes; then
+- HAVE_LIBLO_TRUE=
+- HAVE_LIBLO_FALSE='#'
+-else
+ HAVE_LIBLO_TRUE='#'
+ HAVE_LIBLO_FALSE=
+-fi
+-
+-
+-
+- succeeded=no
+
+ if test -z "$PKG_CONFIG"; then
+ # Extract the first word of "pkg-config", so it can be a program name
with args.
+@@ -20104,71 +20041,8 @@
+
+ fi
+
+- if test "$PKG_CONFIG" = "no" ; then
+- echo "*** The pkg-config script could not be found. Make sure it is"
+- echo "*** in your path, or set the PKG_CONFIG environment variable"
+- echo "*** to the full path to pkg-config."
+- echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get
pkg-config."
+- else
+- PKG_CONFIG_MIN_VERSION=0.9.0
+- if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION;
then
+- echo "$as_me:$LINENO: checking for jack" >&5
+-echo $ECHO_N "checking for jack... $ECHO_C" >&6
+-
+- if $PKG_CONFIG --exists "jack" ; then
+- echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+- succeeded=yes
+-
+- echo "$as_me:$LINENO: checking JACK_CFLAGS" >&5
+-echo $ECHO_N "checking JACK_CFLAGS... $ECHO_C" >&6
+- JACK_CFLAGS=`$PKG_CONFIG --cflags "jack"`
+- echo "$as_me:$LINENO: result: $JACK_CFLAGS" >&5
+-echo "${ECHO_T}$JACK_CFLAGS" >&6
+-
+- echo "$as_me:$LINENO: checking JACK_LIBS" >&5
+-echo $ECHO_N "checking JACK_LIBS... $ECHO_C" >&6
+- JACK_LIBS=`$PKG_CONFIG --libs "jack"`
+- echo "$as_me:$LINENO: result: $JACK_LIBS" >&5
+-echo "${ECHO_T}$JACK_LIBS" >&6
+- else
+- JACK_CFLAGS=""
+- JACK_LIBS=""
+- ## If we have a custom action on failure, don't print errors,
but
+- ## do set a variable so people can do so.
+- JACK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors
"jack"`
+-
+- fi
+-
+-
+-
+- else
+- echo "*** Your version of pkg-config is too old. You need version
$PKG_CONFIG_MIN_VERSION or newer."
+- echo "*** See http://www.freedesktop.org/software/pkgconfig";
+- fi
+- fi
+-
+- if test $succeeded = yes; then
+- with_jack=yes
+- else
+- with_jack=no
+- fi
+-
+-
+-
+-
+-
+-if test x$with_jack = xyes; then
+- HAVE_JACK_TRUE=
+- HAVE_JACK_FALSE='#'
+-else
+ HAVE_JACK_TRUE='#'
+ HAVE_JACK_FALSE=
+-fi
+-
+-
+-
+- succeeded=no
+
+ if test -z "$PKG_CONFIG"; then
+ # Extract the first word of "pkg-config", so it can be a program name
with args.
+@@ -20213,59 +20087,6 @@
+
+ fi
+
+- if test "$PKG_CONFIG" = "no" ; then
+- echo "*** The pkg-config script could not be found. Make sure it is"
+- echo "*** in your path, or set the PKG_CONFIG environment variable"
+- echo "*** to the full path to pkg-config."
+- echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get
pkg-config."
+- else
+- PKG_CONFIG_MIN_VERSION=0.9.0
+- if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION;
then
+- echo "$as_me:$LINENO: checking for sndfile" >&5
+-echo $ECHO_N "checking for sndfile... $ECHO_C" >&6
+-
+- if $PKG_CONFIG --exists "sndfile" ; then
+- echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+- succeeded=yes
+-
+- echo "$as_me:$LINENO: checking SNDFILE_CFLAGS" >&5
+-echo $ECHO_N "checking SNDFILE_CFLAGS... $ECHO_C" >&6
+- SNDFILE_CFLAGS=`$PKG_CONFIG --cflags "sndfile"`
+- echo "$as_me:$LINENO: result: $SNDFILE_CFLAGS" >&5
+-echo "${ECHO_T}$SNDFILE_CFLAGS" >&6
+-
+- echo "$as_me:$LINENO: checking SNDFILE_LIBS" >&5
+-echo $ECHO_N "checking SNDFILE_LIBS... $ECHO_C" >&6
+- SNDFILE_LIBS=`$PKG_CONFIG --libs "sndfile"`
+- echo "$as_me:$LINENO: result: $SNDFILE_LIBS" >&5
+-echo "${ECHO_T}$SNDFILE_LIBS" >&6
+- else
+- SNDFILE_CFLAGS=""
+- SNDFILE_LIBS=""
+- ## If we have a custom action on failure, don't print errors,
but
+- ## do set a variable so people can do so.
+- SNDFILE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout
--print-errors "sndfile"`
+-
+- fi
+-
+-
+-
+- else
+- echo "*** Your version of pkg-config is too old. You need version
$PKG_CONFIG_MIN_VERSION or newer."
+- echo "*** See http://www.freedesktop.org/software/pkgconfig";
+- fi
+- fi
+-
+- if test $succeeded = yes; then
+- with_sndfile=yes
+- else
+- with_sndfile=no
+- fi
+-
+-
+- succeeded=no
+-
+ if test -z "$PKG_CONFIG"; then
+ # Extract the first word of "pkg-config", so it can be a program name
with args.
+ set dummy pkg-config; ac_word=$2
+@@ -20309,134 +20130,8 @@
+
+ fi
+
+- if test "$PKG_CONFIG" = "no" ; then
+- echo "*** The pkg-config script could not be found. Make sure it is"
+- echo "*** in your path, or set the PKG_CONFIG environment variable"
+- echo "*** to the full path to pkg-config."
+- echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get
pkg-config."
+- else
+- PKG_CONFIG_MIN_VERSION=0.9.0
+- if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION;
then
+- echo "$as_me:$LINENO: checking for samplerate" >&5
+-echo $ECHO_N "checking for samplerate... $ECHO_C" >&6
+-
+- if $PKG_CONFIG --exists "samplerate" ; then
+- echo "$as_me:$LINENO: result: yes" >&5
+-echo "${ECHO_T}yes" >&6
+- succeeded=yes
+-
+- echo "$as_me:$LINENO: checking SRC_CFLAGS" >&5
+-echo $ECHO_N "checking SRC_CFLAGS... $ECHO_C" >&6
+- SRC_CFLAGS=`$PKG_CONFIG --cflags "samplerate"`
+- echo "$as_me:$LINENO: result: $SRC_CFLAGS" >&5
+-echo "${ECHO_T}$SRC_CFLAGS" >&6
+-
+- echo "$as_me:$LINENO: checking SRC_LIBS" >&5
+-echo $ECHO_N "checking SRC_LIBS... $ECHO_C" >&6
+- SRC_LIBS=`$PKG_CONFIG --libs "samplerate"`
+- echo "$as_me:$LINENO: result: $SRC_LIBS" >&5
+-echo "${ECHO_T}$SRC_LIBS" >&6
+- else
+- SRC_CFLAGS=""
+- SRC_LIBS=""
+- ## If we have a custom action on failure, don't print errors,
but
+- ## do set a variable so people can do so.
+- SRC_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors
"samplerate"`
+-
+- fi
+-
+-
+-
+- else
+- echo "*** Your version of pkg-config is too old. You need version
$PKG_CONFIG_MIN_VERSION or newer."
+- echo "*** See http://www.freedesktop.org/software/pkgconfig";
+- fi
+- fi
+-
+- if test $succeeded = yes; then
+- with_SRC=yes
+- else
+- with_SRC=no
+- fi
+-
+-
+-
+-
+-
+-
+-echo "$as_me:$LINENO: checking whether QTDIR environment variable is set"
>&5
+-echo $ECHO_N "checking whether QTDIR environment variable is set...
$ECHO_C" >&6
+-if test "x${QTDIR}" = x ; then
+- echo "$as_me:$LINENO: result: no" >&5
+-echo "${ECHO_T}no" >&6
+- echo "$as_me:$LINENO: checking for Qt library" >&5
+-echo $ECHO_N "checking for Qt library... $ECHO_C" >&6
+- for qq in /usr/lib/qt3 /usr/qt/3 /usr/share/qt /usr/share/qt3
/usr/lib/qt-3.1 /usr/lib/qt31 /usr/local/qt31 /usr/local/qt3 /usr/lib/qt
/usr/local/qt
+- do
+- if test "x${QTDIR}" = x -a \( -f $qq/lib/libqt-mt.so -o -f
$qq/lib/libqt-mt.a \)
+- then
+- QTDIR=$qq
+- fi
+- done
+- if test "x${QTDIR}" = x ; then
+- with_qt=no
+- echo "$as_me:$LINENO: result: none found. Perhaps you need to set
QTDIR?" >&5
+-echo "${ECHO_T}none found. Perhaps you need to set QTDIR?" >&6
+- else
+- with_qt=yes
+- echo "$as_me:$LINENO: result: found one in $QTDIR/lib" >&5
+-echo "${ECHO_T}found one in $QTDIR/lib" >&6
+- fi
+-else
+- echo "$as_me:$LINENO: result: $QTDIR" >&5
+-echo "${ECHO_T}$QTDIR" >&6
+- echo "$as_me:$LINENO: checking for Qt library" >&5
+-echo $ECHO_N "checking for Qt library... $ECHO_C" >&6
+- if test -f $QTDIR/lib/libqt-mt.so -o -f $QTDIR/lib/libqt-mt.a; then
+- with_qt=yes
+- echo "$as_me:$LINENO: result: in $QTDIR/lib" >&5
+-echo "${ECHO_T}in $QTDIR/lib" >&6
+- else
+- with_qt=no
+- echo "$as_me:$LINENO: result: no. Perhaps QTDIR is not set correctly?"
>&5
+-echo "${ECHO_T}no. Perhaps QTDIR is not set correctly?" >&6
+- fi
+-fi
+-if test "x${with_qt}" = xyes ; then
+- if test "x${QTINCDIR}" != x ; then
+- QT_CXXFLAGS="-I${QTINCDIR}"
+- else
+- QT_CXXFLAGS="-I${QTDIR}/include"
+- fi
+- if test "x${QTLIBDIR}" != x ; then
+- QT_LIBS="-L${QTLIBDIR} -lqt-mt"
+- else
+- QT_LIBS="-L${QTDIR}/lib -lqt-mt"
+- fi
+- if test "x${MOC}" != x ; then
+- QT_MOC="${MOC}"
+- else
+- QT_MOC="${QTDIR}/bin/moc"
+- fi
+- # dnl Check for Qt moc utility.
+- # AC_PATH_PROG(ac_moc, moc, [no])
+- # if test "x$ac_moc" = "xno"; then
+- # AC_MSG_ERROR([moc $ac_qtdir_errmsg])
+- # fi
+- # AC_SUBST(ac_moc)
+-fi
+-
+-
+-
+-
+-
+-if test x$with_qt = xyes; then
+- HAVE_QT_TRUE=
+- HAVE_QT_FALSE='#'
+-else
+ HAVE_QT_TRUE='#'
+ HAVE_QT_FALSE=
+-fi
+
+
+ case "${host_os}" in
+@@ -20477,43 +20172,10 @@
+ esac
+ fi
+
+-jack_dssi_host_needs=''
+-dssi_osc_tools_needs=''
+-trivial_sampler_needs=''
+-less_trivial_synth_gui_needs=''
+-trivial_sampler_gui_needs=''
+-if test "x$with_liblo" != xyes ; then
+- jack_dssi_host_needs="$jack_dssi_host_needs liblo"
+- dssi_osc_tools_needs="$dssi_osc_tools_needs liblo"
+- less_trivial_synth_gui_needs="$less_trivial_synth_gui_needs liblo"
+- trivial_sampler_gui_needs="$trivial_sampler_gui_needs liblo"
+-fi
+-if test "x$with_jack" != xyes ; then
+- jack_dssi_host_needs="$jack_dssi_host_needs JACK"
+-fi
+-if test "x$with_sndfile" != xyes ; then
+- trivial_sampler_needs="$trivial_sampler_needs libsndfile"
+- trivial_sampler_gui_needs="$trivial_sampler_gui_needs libsndfile"
+-fi
+-if test "x$with_SRC" != xyes ; then
+- trivial_sampler_needs="$trivial_sampler_needs libsamplerate"
+-fi
+-
+-
+-if test -z "$trivial_sampler_needs"; then
+- BUILD_SAMPLER_TRUE=
+- BUILD_SAMPLER_FALSE='#'
+-else
+- BUILD_SAMPLER_TRUE='#'
+- BUILD_SAMPLER_FALSE=
+-fi
++BUILD_SAMPLER_TRUE='#'
++BUILD_SAMPLER_FALSE=
+
+-if test "x$with_qt" != xyes ; then
+- less_trivial_synth_gui_needs="$less_trivial_synth_gui_needs Qt"
+- trivial_sampler_gui_needs="$trivial_sampler_gui_needs Qt"
+-fi
+-
+-
ac_config_files="$ac_config_files Makefile dssi.pc jack-dssi-host/Makefile
examples/Makefile tests/Makefile"
++
ac_config_files="$ac_config_files Makefile dssi.pc tests/Makefile"
+ cat >confcache <<\_ACEOF
+ # This file is a shell script that caches the results of configure
+ # tests run on this system so they can be shared between configure
+@@ -21107,8 +20769,6 @@
+ # Handling of arguments.
+ "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+ "dssi.pc" ) CONFIG_FILES="$CONFIG_FILES dssi.pc" ;;
+- "jack-dssi-host/Makefile" ) CONFIG_FILES="$CONFIG_FILES
jack-dssi-host/Makefile" ;;
+- "examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;;
+ "tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
+ "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
+ "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
+@@ -22009,31 +21669,3 @@
+
+
+ echo "* ======== DSSI ${PACKAGE_VERSION} configured ========"
+-
+-if test -z "$jack_dssi_host_needs" ; then
+- echo "* building jack-dssi-host: yes"
+-else
+- echo "* building jack-dssi-host: no
(missing$jack_dssi_host_needs)"
+-fi
+-if test -z "$dssi_osc_tools_needs" ; then
+- echo "* building DSSI OSC tools: yes"
+-else
+- echo "* building DSSI OSC tools: no
(missing$dssi_osc_tools_needs)"
+-fi
+-echo "* building trivial_synth plugin: yes"
+-echo "* building less_trivial_synth plugin: yes"
+-if test -z "$trivial_sampler_needs" ; then
+- echo "* building trivial_sampler plugin: yes"
+-else
+- echo "* building trivial_sampler plugin: no
(missing$trivial_sampler_needs)"
+-fi
+-if test -z "$less_trivial_synth_gui_needs" ; then
+- echo "* building less_trivial_synth GUI: yes"
+-else
+- echo "* building less_trivial_synth GUI: no
(missing$less_trivial_synth_gui_needs)"
+-fi
+-if test -z "$trivial_sampler_gui_needs" ; then
+- echo "* building trivial_sampler GUI: yes"
+-else
+- echo "* building trivial_sampler GUI: no
(missing$trivial_sampler_gui_needs)"
+-fi



  • [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (138923feb1c69892e77a9aba26a81ece65e0505f), Juuso Alasuutari, 07/27/2006

Archive powered by MHonArc 2.6.24.

Top of Page