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, [email protected] wrote:



hello

Selon Hans-Christoph Steiner <[email protected]>:

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?

_______________________________________________
[email protected] 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



_______________________________________________
[email protected] mailing list
UNSUBSCRIBE and account-management -> 
http://lists.puredata.info/listinfo/pd-list

Reply via email to