./speech_tools/include/EST_iostream.h
-------------------------------------

/* OS/2 EMX  -  Samuel Audet <guardia@cam.org> */
#if defined(__EMX__)
#   include <iostream.h>
#   include <strstrea.h>
#elif defined(SYSTEM_IS_UNIX)
#   include <iostream.h>
#   include <strstream.h>
#elif defined(SYSTEM_IS_WIN32)
#   include "win32/EST_iostream_win32.h"
#   include <strstrea.h>
#else
#   error No System Selected
#endif


./speech_tools/include/EST_math.h
---------------------------------

/* OS/2 EMX  -  Samuel Audet <guardia@cam.org> */
#if defined(__EMX__)
#define isnanf(X) isnan(X)
#endif


./speech_tools/sigpr/window.cc
./speech_tools/sigpr/lpc.cc
------------------------------
#include <float.h> /* for M_PI */


./speech_tools/config/default_make_rules
----------------------------------------

# At the top
SHELL=ksh # or whatever


./speech_tools/config/config_make_rules
---------------------------------------
    CFLAGS  = -Zexe -Zmtd
    CXXFLAGS  = -Zexe -Zmtd
    COMPILERLIBS= -lstdcpp

    TEST = test

    RANLIB = ar s

    SOCKET_LIBS = -lsocket

    ESTLIB = -L$(TOP)/lib -llibestools -llibeststring

to ignore
---------

#warning <sys/stat.h> requires <sys/types.h>


**IMPORTANT**
=============

Use 'make -i' if you don't want the yet unexplained "Error: 255" messages
to stop the compilation.

If you are _desperately_ looking for some GNU utils, contact me
Samuel Audet <guardia@cam.org>
