search for: getopt_win

Displaying 5 results from an estimated 5 matches for "getopt_win".

Did you mean: getopt_int
2004 Aug 06
1
patch for compiling on IRIX
The following patch (based off of the current CVS tree) is necessary to compile Speex on IRIX (or any other system that doesn't include getopt_long in the system libraries). I would suggest further that src/getopt_win.h be renamed to getopt_long.h since it's not just Windows that lacks getopt_long. Michael Index: configure.in =================================================================== RCS file: /usr/local/cvsroot/speex/configure.in,v retrieving revision 1.62 diff -u -r1.62 configure.in --- configur...
2009 Apr 17
1
Missing getopt_long in Solaris 8 Sparc
...1 dam csw 839 Jun 2 2008 Makefile.am -rw-r--r-- 1 dam csw 19185 Jul 21 2008 Makefile.in -rw-r--r-- 1 dam csw 31054 Jun 8 2007 getopt.c -rw-r--r-- 1 dam csw 4741 Jun 8 2007 getopt1.c -rw-r--r-- 1 dam csw 6030 Jun 8 2007 getopt_win.h -rw-r--r-- 1 dam csw 6651 Jun 23 2007 skeleton.c -rw-r--r-- 1 dam csw 3022 Jun 23 2007 skeleton.h -rw-r--r-- 1 dam csw 4660 Apr 17 13:45 skeleton.o -rw-r--r-- 1 dam csw 1534 Jun 2 2008 speexdec.1 -rw-r--r-- 1 dam csw 24...
2009 Apr 14
2
Missing getopt_long in Solaris 8 Sparc
Hi, I have problems compiling speex 1.2rc1: > /opt/studio/SOS11/SUNWspro/bin/cc -DHAVE_CONFIG_H -I. -I. - > I.. -I../include -I../include -I.. -I/opt/csw/include -I/opt/csw/ > include -xO3 -xarch=v8 -I/opt/csw/include -c skeleton.c > /bin/bash ../libtool --mode=link /opt/studio/SOS11/SUNWspro/bin/cc - > xO3 -xarch=v8 -I/opt/csw/include -xarch=v8 -L/opt/csw/lib -o
2008 Apr 04
0
speexdec 1.2.3
...ED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include <stdio.h> #if !defined WIN32 && !defined _WIN32 #include <unistd.h> #endif #ifdef HAVE_GETOPT_H #include <getopt.h> #endif #ifndef HAVE_GETOPT_LONG #include "getopt_win.h" #endif #include <stdlib.h> #include <string.h> #include <speex/speex.h> #include <ogg/ogg.h> #if defined WIN32 || defined _WIN32 #include "wave_out.h" /* We need the following two to set stdout to binary */ #include <io.h> #include <fcntl.h> #...
2008 Apr 04
2
speexdec 1.2.3
On Fri, Apr 4, 2008 at 12:19 AM, Jean-Marc Valin <jean-marc.valin at usherbrooke.ca> wrote: > Jahn, Ray (R.) a ?crit : > > > Dear Speex codec community: > > > > I am working on conversion of voice files. I could not figure out how to use speexdec.exe 1.2.3 in piped mode in order to avoid the creation of the potentially large intermediate *.wav or *.pcm files. Any