From ce301f0f5ccd9bc6591d43432436a95f1aa30dbd Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Sun, 20 Mar 2016 20:35:33 -0400 Subject: [PATCH] first attempt at pointing pd to the nw app in Windows --- pd/src/s_inter.c | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/pd/src/s_inter.c b/pd/src/s_inter.c index 52f9d217b..b167078e6 100644 --- a/pd/src/s_inter.c +++ b/pd/src/s_inter.c @@ -1398,18 +1398,22 @@ fprintf(stderr, "guidir is %s\n", guidir); the libdir. */ /* fprintf(stderr, "%s\n", sys_libdir->s_name); */ - strcpy(scriptbuf, "\""); - strcat(scriptbuf, sys_libdir->s_name); - strcat(scriptbuf, "/" PDBINDIR "pd.tk\""); + //strcpy(scriptbuf, "\""); + //strcat(scriptbuf, sys_libdir->s_name); + //strcat(scriptbuf, "/" PDBINDIR "pd.tk\""); + //sys_bashfilename(scriptbuf, scriptbuf); + + strcpy(scriptbuf, sys_libdir->s_name); + strcat(scriptbuf, "/" PDBINDIR); sys_bashfilename(scriptbuf, scriptbuf); - - sprintf(portbuf, "%d", portno); + + sprintf(portbuf, "%d", portno); strcpy(wishbuf, sys_libdir->s_name); - strcat(wishbuf, "/" PDBINDIR WISHAPP); + strcat(wishbuf, "/" PDBINDIR "nw/nw"); sys_bashfilename(wishbuf, wishbuf); - - spawnret = _spawnl(P_NOWAIT, wishbuf, WISHAPP, scriptbuf, portbuf, 0); + + spawnret = _spawnl(P_NOWAIT, wishbuf, "pd-nw", scriptbuf, portbuf, 0); if (spawnret < 0) { perror("spawnl"); -- GitLab