[CSOUND-DEV:3697] gcvt
Date | 2003-12-07 18:28 |
From | jpff@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 |
Date | 2003-12-07 18:38 |
From | Richard 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 > > |
Date | 2003-12-07 23:36 |
From | ramsdell@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 |