Re: [PATCH build_tools/build_nativecall.pl] Fix Compile Error in src/nci.c

2004-02-11 Thread Leopold Toetsch
Chromatic [EMAIL PROTECTED] wrote:

 The recent Visual C++ warnings cleanup patch appears to have broken the
 compile on other platforms.  Here's a patch that fixes things for me.

Oops, yes - hanks, applied.
leo


[PATCH build_tools/build_nativecall.pl] Fix Compile Error in src/nci.c

2004-02-10 Thread chromatic
The recent Visual C++ warnings cleanup patch appears to have broken the
compile on other platforms.  Here's a patch that fixes things for me.

-- c


Index: build_tools/build_nativecall.pl
===
RCS file: /cvs/public/parrot/build_tools/build_nativecall.pl,v
retrieving revision 1.40
diff -u -u -r1.40 build_nativecall.pl
--- build_tools/build_nativecall.pl	10 Feb 2004 10:08:01 -	1.40
+++ build_tools/build_nativecall.pl	10 Feb 2004 22:22:10 -
@@ -243,6 +243,9 @@
  return Parrot_jit_build_call_func(interpreter, pmc_nci, signature);
 
 #else
+	STRING *ns;
+	STRING *message;
+	char   *c;
 /* And in here is the platform-independent way. Which is to say
here there be hacks */
 UNUSED(pmc_nci);