If you’re tyring to build from the current git master, you’ll be out of luck.
Try my autotools_updates branch:
git clone https://github.com/pure-data/pure-data.git -b autotools_updates cd pure-data ./configure make make app
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On May 17, 2016, at 10:43 PM, pd-list-request@lists.iem.at wrote:
From: Alexandre Torres Porres <porres@gmail.com mailto:porres@gmail.com> Subject: Re: [PD] help compiling vanilla on mac Date: May 17, 2016 at 9:43:42 PM MDT To: pd-lista puredata <pd-list@iem.at mailto:pd-list@iem.at>
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
Oh, don’t forget the autogen before configure, since this isn’t a dist tarball.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On May 18, 2016, at 12:48 AM, Dan Wilcox danomatika@gmail.com wrote:
If you’re tyring to build from the current git master, you’ll be out of luck.
Try my autotools_updates branch:
git clone https://github.com/pure-data/pure-data.git https://github.com/pure-data/pure-data.git -b autotools_updates cd pure-data ./configure make make app
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On May 17, 2016, at 10:43 PM, pd-list-request@lists.iem.at mailto:pd-list-request@lists.iem.at wrote:
From: Alexandre Torres Porres <porres@gmail.com mailto:porres@gmail.com> Subject: Re: [PD] help compiling vanilla on mac Date: May 17, 2016 at 9:43:42 PM MDT To: pd-lista puredata <pd-list@iem.at mailto:pd-list@iem.at>
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
Hi Alex.
I manage to compile properly Vanilla on OS X using Dan autotools update. So, I suggest you to give a try with it. Follow the Dan command:
git clone https://github.com/pure-data/pure-data.git -b autotools_updates
cd pure-data ./configure make make app
With ./configure --help you get more option.
Best regards,
Marco
2016-05-18 8:49 GMT+02:00 Dan Wilcox danomatika@gmail.com:
Oh, don’t forget the autogen before configure, since this isn’t a dist tarball.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com robotcowboy.com
On May 18, 2016, at 12:48 AM, Dan Wilcox danomatika@gmail.com wrote:
If you’re tyring to build from the current git master, you’ll be out of luck.
Try my autotools_updates branch:
git clone https://github.com/pure-data/pure-data.git -b autotools_updates cd pure-data ./configure make make app
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com robotcowboy.com
On May 17, 2016, at 10:43 PM, pd-list-request@lists.iem.at wrote:
*From: *Alexandre Torres Porres porres@gmail.com *Subject: **Re: [PD] help compiling vanilla on mac* *Date: *May 17, 2016 at 9:43:42 PM MDT *To: *pd-lista puredata pd-list@iem.at
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
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
2016-05-18 6:28 GMT-03:00 Marco Matteo Markidis mm.markidis@gmail.com:
Hi Alex.
I manage to compile properly Vanilla on OS X using Dan autotools update.
as I just posted, I almost got it 100% - what is your OS?
2016-05-18 3:48 GMT-03:00 Dan Wilcox danomatika@gmail.com:
If you’re tyring to build from the current git master, you’ll be out of luck.
it's from the latest available source from miller's site, seems like i cant manage some dependencies yet
Right, and what I mean by “you’ll be out of luck” is that you currently cannot build on OSX using the git master from Miller’s site.
You need to use my branch which has the last month’s worth of improvements. After some testing all around (hopefully), then we’ll look at merging that into the master branch upstream.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On May 18, 2016, at 12:23 PM, Alexandre Torres Porres porres@gmail.com wrote:
2016-05-18 3:48 GMT-03:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: If you’re tyring to build from the current git master, you’ll be out of luck.
it's from the latest available source from miller's site, seems like i cant manage some dependencies yet
On 05/18/2016 09:09 PM, Dan Wilcox wrote:
Right, and what I mean by “you’ll be out of luck” is that you currently cannot build on OSX using the git master from Miller’s site.
please don't spread fud. obviously someone was able to build on OSX using the git master, since there are binaries available on miller's site.
You need to use my branch which has the last month’s worth of improvements. After some testing all around (hopefully), then we’ll look at merging that into the master branch upstream.
so the problem really is, that OSX El Capitan has deprecated some functions currently used by PortAudio (thus creating a warning whenever such a function is used) and the compilation process treats warnings as errors (thus failing on the use of deprecated functions).
you have three choices to fix this:
release
something like the following should work (though i haven't tested it):
./configure CFLAGS="-Wno-deprecated -Wno-error" make
apart from that, i think that your branch of autotools improvements is just great (and it *does* fix the problem in question, by adding these flags to the build by default)
gmasdr IOhannes
2016-05-18 18:31 GMT-03:00 IOhannes m zmölnig zmoelnig@iem.at:
something like the following should work (though i haven't tested it):
./configure CFLAGS="-Wno-deprecated -Wno-error" make
did it;
still get same erros
*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
... so I guess it can't be done on your system. (I'm using 10.6 to compile. I always keep my MacOS as old as I possibly can so that when I compile Pd it can run on the widest possible number of machines.)
But perhaps you can add teh -Wno-deprecated -Wno-error C compiler flags to makefile.mac and get away with it anyhow...?
cheers M
On Wed, May 18, 2016 at 10:30:05PM -0300, Alexandre Torres Porres wrote:
2016-05-18 18:31 GMT-03:00 IOhannes m zmölnig zmoelnig@iem.at:
something like the following should work (though i haven't tested it):
./configure CFLAGS="-Wno-deprecated -Wno-error" make
did it;
still get same erros
*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
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
2016-05-18 3:48 GMT-03:00 Dan Wilcox danomatika@gmail.com:
If you’re tyring to build from the current git master, you’ll be out of luck.
Try my autotools_updates branch:
ok, so i did it... followed these steps:
git clone https://github.com/pure-data/pure-data.git -b autotools_updates cd pure-data ./autogen.sh ./configure make make app
and... voilá... got me a compiled pd app!
but then, it does crash when i try to add an object, haha
well... I'll just wait until things get merged into miller's git master and get more stable ;)
thanks!
Crash?
Try using the built in Wish:
cd mac ./osx-app.sh -i 0.47-0
That will make Pd-0.47-0 in the mac directory using the older Tk 8.4 Wish you can try.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On May 18, 2016, at 7:57 PM, Alexandre Torres Porres porres@gmail.com wrote:
2016-05-18 3:48 GMT-03:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: If you’re tyring to build from the current git master, you’ll be out of luck.
Try my autotools_updates branch:
ok, so i did it... followed these steps:
git clone https://github.com/pure-data/pure-data.git https://github.com/pure-data/pure-data.git -b autotools_updates cd pure-data ./autogen.sh ./configure make make app
and... voilá... got me a compiled pd app!
but then, it does crash when i try to add an object, haha
well... I'll just wait until things get merged into miller's git master and get more stable ;)
thanks!
2016-05-18 22:59 GMT-03:00 Dan Wilcox danomatika@gmail.com:
Crash?
Try using the built in Wish:
cd mac ./osx-app.sh -i 0.47-0
you've lost me right there :) - well, I'll just wait a little, this is not urgent right now - but I have plans to get better at this and hopefully be able to send simple pull requests ;)
cheers
“osx-app.sh” is a srcipt I wrote to automate building the Pd .app bundle. The -i option tells it to use the included version of the Tk 8.4 Wish.app. I think that may work for you, so that set of commands tells you how to try building manually. The “make app” command runs this script but uses the latest Tk on you system which may not be fully working yet.
(I have another branch where I’m ironing out the new Tk issues on OSX).
The main thing is, you need to change directory in the pure-data/mac directory inside the pure-data folder.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On May 18, 2016, at 8:09 PM, Alexandre Torres Porres porres@gmail.com wrote:
2016-05-18 22:59 GMT-03:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: Crash?
Try using the built in Wish:
cd mac ./osx-app.sh -i 0.47-0
you've lost me right there :) - well, I'll just wait a little, this is not urgent right now - but I have plans to get better at this and hopefully be able to send simple pull requests ;)
cheers
Oi. Sorry for the sudden flood of emails. Going out the door to a red-eye flight to Moogfest. :)
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On May 18, 2016, at 8:12 PM, Dan Wilcox danomatika@gmail.com wrote:
“osx-app.sh” is a srcipt I wrote to automate building the Pd .app bundle. The -i option tells it to use the included version of the Tk 8.4 Wish.app. I think that may work for you, so that set of commands tells you how to try building manually. The “make app” command runs this script but uses the latest Tk on you system which may not be fully working yet.
(I have another branch where I’m ironing out the new Tk issues on OSX).
The main thing is, you need to change directory in the pure-data/mac directory inside the pure-data folder.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
On May 18, 2016, at 8:09 PM, Alexandre Torres Porres <porres@gmail.com mailto:porres@gmail.com> wrote:
2016-05-18 22:59 GMT-03:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: Crash?
Try using the built in Wish:
cd mac ./osx-app.sh -i 0.47-0
you've lost me right there :) - well, I'll just wait a little, this is not urgent right now - but I have plans to get better at this and hopefully be able to send simple pull requests ;)
cheers
Hi Alex,
I have Yosemite (10.10.5).
Best regards,
Marco
2016-05-19 4:15 GMT+02:00 Dan Wilcox danomatika@gmail.com:
Oi. Sorry for the sudden flood of emails. Going out the door to a red-eye flight to Moogfest. :)
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com robotcowboy.com
On May 18, 2016, at 8:12 PM, Dan Wilcox danomatika@gmail.com wrote:
“osx-app.sh” is a srcipt I wrote to automate building the Pd .app bundle. The -i option tells it to use the included version of the Tk 8.4 Wish.app. I think that may work for you, so that set of commands tells you how to try building manually. The “make app” command runs this script but uses the latest Tk on you system which may not be fully working yet.
(I have another branch where I’m ironing out the new Tk issues on OSX).
The main thing is, you need to change directory in the pure-data/mac directory inside the pure-data folder.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com robotcowboy.com
On May 18, 2016, at 8:09 PM, Alexandre Torres Porres porres@gmail.com wrote:
2016-05-18 22:59 GMT-03:00 Dan Wilcox danomatika@gmail.com:
Crash?
Try using the built in Wish:
cd mac ./osx-app.sh -i 0.47-0
you've lost me right there :) - well, I'll just wait a little, this is not urgent right now - but I have plans to get better at this and hopefully be able to send simple pull requests ;)
cheers
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
El Capitan here... maybe that's enough of a difference to make my system crash :P
2016-05-19 6:34 GMT-03:00 Marco Matteo Markidis mm.markidis@gmail.com:
Hi Alex,
I have Yosemite (10.10.5).
Best regards,
Marco
2016-05-19 4:15 GMT+02:00 Dan Wilcox danomatika@gmail.com:
Oi. Sorry for the sudden flood of emails. Going out the door to a red-eye flight to Moogfest. :)
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com robotcowboy.com
On May 18, 2016, at 8:12 PM, Dan Wilcox danomatika@gmail.com wrote:
“osx-app.sh” is a srcipt I wrote to automate building the Pd .app bundle. The -i option tells it to use the included version of the Tk 8.4 Wish.app. I think that may work for you, so that set of commands tells you how to try building manually. The “make app” command runs this script but uses the latest Tk on you system which may not be fully working yet.
(I have another branch where I’m ironing out the new Tk issues on OSX).
The main thing is, you need to change directory in the pure-data/mac directory inside the pure-data folder.
Dan Wilcox @danomatika https://twitter.com/danomatika danomatika.com robotcowboy.com
On May 18, 2016, at 8:09 PM, Alexandre Torres Porres porres@gmail.com wrote:
2016-05-18 22:59 GMT-03:00 Dan Wilcox danomatika@gmail.com:
Crash?
Try using the built in Wish:
cd mac ./osx-app.sh -i 0.47-0
you've lost me right there :) - well, I'll just wait a little, this is not urgent right now - but I have plans to get better at this and hopefully be able to send simple pull requests ;)
cheers
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
2016-05-18 3:48 GMT-03:00 Dan Wilcox danomatika@gmail.com:
If you’re tyring to build from the current git master, you’ll be out of luck.
hey, am I still out of luck? Has this "autotools" thing been merged?
I wanna try some stuff and build vanilla here on my fork https://github.com/porres/pure-data
can someone please give me the basic steps again, as I dont remember them - as I just really remember hitting many walls
thanks cheers
You are still out of luck, yes.
The auto tools update is not finished on Windows. This is one reason why I didn’t want it merged yet, but alas it has been merged and sometimes that’s how it is.
I will update the build readme with instructions when I do get it working…
Sorry everything is not perfect, maybe I should start a Patreon page...
On Feb 14, 2017, at 1:34 PM, Alexandre Torres Porres porres@gmail.com wrote:
2016-05-18 3:48 GMT-03:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: If you’re tyring to build from the current git master, you’ll be out of luck.
hey, am I still out of luck? Has this "autotools" thing been merged?
I wanna try some stuff and build vanilla here on my fork https://github.com/porres/pure-data https://github.com/porres/pure-data
can someone please give me the basic steps again, as I dont remember them - as I just really remember hitting many walls
thanks cheers
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
well, now that i got a linux machine, I can try there then...
but hey, it's still possible to compile vanilla on mac os, it's just not merged yet, right? couldn't I just use the unmerged stuff?
cheers
2017-02-14 18:39 GMT-02:00 Dan Wilcox danomatika@gmail.com:
You are still out of luck, yes.
The auto tools update is not finished on Windows. This is one reason why I didn’t want it merged yet, but alas it has been merged and sometimes that’s how it is.
I will update the build readme with instructions when I do get it working…
Sorry everything is not perfect, maybe I should start a Patreon page...
On Feb 14, 2017, at 1:34 PM, Alexandre Torres Porres porres@gmail.com wrote:
2016-05-18 3:48 GMT-03:00 Dan Wilcox danomatika@gmail.com:
If you’re tyring to build from the current git master, you’ll be out of luck.
hey, am I still out of luck? Has this "autotools" thing been merged?
I wanna try some stuff and build vanilla here on my fork https://github.com/porres/pure-data
can someone please give me the basic steps again, as I dont remember them
- as I just really remember hitting many walls
thanks cheers
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com robotcowboy.com
Building on Linux and macOS works fine.
On Feb 14, 2017, at 5:43 PM, Alexandre Torres Porres porres@gmail.com wrote:
well, now that i got a linux machine, I can try there then...
but hey, it's still possible to compile vanilla on mac os, it's just not merged yet, right? couldn't I just use the unmerged stuff?
cheers
2017-02-14 18:39 GMT-02:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: You are still out of luck, yes.
The auto tools update is not finished on Windows. This is one reason why I didn’t want it merged yet, but alas it has been merged and sometimes that’s how it is.
I will update the build readme with instructions when I do get it working…
Sorry everything is not perfect, maybe I should start a Patreon page...
On Feb 14, 2017, at 1:34 PM, Alexandre Torres Porres <porres@gmail.com mailto:porres@gmail.com> wrote:
2016-05-18 3:48 GMT-03:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: If you’re tyring to build from the current git master, you’ll be out of luck.
hey, am I still out of luck? Has this "autotools" thing been merged?
I wanna try some stuff and build vanilla here on my fork https://github.com/porres/pure-data https://github.com/porres/pure-data
can someone please give me the basic steps again, as I dont remember them - as I just really remember hitting many walls
thanks cheers
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
well, ok then, I can try it, but where is it?
I tried git clone https://github.com/pure-data/pure-data.git -b autotools_updates
and couldn't find it
2017-02-14 22:45 GMT-02:00 Dan Wilcox danomatika@gmail.com:
Building on Linux and macOS works fine.
On Feb 14, 2017, at 5:43 PM, Alexandre Torres Porres porres@gmail.com wrote:
well, now that i got a linux machine, I can try there then...
but hey, it's still possible to compile vanilla on mac os, it's just not merged yet, right? couldn't I just use the unmerged stuff?
cheers
2017-02-14 18:39 GMT-02:00 Dan Wilcox danomatika@gmail.com:
You are still out of luck, yes.
The auto tools update is not finished on Windows. This is one reason why I didn’t want it merged yet, but alas it has been merged and sometimes that’s how it is.
I will update the build readme with instructions when I do get it working…
Sorry everything is not perfect, maybe I should start a Patreon page...
On Feb 14, 2017, at 1:34 PM, Alexandre Torres Porres porres@gmail.com wrote:
2016-05-18 3:48 GMT-03:00 Dan Wilcox danomatika@gmail.com:
If you’re tyring to build from the current git master, you’ll be out of luck.
hey, am I still out of luck? Has this "autotools" thing been merged?
I wanna try some stuff and build vanilla here on my fork https://github.com/porres/pure-data
can someone please give me the basic steps again, as I dont remember them
- as I just really remember hitting many walls
thanks cheers
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com robotcowboy.com
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com robotcowboy.com
The autotools_udpates branch has been merged, which means all the commits it had are now in the master branch. After the merge it was deleted.
This means just checkout the master branch: git clone https://github.com/pure-data/pure-data.git https://github.com/pure-data/pure-data.git
On Feb 14, 2017, at 9:16 PM, Alexandre Torres Porres porres@gmail.com wrote:
well, ok then, I can try it, but where is it?
I tried git clone https://github.com/pure-data/pure-data.git https://github.com/pure-data/pure-data.git -b autotools_updates
and couldn't find it
2017-02-14 22:45 GMT-02:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: Building on Linux and macOS works fine.
On Feb 14, 2017, at 5:43 PM, Alexandre Torres Porres <porres@gmail.com mailto:porres@gmail.com> wrote:
well, now that i got a linux machine, I can try there then...
but hey, it's still possible to compile vanilla on mac os, it's just not merged yet, right? couldn't I just use the unmerged stuff?
cheers
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
then I'm in luck after all :)
cool, just trying now what that [midiclkin] object is supposed to do ;)
thanks!
2017-02-15 2:17 GMT-02:00 Dan Wilcox danomatika@gmail.com:
The autotools_udpates branch has been merged, which means all the commits it had are now in the master branch. After the merge it was deleted.
This means just checkout the master branch: git clone https://github.com/pure-data/pure-data.git
On Feb 14, 2017, at 9:16 PM, Alexandre Torres Porres porres@gmail.com wrote:
well, ok then, I can try it, but where is it?
I tried git clone https://github.com/pure-data/pure-data.git -b autotools_updates
and couldn't find it
2017-02-14 22:45 GMT-02:00 Dan Wilcox danomatika@gmail.com:
Building on Linux and macOS works fine.
On Feb 14, 2017, at 5:43 PM, Alexandre Torres Porres porres@gmail.com wrote:
well, now that i got a linux machine, I can try there then...
but hey, it's still possible to compile vanilla on mac os, it's just not merged yet, right? couldn't I just use the unmerged stuff?
cheers
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com robotcowboy.com
There is currently a bug in the script that creates the mac .app. Use the following after building pd to generate the .app instead:
cd mac osx-app.sh -i 0.47.1
On Feb 14, 2017, at 9:30 PM, Alexandre Torres Porres porres@gmail.com wrote:
then I'm in luck after all :)
cool, just trying now what that [midiclkin] object is supposed to do ;)
thanks!
2017-02-15 2:17 GMT-02:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: The autotools_udpates branch has been merged, which means all the commits it had are now in the master branch. After the merge it was deleted.
This means just checkout the master branch: git clone https://github.com/pure-data/pure-data.git https://github.com/pure-data/pure-data.git
On Feb 14, 2017, at 9:16 PM, Alexandre Torres Porres <porres@gmail.com mailto:porres@gmail.com> wrote:
well, ok then, I can try it, but where is it?
I tried git clone https://github.com/pure-data/pure-data.git https://github.com/pure-data/pure-data.git -b autotools_updates
and couldn't find it
2017-02-14 22:45 GMT-02:00 Dan Wilcox <danomatika@gmail.com mailto:danomatika@gmail.com>: Building on Linux and macOS works fine.
On Feb 14, 2017, at 5:43 PM, Alexandre Torres Porres <porres@gmail.com mailto:porres@gmail.com> wrote:
well, now that i got a linux machine, I can try there then...
but hey, it's still possible to compile vanilla on mac os, it's just not merged yet, right? couldn't I just use the unmerged stuff?
cheers
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/
Dan Wilcox @danomatika http://twitter.com/danomatika danomatika.com http://danomatika.com/ robotcowboy.com http://robotcowboy.com/