Csound Csound-dev Csound-tekno Search About

[CSOUND-DEV:3697] gcvt

Date2003-12-07 18:28
Fromjpff@codemist.co.uk
Subject[CSOUND-DEV:3697] gcvt
What is the function gcvt in widgets.cpp (csound5)?  It is not
declared on the Macintosh, and is not an ANSI C function.  I am
assuming that it should be a call to sprintf with a %g format.
==John ffitch

Date2003-12-07 18:38
FromRichard Dobson
Subject[CSOUND-DEV:3698] Re: gcvt
Its a VC++ function (unsurprisingly);

char *_gcvt( double value, int digits, char *buffer );

"Converts a floating-point value to a string, which it stores in a buffer."


Richard Dobson


jpff@codemist.co.uk wrote:
> What is the function gcvt in widgets.cpp (csound5)?  It is not
> declared on the Macintosh, and is not an ANSI C function.  I am
> assuming that it should be a call to sprintf with a %g format.
> ==John ffitch
> 
> 

Date2003-12-07 23:36
Fromramsdell@mitre.org (John D. Ramsdell)
Subject[CSOUND-DEV:3704] --enable-cygwin
I added the --enable-cygwin option to configure.ac.  To add
-mno-cygwin flags to your build, use the --enable-cygwin=no option. 

On Cygwin, I placed $HOME/opt/bin on my PATH, and configured csound
with 

$ ./configure --prefix=$HOME/opt --enable-windows=no

After a make and an install, I configured wxcsound with

$ ./configure --prefix=$HOME/opt

A make and an install builds wxCsound.  The process even inserted the
windows resources into wxcsound.

The same set of steps works on MinGW.

John