#!/bin/sh
#*=====================================================================*/
#*    serrano/prgm/project/bigloo/autoconf/unix                        */
#*    -------------------------------------------------------------    */
#*    Author      :  Manuel Serrano                                    */
#*    Creation    :  Wed Oct 22 11:07:08 1997                          */
#*    Last change :  Sat Jan 17 09:47:52 1998 (serrano)                */
#*    -------------------------------------------------------------    */
#*    Setting bigloo.h up for Unix parameters.                         */
#*=====================================================================*/

#*---------------------------------------------------------------------*/
#*    Uname parameters                                                 */
#*---------------------------------------------------------------------*/
if eval 'uname > /dev/null 2> /dev/null'; then
  osname=`uname -s`
  osarch=`uname -m`
  osversion=`uname -r`
else
  osname="unknown"
  osarch="unknown"
  osversion="unknown"
fi

#*---------------------------------------------------------------------*/
#*    The configuration production                                     */
#*---------------------------------------------------------------------*/
# the kind of OS, Unix of course
echo "#define OS_CLASS \"unix\""

# The name of the OS
echo "#define OS_NAME \"$osname\""

# The architecture
echo "#define OS_ARCH \"$osarch\""

# the Os version
echo "#define OS_VERSION \"$osversion\""

# the temporary directory
echo "#define OS_TMP \"/tmp\""

# the file separator
echo "#define FILE_SEPARATOR '/'"

# the path separator
echo "#define PATH_SEPARATOR ':'"

# the line separator
echo "#define LINE_SEPARATOR \"\\n\""

# the static library suffixes
echo "#define STATIC_LIB_SUFFIX \"a\""

# the shard library suffixes
echo "#define SHARED_LIB_SUFFIX \"so\""

# Is it possible to directly print UCS2 characters
echo "#define UCS2_DISPLAYABLE 0"







