Hmm, I don't know about that. Let's keep it on the list so that
others can participate in the discussion. Is this perspec message in
the latest Gem release, or just in SVN? This release of Pd-extended
will included the last release of Gem.
.hc
On Apr 1, 2009, at 6:09 PM, Matthias Neuenhofer wrote:
Hallo Hans
the gemframebuffer object miss the perpec message possibility to
change frustum of the buffer. I send the code to gem-dev list and got positive feedback. Would be
nice to have it in nightly ex :) Matthias Am 01.04.2009 um 18:52 schrieb Hans-Christoph Steiner:Hey,
I think Pd-extended 0.41.4 is basically ready to release. Before I
make a release candidate, I'd love to have some feedback on the
current nightly builds. You can find the latest successful builds
for each platform here:http://autobuild.puredata.info/auto-build/latest/
.hc
Mistrust authority - promote decentralization. - the hacker ethic
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Access to computers should be unlimited and total. - the hacker ethic
I think it went to svn via Cyrille. What to do geting the release state?
Marius posted a patch in the feedback discussion yesterday where he
mentioned inside (feedback_filter)
better quality with perspec message enable.
Matthias
Am 02.04.2009 um 00:34 schrieb Hans-Christoph Steiner:
Hmm, I don't know about that. Let's keep it on the list so that
others can participate in the discussion. Is this perspec message
in the latest Gem release, or just in SVN? This release of Pd- extended will included the last release of Gem..hc
On Apr 1, 2009, at 6:09 PM, Matthias Neuenhofer wrote:
Hallo Hans
the gemframebuffer object miss the perpec message possibility to
change frustum of the buffer. I send the code to gem-dev list and got positive feedback. Would be
nice to have it in nightly ex :) Matthias Am 01.04.2009 um 18:52 schrieb Hans-Christoph Steiner:Hey,
I think Pd-extended 0.41.4 is basically ready to release. Before
I make a release candidate, I'd love to have some feedback on the
current nightly builds. You can find the latest successful builds
for each platform here:http://autobuild.puredata.info/auto-build/latest/
.hc
Mistrust authority - promote decentralization. - the hacker ethic
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Access to computers should be unlimited and total. - the hacker ethic
Hi, Has anyone been able install iemguts objects on windows xp? I tried using the guide for compiling externals with mingw that was posted here some time ago, but after putting the dll files in the extra folder, I get an error like "couldn't load propertybang" and the object isn't created. I've tried both pd 0.42-4 and pd-ext 0.41-4 to no avail. There are no errors when compiling and linking.
Thanks, Jonathan
Jonathan Wilkes wrote:
Hi, Has anyone been able install iemguts objects on windows xp?
some objects of iemguts might rely on interal functions of Pd which are not exported properly. this might make them not available on w32.
I tried using the guide for compiling externals with mingw that was posted here some time ago, but after putting the dll files in the extra folder, I get an error like "couldn't load propertybang" and the object isn't created. I've tried both pd 0.42-4 and pd-ext 0.41-4 to no avail. There are no errors when compiling and linking.
but propertybang should work fine iirc (that is: it shouldn't be one of the special cases mentioned above)
i never tried to compile iemguts on w32.
fgmadr IOhannes
Hi Jonathan,
i have it done quite a while ago - cant remember how exactly :( (did you use the right sources?) http://www.sendspace.com/file/rrxgh9 (the dlls) i attached my makefile it compiles every file in the directory (not nice but works ok). hope it helps. g.
Jonathan Wilkes schrieb:
Hi, Has anyone been able install iemguts objects on windows xp? I tried using the guide for compiling externals with mingw that was posted here some time ago, but after putting the dll files in the extra folder, I get an error like "couldn't load propertybang" and the object isn't created. I've tried both pd 0.42-4 and pd-ext 0.41-4 to no avail. There are no errors when compiling and linking.
Thanks, Jonathan
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
# we want to compile all C-files we find in the current directory SOURCES=$(sort $(filter %.c, $(wildcard *.c))) # each C-files maps will become an external with the given filename-extension TARGETS=$(SOURCES:.c=.dll)
NAME = helloworld CSYM = helloworld
current: pd_win
DEST = "."
PDPATH = "." LDFLAGS = --export-dynamic -shared --enable -auto-import
# ----------------------- WIN i386 -----------------------
pd_win: $(TARGETS)
.SUFFIXES: .dll
#LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer
# -Wall -W -Wshadow -Wstrict-prototypes -Werror
# -Wno-unused -Wno-parentheses -Wno-switch
WINCFLAGS = -DPD -DNT -W3 -WX -Werror -Wno-unused -mms-bitfields
-Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer
#WININCLUDE = -I../include WININCLUDE = -I.
.c.dll: gcc $(WINCFLAGS) $(WININCLUDE) -c -o $*.o $*.c gcc $(LDFLAGS) -o $*.dll $*.o pd.dll strip --strip-unneeded $*.dll rm -f $*.o # ... ../$*.dll #cp $*.dll $(DEST)
clean: rm -f $*.o $(TARGETS).dll
#install: # cp $(TARGETS).dll $(DEST)
Thanks, Georg. Those dll's work fine. However, if I try to compile using your Makefile, I get these errors: wildcard: command not found filter: command not found
This is with mingw 5.1.4
-Jonathan
--- On Thu, 4/2/09, Georg Werner georg@fricklr.de wrote:
From: Georg Werner georg@fricklr.de Subject: Re: [PD] iemguts on windows To: "PD-List" pd-list@iem.at Date: Thursday, April 2, 2009, 8:11 PM Hi Jonathan,
i have it done quite a while ago - cant remember how exactly :( (did you use the right sources?) http://www.sendspace.com/file/rrxgh9 (the dlls) i attached my makefile it compiles every file in the directory (not nice but works ok). hope it helps. g.
Jonathan Wilkes schrieb:
Hi, Has anyone been able install iemguts objects on
windows xp? I tried using the guide for compiling externals with mingw that was posted here some time ago, but after putting the dll files in the extra folder, I get an error like "couldn't load propertybang" and the object isn't created. I've tried both pd 0.42-4 and pd-ext 0.41-4 to no avail. There are no errors when compiling and linking.
Thanks, Jonathan
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management ->
http://lists.puredata.info/listinfo/pd-list
# we want to compile all C-files we find in the current directory SOURCES=$(sort $(filter %.c, $(wildcard *.c))) # each C-files maps will become an external with the given filename-extension TARGETS=$(SOURCES:.c=.dll)
NAME = helloworld CSYM = helloworld
current: pd_win
DEST = "."
PDPATH = "." LDFLAGS = --export-dynamic -shared --enable -auto-import
# ----------------------- WIN i386 -----------------------
pd_win: $(TARGETS)
.SUFFIXES: .dll
#LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer
# -Wall -W -Wshadow -Wstrict-prototypes -Werror
# -Wno-unused -Wno-parentheses -Wno-switch WINCFLAGS = -DPD -DNT -W3 -WX -Werror -Wno-unused -mms-bitfields
-Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer#WININCLUDE = -I../include WININCLUDE = -I.
.c.dll: gcc $(WINCFLAGS) $(WININCLUDE) -c -o $*.o $*.c gcc $(LDFLAGS) -o $*.dll $*.o pd.dll strip --strip-unneeded $*.dll rm -f $*.o # ... ../$*.dll #cp $*.dll $(DEST)
clean: rm -f $*.o $(TARGETS).dll
#install: # cp $(TARGETS).dll $(DEST) _______________________________________________ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
have you installed msys? i'm using mingw 5.1.4, too. g.
Yes, I have msys installed. Would it make a difference where pd is installed?
-Jonathan
--- On Fri, 4/3/09, Georg Werner georg@fricklr.de wrote:
From: Georg Werner georg@fricklr.de Subject: Re: [PD] iemguts on windows To: "PD-List" pd-list@iem.at Date: Friday, April 3, 2009, 2:21 PM have you installed msys? i'm using mingw 5.1.4, too. g.
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Jonathan Wilkes wrote:
Yes, I have msys installed. Would it make a difference where pd is installed?
no not at all. the makefile uses "filter" and "wildcard" commands, which iirc, are built into Gnu make. your version of make doesn't recognize them and tries to execute commands of the very names. unfortunately it cannot find these commands in your path, thus the errors.
fgamsdr IOhannes
hi,
@iohannes: thanks for the hint: i also installed automake and autoconf @jonathan: see http://www.mingw.org/wiki/MSYS g.
IOhannes m zmoelnig:
Jonathan Wilkes wrote:
Yes, I have msys installed. Would it make a difference where pd is installed?
no not at all. the makefile uses "filter" and "wildcard" commands, which iirc, are built into Gnu make. your version of make doesn't recognize them and tries to execute commands of the very names. unfortunately it cannot find these commands in your path, thus the errors.
fgamsdr IOhannes
Its probably worthwhile to setup the whole Pd build system for Mingw
if you are going to do much compiling:
http://puredata.info/docs/developer/mingw
We are sorely in need of some Windows developers. I currently do the
maintenance, but literally the only time I use Windows is to fix the
Pd Windows builds, so I am not really the best candidate.
.hc
On Apr 6, 2009, at 2:53 AM, Georg Werner wrote:
hi,
@iohannes: thanks for the hint: i also installed automake and autoconf @jonathan: see http://www.mingw.org/wiki/MSYS g.
IOhannes m zmoelnig:
Jonathan Wilkes wrote:
Yes, I have msys installed. Would it make a difference where pd is installed?
no not at all. the makefile uses "filter" and "wildcard" commands, which iirc, are built into Gnu make. your version of make doesn't recognize them and tries to execute commands of the very names. unfortunately it cannot find these commands in your path, thus the
errors. fgamsdr IOhannes
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
'You people have such restrictive dress for women,’ she said, hobbling
away in three inch heels and panty hose to finish out another pink-
collar temp pool day. - “Hijab Scene #2", by Mohja Kahf
Matthias Neuenhofer wrote:
I think it went to svn via Cyrille. What to do geting the release state?
ask :-)
answer: no, it's not yet in an officially released version of Gem. what to do with it? make a Gem release and include it? this will most likely stall the Pd-extended release-candidate.
fgmaft IOhannes
On Apr 2, 2009, at 10:09 AM, IOhannes m zmoelnig wrote:
Matthias Neuenhofer wrote:
I think it went to svn via Cyrille. What to do geting the release
state?ask :-)
answer: no, it's not yet in an officially released version of Gem. what to do with it? make a Gem release and include it? this will most likely stall the
Pd-extended release-candidate.
Let's get this one released, then get a new Gem build included. One
the release is done, then we can switch the nightly builds of Gem to
trunk.
.hc
fgmaft IOhannes
I spent 33 years and four months in active military service and during
that period I spent most of my time as a high class muscle man for Big
Business, for Wall Street and the bankers. - General Smedley Butler
Matthias Neuenhofer wrote:
I think it went to svn via Cyrille. What to do geting the release state? Marius posted a patch in the feedback discussion yesterday where he mentioned inside (feedback_filter) better quality with perspec message enable. Matthias
pdx is using the 0.91.3 version, which is the last Gem release, whereas the perspec message is only supported by the newer trunk version from svn. marius.
Am 02.04.2009 um 00:34 schrieb Hans-Christoph Steiner:
Hmm, I don't know about that. Let's keep it on the list so that others can participate in the discussion. Is this perspec message in the latest Gem release, or just in SVN? This release of Pd-extended will included the last release of Gem.
.hc
On Apr 1, 2009, at 6:09 PM, Matthias Neuenhofer wrote:
Hallo Hans
the gemframebuffer object miss the perpec message possibility to change frustum of the buffer. I send the code to gem-dev list and got positive feedback. Would be nice to have it in nightly ex :) Matthias Am 01.04.2009 um 18:52 schrieb Hans-Christoph Steiner:
Hey,
I think Pd-extended 0.41.4 is basically ready to release. Before I make a release candidate, I'd love to have some feedback on the current nightly builds. You can find the latest successful builds for each platform here:
http://autobuild.puredata.info/auto-build/latest/
.hc
Mistrust authority - promote decentralization. - the hacker ethic
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Access to computers should be unlimited and total. - the hacker ethic
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list