Skip to content

Instantly share code, notes, and snippets.

# project jack (1.9.11) configured on Tue Mar 1 08:42:35 2016 by
# waf 1.8.17 (abi 98, python 2070af0 on darwin)
# using ./waf configure
#
----------------------------------------
Setting top to
/Documents/jack2-github/jack2
----------------------------------------
Setting out to
/Documents/jack2-github/jack2/build
# project jack (1.9.11) configured on Tue Mar 1 08:42:35 2016 by
# waf 1.8.17 (abi 98, python 2070af0 on darwin)
# using ./waf configure
#
----------------------------------------
Setting top to
/Documents/jack2-github/jack2
----------------------------------------
Setting out to
/Documents/jack2-github/jack2/build
ADDON_DIR = '/usr/local/lib/jack'
AR = ['/opt/local/bin/llvm-ar']
ARCH_ST = ['-arch']
ARFLAGS = ['rcs']
AUTOSTART_METHOD = 'classic'
BINDIR = '/usr/local/bin'
BUILD_ADAPTER = True
BUILD_CLASSIC = False
BUILD_DEBUG = False
BUILD_DOXYGEN_DOCS = True
faust:jack2 letz$ ./waf configure
Setting top to : /Documents/jack2-github/jack2
Setting out to : /Documents/jack2-github/jack2/build
Checking for 'clang++' (C++ compiler) : /opt/local/bin/clang++
Checking for 'clang' (C compiler) : /opt/local/bin/clang
Checking for program 'doxygen' : /opt/local/bin/doxygen
Checking for program 'pkg-config' : /opt/local/bin/pkg-config
Checking for 'alsa' >= 1.0.18 : not found
Checking for 'libffado' >= 1.999.17 : not found
Checking for 'libfreebob' >= 1.0.0 : not found
faust:jack2 letz$ ./waf -vv -j1
Waf: Entering directory `/Documents/jack2-github/jack2/build'
make[1]: Entering directory `/Documents/jack2-github/jack2/build'
[ 1/243] Compiling jack.pc.in
[ 2/243] Compiling svnversion_regenerate.sh
14:29:41 runner ' /Documents/jack2-github/jack2/svnversion_regenerate.sh svnversion.h '
Generated /Documents/jack2-github/jack2/build/svnversion.h (0+1d01f8dc12b15aa79fe0cab9c2f077390ccaff90-dirty)
[ 3/243] Compiling common/Jackdmp.cpp
14:29:41 runner ['/opt/local/bin/clang++', '-Wall', '-I/Documents/jack2-github/jack2/build', '-I/Documents/jack2-github/jack2', '-I/Documents/jack2-github/jack2/build/common', '-I/Documents/jack2-github/jack2/common', '-I/Documents/jack2-github/jack2/build/common/jack', '-I/Documents/jack2-github/jack2/common/jack', '-I/Documents/jack2-github/jack2/build/macosx', '-I/Documents/jack2-github/jack2/macosx', '-I/Documents/jack2-github/jack2/build/posix', '-I/Documents/jack2-github/jack2/posix', '-I/usr/local/include/opus', '-DHAVE_DOXYGEN=1', '-DHA
/* WARNING! All changes made to this file will be lost! */
#ifndef W_CONFIG_H_WAF
#define W_CONFIG_H_WAF
#define HAVE_DOXYGEN 1
#define HAVE_ALSA 0
#define HAVE_FIREWIRE 0
#define HAVE_FREEBOB 0
#define HAVE_IIO 0
# project jack (1.9.11) configured on Thu Mar 3 14:28:32 2016 by
# waf 1.8.17 (abi 98, python 2070af0 on darwin)
# using ./waf configure
#
----------------------------------------
Setting top to
/Documents/jack2-github/jack2
----------------------------------------
Setting out to
/Documents/jack2-github/jack2/build
ADDON_DIR = '/usr/local/lib/jack'
AR = ['/opt/local/bin/llvm-ar']
ARCH_ST = ['-arch']
ARFLAGS = ['rcs']
AUTOSTART_METHOD = 'classic'
BINDIR = '/usr/local/bin'
BUILD_ADAPTER = True
BUILD_CLASSIC = False
BUILD_DEBUG = False
BUILD_DOXYGEN_DOCS = True
declare name "dbmeter";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
//-------------------------------------------------
// A dB Vumeter
//-------------------------------------------------
import("stdfaust.lib");
panSlider = hslider("Pan", 0, -1, 1, 0.01);
pan = (panSlider + 1) / 2;
gainL = cos(pan * ma.PI / 2);
gainR = sin(pan * ma.PI / 2);
panMono(input) = input <:(input * gainL, input * gainR);