howdy, would a dear friend guide me though all steps in compiling vanilla on a mac. I need a good soul who can walk me through all the walls I hit.
And I hit a wall with the first thing I did... I tried ./autogen.sh and got ./autogen.sh: line 22: autoreconf: command not found
then I tried to see how to use makefile.mac and just couldn't do it
thanks
so, i installed homebrew, autoconf and aclocal, was able to run ./autogen.sh now, trying *./configure*, I get
./configure: line 16002: syntax error near unexpected token `JACK,'
./configure: line 16002: ` PKG_CHECK_MODULES(JACK, jack, have_jack=yes, have_jack=no)'
*configure: error: ./configure failed for portaudio*
I get the same if i try: ./configure --enable-jack
so, is this an error in the source?
cheers
2016-05-17 22:02 GMT-03:00 Alexandre Torres Porres porres@gmail.com:
howdy, would a dear friend guide me though all steps in compiling vanilla on a mac. I need a good soul who can walk me through all the walls I hit.
And I hit a wall with the first thing I did... I tried ./autogen.sh and got ./autogen.sh: line 22: autoreconf: command not found
then I tried to see how to use makefile.mac and just couldn't do it
thanks
running make in 'src' gives me:
make: *** No rule to make target ../portaudio/lib/libportaudio.la', needed by
pd'. Stop.
2016-05-18 0:43 GMT-03:00 Alexandre Torres Porres porres@gmail.com:
so, i installed homebrew, autoconf and aclocal, was able to run ./autogen.sh now, trying *./configure*, I get
./configure: line 16002: syntax error near unexpected token `JACK,'
./configure: line 16002: ` PKG_CHECK_MODULES(JACK, jack, have_jack=yes, have_jack=no)'
*configure: error: ./configure failed for portaudio*
I get the same if i try: ./configure --enable-jack
so, is this an error in the source?
cheers
2016-05-17 22:02 GMT-03:00 Alexandre Torres Porres porres@gmail.com:
howdy, would a dear friend guide me though all steps in compiling vanilla on a mac. I need a good soul who can walk me through all the walls I hit.
And I hit a wall with the first thing I did... I tried ./autogen.sh and got ./autogen.sh: line 22: autoreconf: command not found
then I tried to see how to use makefile.mac and just couldn't do it
thanks
On 05/18/2016 05:43 AM, Alexandre Torres Porres wrote:
so, i installed homebrew, autoconf and aclocal, was able to run ./autogen.sh now,
i'm sure you got a big fat warning when running autogen.sh
[...]
./configure: line 16002: ` PKG_CHECK_MODULES(JACK, jack, have_jack=yes, have_jack=no)'
[...]
so, is this an error in the source?
no
you are missing a few more packages, namely "pkg-config" and "gettext" (you haven't hit the latter yet). maybe more...
gfmadr IOhannes
PS: write down your findings and once you have managed to build, submit an updated documentation...
yep, added those dependencies and wnet through configure!!!
now hit a wall with a couple of errors during "make" :P so i guess it stopeed and didnt go through
*src/hostapi/coreaudio/pa_mac_core_utilities.c:152:10: **error: *
'kAudioUnitErr_IllegalInstrument' is deprecated*
[-Werror,-Wdeprecated-declarations]*
case kAudioUnitErr_IllegalInstrument:
^*
*/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h:1633:2: note: *
'kAudioUnitErr_IllegalInstrument' has been explicitly marked
deprecated
here
kAudioUnitErr_IllegalInstrument = -10873,
^*
*src/hostapi/coreaudio/pa_mac_core_utilities.c:155:10: **error: *
'kAudioUnitErr_InstrumentTypeNotFound' is deprecated*
[-Werror,-Wdeprecated-declarations]*
case kAudioUnitErr_InstrumentTypeNotFound:
^*
*/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h:1634:2: note: *
'kAudioUnitErr_InstrumentTypeNotFound' has been explicitly marked
deprecated here
kAudioUnitErr_InstrumentTypeNotFound = -10872,
^*
2 errors generated.
make[2]: *** [src/hostapi/coreaudio/pa_mac_core_utilities.lo] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
2016-05-18 9:20 GMT-03:00 IOhannes m zmölnig zmoelnig@iem.at:
On 05/18/2016 05:43 AM, Alexandre Torres Porres wrote:
so, i installed homebrew, autoconf and aclocal, was able to run ./autogen.sh now,
i'm sure you got a big fat warning when running autogen.sh
[...]
./configure: line 16002: ` PKG_CHECK_MODULES(JACK, jack,
have_jack=yes,
have_jack=no)'
[...]
so, is this an error in the source?
no
you are missing a few more packages, namely "pkg-config" and "gettext" (you haven't hit the latter yet). maybe more...
gfmadr IOhannes
PS: write down your findings and once you have managed to build, submit an updated documentation...
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
anyway, if I try "make" from "./src", I still get the same error
make: *** No rule to make target ../portaudio/lib/libportaudio.la', needed by
pd'. Stop.
portaudio issues were present in my previous attempts with configure, but not anymore
2016-05-18 15:34 GMT-03:00 Alexandre Torres Porres porres@gmail.com:
yep, added those dependencies and wnet through configure!!!
now hit a wall with a couple of errors during "make" :P so i guess it stopeed and didnt go through
*src/hostapi/coreaudio/pa_mac_core_utilities.c:152:10: **error: *
'kAudioUnitErr_IllegalInstrument' is deprecated*
[-Werror,-Wdeprecated-declarations]*
case kAudioUnitErr_IllegalInstrument:
^*
*/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h:1633:2: note: *
'kAudioUnitErr_IllegalInstrument' has been explicitly marked
deprecated
here kAudioUnitErr_IllegalInstrument = -10873,
^*
*src/hostapi/coreaudio/pa_mac_core_utilities.c:155:10: **error: *
'kAudioUnitErr_InstrumentTypeNotFound' is deprecated*
[-Werror,-Wdeprecated-declarations]*
case kAudioUnitErr_InstrumentTypeNotFound:
^*
*/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/System/Library/Frameworks/AudioUnit.framework/Headers/AUComponent.h:1634:2: note: *
'kAudioUnitErr_InstrumentTypeNotFound' has been explicitly marked deprecated here kAudioUnitErr_InstrumentTypeNotFound = -10872,
^*
2 errors generated.
make[2]: *** [src/hostapi/coreaudio/pa_mac_core_utilities.lo] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
2016-05-18 9:20 GMT-03:00 IOhannes m zmölnig zmoelnig@iem.at:
On 05/18/2016 05:43 AM, Alexandre Torres Porres wrote:
so, i installed homebrew, autoconf and aclocal, was able to run ./autogen.sh now,
i'm sure you got a big fat warning when running autogen.sh
[...]
./configure: line 16002: ` PKG_CHECK_MODULES(JACK, jack,
have_jack=yes,
have_jack=no)'
[...]
so, is this an error in the source?
no
you are missing a few more packages, namely "pkg-config" and "gettext" (you haven't hit the latter yet). maybe more...
gfmadr IOhannes
PS: write down your findings and once you have managed to build, submit an updated documentation...
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
2016-05-18 18:14 GMT-03:00 IOhannes m zmölnig zmoelnig@iem.at:
On 05/18/2016 08:36 PM, Alexandre Torres Porres wrote:
anyway, if I try "make" from "./src", I still get the same error
i have no clue why you think that this should work. it shouldn't.
good to know... I got the idea from the text in install.txt
*Alternatively, you can use the fallback makefiles in "src"*
Just in case it helps... my own procedure is i the git repo as mac/build-macosx and ...build-mac64 .
These assum that you've built files wish-shell.tgz and Info.plist in a subdirectory "stuff". You can get these by looking inside Pd for info.plist, and by archiving a "wish Shell.app" from your system.
cheers Miller
On Wed, May 18, 2016 at 10:22:43PM -0300, Alexandre Torres Porres wrote:
2016-05-18 18:14 GMT-03:00 IOhannes m zmölnig zmoelnig@iem.at:
On 05/18/2016 08:36 PM, Alexandre Torres Porres wrote:
anyway, if I try "make" from "./src", I still get the same error
i have no clue why you think that this should work. it shouldn't.
good to know... I got the idea from the text in install.txt
*Alternatively, you can use the fallback makefiles in "src"*
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list