hello
Selon Hans-Christoph Steiner hans@at.or.at:
Hmm, I wonder what it is, I got it going on Cygwin when I tried, but haven't tried in a while.
I'm having a try right now with a fresh install of cygwin, following your tutorial:
http://puredata.info/dev/PdGuiRewrite
first message is configure.ac: not using Gettext maybe it doesn't ring a bell, but then I wonder if Gettext is necessary at the end...
I have to resolve this first:
s_inter.c:211: sigfun undeclared
well, indeed we have something that has changed in s_inter.c that doesn't fit with cygwin:
ifndef _WIN32
cygwin is both UNIX and _WIN32, so I've replaced it with
ifdef UNIX
like it was originaly
but line 898 of s_inter.c it comes a bit more complicated:
#else /* NOT _WIN32 */ if (WSAStartup(version, &nobby)) sys_sockerror("WSAstartup"); #endif /* NOT _WIN32 */
the only way I've found to get over is commenting line 898
then it builds until the end, yaha
Now, following tutorial: cd src and ./pd
an error in startup script is coming:
couldn't read file " ~/pd-gui-rewrite/src/./bin/pd-gui.tcl": no such file or directory
did I miss something?
ok, I Found how to launch pd-gui-rewrite in the list archive:
wish pd-gui.tcl
and comes a windozian error with no explanation, "pd has stopped to work",
but it works!
Now I can admire the ugly tcl/tk-8.4 GUI, in french, but with curious symbols replacing letters with accent like "é" or "ê"
Also I can see tcl plugins loaded in console, for the first time, cool...
colet.patrice@free.fr:
Now, following tutorial: cd src and ./pd
an error in startup script is coming:
couldn't read file " ~/pd-gui-rewrite/src/./bin/pd-gui.tcl": no such file or directory
did I miss something?
On Tue, 27 Oct 2009, colet.patrice@free.fr wrote:
Now I can admire the ugly tcl/tk-8.4 GUI, in french, but with curious symbols replacing letters with accent like "é" or "ê"
probably same problem on OSX... instead of é, do you see à followed by © ? if not, then it's a different problem than usual.
P.Boivin noticed it when he tried using my abstractions that use my nbsp (nonbreaking spaces) in IEMGUI labels... they appear as pairs of little squares.
_ _ __ ___ _____ ________ _____________ _____________________ ... | Mathieu Bouchard, Montréal, Québec. téléphone: +1.514.383.3801
On Oct 27, 2009, at 9:59 AM, Mathieu Bouchard wrote:
On Tue, 27 Oct 2009, colet.patrice@free.fr wrote:
Now I can admire the ugly tcl/tk-8.4 GUI, in french, but with
curious symbols replacing letters with accent like "é" or "ê"probably same problem on OSX... instead of é, do you see à followed
by © ? if not, then it's a different problem than usual.P.Boivin noticed it when he tried using my abstractions that use my
nbsp (nonbreaking spaces) in IEMGUI labels... they appear as pairs
of little squares.
Cygwin Tcl/Tk is 8.4.1, so I think there are bugs there. With Tcl 8.5
on all platforms, I get proper display of many different alphabets,
let alone accents. As for encodings, everything should use UTF-8
these days. GNU/Linux distros and Mac OS X use it as the native format
(more or less) while Windows uses something not too far off (UCS-16).
.hc
"Making boring techno music is really easy with modern tools," he
says, "but with live coding, boring techno is much harder." - Chris
McCormick
yes, "é" is "é", "É" is "Ã%๐" and "ê" is "ê"
Selon Mathieu Bouchard matju@artengine.ca:
On Tue, 27 Oct 2009, colet.patrice@free.fr wrote:
Now I can admire the ugly tcl/tk-8.4 GUI, in french, but with curious symbols replacing letters with accent like "é" or "ê"
probably same problem on OSX... instead of é, do you see à followed by © ? if not, then it's a different problem than usual.
P.Boivin noticed it when he tried using my abstractions that use my nbsp (nonbreaking spaces) in IEMGUI labels... they appear as pairs of little squares.
_ _ __ ___ _____ ________ _____________ _____________________ ... | Mathieu Bouchard, Montréal, Québec. téléphone: +1.514.383.3801
Glad you got it working. Could post a diff -uw of your changes as an
attached file?
Cygwin is not _WIN32, by the way. It is a POSIX-style API much closer
to GNU/Linux than Win32. MinGW is _WIN32 with as much POSIX/UNIX
thrown in as possible.
.hc
On Oct 27, 2009, at 8:56 AM, colet.patrice@free.fr wrote:
hello
Selon Hans-Christoph Steiner hans@at.or.at:
Hmm, I wonder what it is, I got it going on Cygwin when I tried, but haven't tried in a while.
I'm having a try right now with a fresh install of cygwin, following
your tutorial:http://puredata.info/dev/PdGuiRewrite
first message is configure.ac: not using Gettext maybe it doesn't ring a bell, but then I wonder if Gettext is
necessary at the end...I have to resolve this first:
s_inter.c:211: sigfun undeclared
well, indeed we have something that has changed in s_inter.c that
doesn't fit with cygwin:ifndef _WIN32
cygwin is both UNIX and _WIN32, so I've replaced it with
ifdef UNIX
like it was originaly
but line 898 of s_inter.c it comes a bit more complicated:
#else /* NOT _WIN32 */ if (WSAStartup(version, &nobby)) sys_sockerror("WSAstartup"); #endif /* NOT _WIN32 */
the only way I've found to get over is commenting line 898
then it builds until the end, yaha
Now, following tutorial: cd src and ./pd
an error in startup script is coming:
couldn't read file " ~/pd-gui-rewrite/src/./bin/pd-gui.tcl": no such
file or directorydid I miss something?
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Man has survived hitherto because he was too ignorant to know how to
realize his wishes. Now that he can realize them, he must either
change them, or perish. -William Carlos Williams
Selon Hans-Christoph Steiner hans@at.or.at:
Cygwin is not _WIN32, by the way. It is a POSIX-style API much closer to GNU/Linux than Win32. MinGW is _WIN32 with as much POSIX/UNIX thrown in as possible.
the compiler define both _WIN32 and UNIX preprocessor, so it's troubling...
maybe the solution is here?
On Oct 27, 2009, at 3:14 PM, colet.patrice@free.fr wrote:
Selon Hans-Christoph Steiner hans@at.or.at:
Cygwin is not _WIN32, by the way. It is a POSIX-style API much
closer to GNU/Linux than Win32. MinGW is _WIN32 with as much POSIX/UNIX thrown in as possible.the compiler define both _WIN32 and UNIX preprocessor, so it's
troubling...maybe the solution is here?
My Cygwin gcc does not define _WIN32, trying buiding this:
#ifdef _WIN32 #error this is _WIN32 #else #error this is NOT _WIN32 #endif int main(void){return 0;}
Here's what I get:
pd@windowsxp-i386 /tmp $ gcc test.c test.c:4:2: #error this is NOT _WIN32
.hc
"Making boring techno music is really easy with modern tools," he
says, "but with live coding, boring techno is much harder." - Chris
McCormick