head	1.12;
access;
symbols
	RAT_3_0_18:1.12
	RAT_3_0_14:1.12
	RAT-v3_0_13:1.12
	stable:1.12
	before_new_receive_buf:1.12
	v2_6a13:1.12
	v2_6a12:1.12
	v2_6a8:1.12
	v2_6a6:1.12
	v2_6a2:1.12
	v2_6a1:1.12
	v2_6a0:1.12
	v2_5a3:1.12
	v2_4a8:1.12
	v2_4a6:1.12
	v2_4a4:1.12
	MERCI-test:1.12
	Amancio:1.7;
locks; strict;
comment	@# @;


1.12
date	96.03.15.17.03.53;	author ucaccsp;	state Exp;
branches;
next	1.11;

1.11
date	96.03.15.15.10.42;	author ucaccsp;	state Exp;
branches;
next	1.10;

1.10
date	96.03.13.14.10.27;	author kouvelas;	state Exp;
branches;
next	1.9;

1.9
date	96.03.12.10.53.29;	author kouvelas;	state Exp;
branches;
next	1.8;

1.8
date	96.03.11.10.43.42;	author ucaccsp;	state Exp;
branches;
next	1.7;

1.7
date	96.02.29.18.26.32;	author ucaccsp;	state Exp;
branches;
next	1.6;

1.6
date	96.02.28.17.46.13;	author ucaccsp;	state Exp;
branches;
next	1.5;

1.5
date	96.02.28.13.52.56;	author ucaccsp;	state Exp;
branches;
next	1.4;

1.4
date	96.02.27.16.39.31;	author ucaccsp;	state Exp;
branches;
next	1.3;

1.3
date	96.02.20.11.27.49;	author ucaccsp;	state Exp;
branches;
next	1.2;

1.2
date	96.02.20.10.27.03;	author ucaccsp;	state Exp;
branches;
next	1.1;

1.1
date	96.02.19.18.08.38;	author ucaccsp;	state Exp;
branches;
next	;


desc
@Automatic configuration script for RAT.
@


1.12
log
@Added additional Linux support
@
text
@#!/bin/sh
#
# Configure script for rat. This should generate "config.h" and "Makefile.osdep".
# Note: When writing the Makefile.osdep, some lines of the output file must have
#       a "\" as the last character on the line. Because of the shell quoting 
#       rules, we must put \\ here, or else the shell sees \" which it thinks
#       is a quoted " and gets really confused.
#
# $Revision: 1.11 $
# $Date: 1996/03/15 15:10:42 $
#
# Copyright (c) 1996 University College London
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
#    must display the following acknowledgement:
#      This product includes software developed by the Computer Science
#      Department at University College London
# 4. Neither the name of the University nor of the Department may be used
#    to endorse or promote products derived from this software without
#    specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#

# Find out the type of system we're running on. The nasty stuff is needed for $OSMVER
# since some systems (HP-UX) give the OS version in a weird format. At the end of this
# we should have the following variables set:
# 
#    OSTYPE : Base operating system type
#    OSMVER : The major version number of the system
#    OSVERS : The full version number of the system
#
OSTYPE=`uname -s`
OSVERS=`uname -r`
case $OSTYPE in
  Linux         ) OSMVER=`echo $OSVERS | awk -F. '{printf("%d.%d", $1, $2)}'`
                  ;;
  SunOS | IRIX  ) OSMVER=`echo $OSVERS | awk -F. '{print $1}'`
                  ;;
  HP-UX         ) OSTYPE=HPUX
                  OSMVER=`echo $OSVERS | awk -F. '{print $2}'`
                  ;;
  *             ) echo "$OSTYPE $OSVERS is not supported!"
                  exit
                  ;;
esac

echo "OSTYPE=$OSTYPE"
echo "OSVERS=$OSVERS"
echo "OSMVER=$OSMVER"

# Create a directory for the .o files, if it doesn't exist...
if [ ! -d objs/${OSTYPE}_${OSVERS} ]; then
  echo "Creating object directory objs/${OSTYPE}_${OSVERS}..."
  mkdir objs/${OSTYPE}_${OSVERS}
fi

echo "/*                                                       " >  config.h
echo " * Generated automatically by configure script on `date` " >> config.h
echo " * DO NOT EDIT THIS FILE BY HAND!!!                      " >> config.h
echo " */                                                      " >> config.h
echo "                                                         " >> config.h
echo "#define ${OSTYPE}                                        " >> config.h
echo "#define ${OSTYPE}_$OSMVER                                " >> config.h
echo "                                                         " >> config.h
case $OSTYPE in
  Linux ) echo "#include <sys/stat.h> " >> config.h
          echo "#include <fcntl.h>    " >> config.h
          ;;
  SunOS ) case $OSMVER in
            5 ) echo "#include <sys/stat.h>                          " >> config.h
                echo "#include <fcntl.h>                             " >> config.h
                echo "#include <sys/audioio.h>                       " >> config.h
                echo "#include <multimedia/audio_encode.h>           " >> config.h
                echo "int gettimeofday(struct timeval *tp, void * ); " >> config.h
                echo "int gethostname(char *name, int namelen);      " >> config.h
                ;;
            4 ) echo "#include <sun/audioio.h>                       " >> config.h
                echo "#include <multimedia/ulaw2linear.h>            " >> config.h
                echo "int gethostname(char *name, int namelen);      " >> config.h
                ;;
            * ) echo "SunOS $OSMVER not supported!"
                exit
                ;;
          esac
          ;;
  IRIX  ) echo "#include <audio.h>                             " >> config.h
          echo "#define AUDIO_SPEAKER   0                      " >> config.h
          echo "#define AUDIO_HEADPHONE 1                      " >> config.h
          echo "#define AUDIO_LINE_OUT  4                      " >> config.h
          echo "#define AUDIO_MICROPHONE 1                     " >> config.h
          echo "#define AUDIO_LINE_IN   2                      " >> config.h
          echo "int gethostname(char *name, int namelen);      " >> config.h
          ;;
  HPUX  ) echo "#include <unistd.h>                            " >> config.h
          echo "#include <sys/audio.h>                         " >> config.h
          echo "#define AUDIO_SPEAKER    AUDIO_OUT_SPEAKER     " >> config.h
          echo "#define AUDIO_HEADPHONE  AUDIO_OUT_HEADPHONE   " >> config.h
          echo "#define AUDIO_LINE_OUT   AUDIO_OUT_LINE        " >> config.h
          echo "#define AUDIO_MICROPHONE AUDIO_IN_MIKE         " >> config.h
          echo "#define AUDIO_LINE_IN    AUDIO_IN_LINE         " >> config.h
          echo "int gethostname(char *hostname, size_t size);  " >> config.h 
          ;;
  *     ) echo "Unknown system type $OSTYPE $OSVERS" 
          exit
          ;;
esac

echo "#                                                       " >  Makefile.osdep
echo "# Generated automatically by configure script on `date` " >> Makefile.osdep
echo "# DO NOT EDIT THIS FILE BY HAND!!!                      " >> Makefile.osdep
echo "#                                                       " >> Makefile.osdep
echo "                                                        " >> Makefile.osdep
echo "OSTYPE=$OSTYPE"                                           >> Makefile.osdep
echo "OSVERS=$OSVERS"                                           >> Makefile.osdep
echo "OSMVER=$OSMVER"                                           >> Makefile.osdep
echo "                                                        " >> Makefile.osdep
case $OSTYPE in
  Linux ) echo "INCS   = -I/usr/X11R6/include \\"               >> Makefile.osdep
          echo "         -I/usr/lib/tcl7.5 \\"                  >> Makefile.osdep
          echo "         -I/usr/lib/tk4.1"                      >> Makefile.osdep
          echo "LDLIBS = -L/usr/X11R6/lib -lXext -lX11 \\"      >> Makefile.osdep
          echo "         -ltk4.1 -ltcl7.5 -lm"                  >> Makefile.osdep
          ;;
  SunOS ) case $OSMVER in
            5 ) echo "INCS   = -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.5b1/generic \\" >> Makefile.osdep
                echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.1b1/generic \\"   >> Makefile.osdep
                echo "         -I/usr/demo/SOUND/include -I/usr/openwin/include "                 >> Makefile.osdep
                echo "LDLIBS = -R/usr/openwin/lib \\"                                             >> Makefile.osdep
                echo "         -L/cs/research/mice/speedy/common/sun5/lib \\"                     >> Makefile.osdep
                echo "         -ltk4.1 -ltcl7.5 \\"                                               >> Makefile.osdep
                echo "         -L/usr/openwin/lib -lXext -lX11 \\"                                >> Makefile.osdep
                echo "         -L/usr/demo/SOUND/lib -laudio \\"                                  >> Makefile.osdep
                echo "         -lsocket -ldl -lnsl -lm"                                           >> Makefile.osdep
                ;;
            4 ) echo "INCS   = -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.5b1/generic \\" >> Makefile.osdep
                echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.1b1/generic \\"   >> Makefile.osdep
                echo "         -I/usr/ucl/X11/include -I/usr/demo/SOUND"                          >> Makefile.osdep
                echo "LDLIBS = /cs/research/mice/speedy/common/sun4/lib/libtk4.1.a \\"            >> Makefile.osdep
                echo "         /cs/research/mice/speedy/common/sun4/lib/libtcl7.5.a \\"           >> Makefile.osdep
                echo "         -L/usr/openwin/lib -lXext -lX11 \\"                                >> Makefile.osdep
                echo "         -L/usr/demo/SOUND -laudio\\"                                       >> Makefile.osdep
                echo "         -lm"                                                               >> Makefile.osdep
                ;;
            * ) echo "SunOS $OSMVER not supported!"
                exit
                ;;
          esac
          ;;
  IRIX  ) echo "INCS   = -I/usr/ucl/X11/include \\"                                           >> Makefile.osdep
          echo "         -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.5b1/generic \\"   >> Makefile.osdep
          echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.1b1/generic"        >> Makefile.osdep
          echo "LDLIBS = -L/cs/research/mice/speedy/common/sgi/lib -ltk4.1 -ltcl7.5 \\"       >> Makefile.osdep
          echo "         -L/usr/lib/X11 -lXext -lX11 \\"                                      >> Makefile.osdep
	  echo "         -laudio -lm"                                                         >> Makefile.osdep
          ;;
  HPUX  ) echo "INCS   = -I/usr/include/X11     \\"                                           >> Makefile.osdep
          echo "         -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.5b1 \\"           >> Makefile.osdep
          echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.0"                  >> Makefile.osdep
          echo "LDLIBS = -L/cs/research/vision/packages/daedalus/sgi/lib -ltk4.0 -ltcl7.4 \\" >> Makefile.osdep
          echo "         -L/usr/lib/X11R5 -lXext -lX11 \\"                                    >> Makefile.osdep
	  echo "         -lAlib -lm"                                                          >> Makefile.osdep
          ;;
  *     ) echo "Unknown system type $OSTYPE $OSVERS" 
          exit
          ;;
esac
echo "#                                                       " >> Makefile.osdep
echo "# End of Makefile.osdep                                 " >> Makefile.osdep
echo "#                                                       " >> Makefile.osdep

@


1.11
log
@Initial Linux support.
@
text
@d9 2
a10 2
# $Revision: 1.10 $
# $Date: 1996/03/13 14:10:27 $
d55 1
a55 1
  Linux         ) OSMVER=`echo $OSVERS | awk -F. '{print $1,$2}'`
d86 2
a87 1
  Linux ) echo "" >> config.h
d138 5
a142 2
  Linux ) echo "INCS   = -I/usr/X11R6/include"          >> Makefle.osdep
          echo "LDLIBS = -L/usr/X11R6/lib -lXext -lX11" >> Makefile.osdep
d147 7
a153 7
                echo "         -I/usr/demo/SOUND/include -I/usr/openwin/include "       >> Makefile.osdep
                echo "LDLIBS = -R/usr/openwin/lib \\"                                   >> Makefile.osdep
                echo "         -L/cs/research/mice/speedy/common/sun5/lib \\"          >> Makefile.osdep
                echo "         -ltk4.1 -ltcl7.5 \\"                                     >> Makefile.osdep
                echo "         -L/usr/openwin/lib -lXext -lX11 \\"                      >> Makefile.osdep
                echo "         -L/usr/demo/SOUND/lib -laudio \\"                        >> Makefile.osdep
                echo "         -lsocket -ldl -lnsl -lm"                                      >> Makefile.osdep
d157 6
a162 6
                echo "         -I/usr/ucl/X11/include -I/usr/demo/SOUND"                >> Makefile.osdep
                echo "LDLIBS = /cs/research/mice/speedy/common/sun4/lib/libtk4.1.a \\" >> Makefile.osdep
                echo "         /cs/research/mice/speedy/common/sun4/lib/libtcl7.5.a \\" >> Makefile.osdep
                echo "         -L/usr/openwin/lib -lXext -lX11 \\"                      >> Makefile.osdep
                echo "         -L/usr/demo/SOUND -laudio\\"                             >> Makefile.osdep
                echo "         -lm"                                                     >> Makefile.osdep
d169 6
a174 6
  IRIX  ) echo "INCS   = -I/usr/ucl/X11/include \\"                                         >> Makefile.osdep
          echo "         -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.5b1/generic \\" >> Makefile.osdep
          echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.1b1/generic"                >> Makefile.osdep
          echo "LDLIBS = -L/cs/research/mice/speedy/common/sgi/lib -ltk4.1 -ltcl7.5 \\">>Makefile.osdep
          echo "         -L/usr/lib/X11 -lXext -lX11 \\"                                    >> Makefile.osdep
	  echo "         -laudio -lm"                                                       >> Makefile.osdep
d176 1
a176 1
  HPUX  ) echo "INCS   = -I/usr/include/X11     \\"                                         >> Makefile.osdep
d178 4
a181 4
          echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.0"                >> Makefile.osdep
          echo "LDLIBS = -L/cs/research/vision/packages/daedalus/sgi/lib -ltk4.0 -ltcl7.4 \\">>Makefile.osdep
          echo "         -L/usr/lib/X11R5 -lXext -lX11 \\"                                  >> Makefile.osdep
	  echo "         -lAlib -lm"                                                        >> Makefile.osdep
@


1.10
log
@Modified it to compile under SunOS 4.1.3
@
text
@d9 2
a10 2
# $Revision: 1.9 $
# $Date: 96/03/12 10:53:29 $
d55 2
d67 4
d86 2
d137 3
@


1.9
log
@Ported to tk4.1 tcl7.5
@
text
@d9 2
a10 2
# $Revision: 1.8 $
# $Date: 1996/03/11 10:43:42 $
d143 2
a144 2
                echo "LDLIBS = -L/cs/research/mice/speedy/common/sun4/lib \\"  >> Makefile.osdep
                echo "         -ltk4.1 -ltcl7.5 \\" >> Makefile.osdep
@


1.8
log
@Removed defn of CC=gcc, since it was the same in all cases.
The defn in Makefile is now used.
@
text
@d9 2
a10 2
# $Revision: 1.7 $
# $Date: 1996/02/29 18:26:32 $
d130 2
a131 2
            5 ) echo "INCS   = -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.4 \\" >> Makefile.osdep
                echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.0 \\"   >> Makefile.osdep
d134 2
a135 2
                echo "         -L/cs/research/vision/packages/daedalus/lib \\"          >> Makefile.osdep
                echo "         -ltk4.0 -ltcl7.4 \\"                                     >> Makefile.osdep
d138 1
a138 1
                echo "         -lsocket -lnsl -lm"                                      >> Makefile.osdep
d140 2
a141 2
            4 ) echo "INCS   = -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.4 \\" >> Makefile.osdep
                echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.0 \\"   >> Makefile.osdep
d143 2
a144 2
                echo "LDLIBS = /cs/research/mice/speedy/common/sun4/lib/libtk4.0.a \\"  >> Makefile.osdep
                echo "         /cs/research/mice/speedy/common/sun4/lib/libtcl7.4.a \\" >> Makefile.osdep
d155 3
a157 3
          echo "         -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.4 \\"           >> Makefile.osdep
          echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.0"                >> Makefile.osdep
          echo "LDLIBS = -L/cs/research/vision/packages/daedalus/sgi/lib -ltk4.0 -ltcl7.4 \\">>Makefile.osdep
d162 1
a162 1
          echo "         -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.4 \\"           >> Makefile.osdep
@


1.7
log
@Modified libraries for HP port
@
text
@d9 2
a10 2
# $Revision: 1.6 $
# $Date: 96/02/28 17:46:13 $
d130 1
a130 2
            5 ) echo "CC     = gcc"                                                     >> Makefile.osdep
                echo "INCS   = -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.4 \\" >> Makefile.osdep
d140 1
a140 2
            4 ) echo "CC     = gcc"                                                     >> Makefile.osdep
                echo "INCS   = -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.4 \\" >> Makefile.osdep
d154 1
a154 3
  IRIX  ) 
          echo "CC     = gcc"                                                               >> Makefile.osdep
          echo "INCS   = -I/usr/ucl/X11/include \\"                                         >> Makefile.osdep
d161 1
a161 2
  HPUX  ) echo "CC     = gcc"                                                               >> Makefile.osdep
          echo "INCS   = -I/usr/include/X11     \\"                                         >> Makefile.osdep
@


1.6
log
@Ongoing work on the HJ
(or even HP) port.
@
text
@d9 2
a10 2
# $Revision: 1.5 $
# $Date: 96/02/28 13:52:56 $
d171 1
a171 1
	  echo "         -laudio -lm"                                                       >> Makefile.osdep
@


1.5
log
@Added copyright notice
,
@
text
@d9 2
a10 2
# $Revision: 1.4 $
# $Date: 1996/02/27 16:39:31 $
d170 1
a170 1
          echo "         -L/usr/lib/X11 -lXext -lX11 \\"                                    >> Makefile.osdep
@


1.4
log
@Start of HPUX port
@
text
@d9 34
a42 2
# $Revision: 1.3 $
# $Date: 1996/02/20 11:27:49 $
@


1.3
log
@Object files now go into separate subdir for each OS.
@
text
@d9 2
a10 2
# $Revision: 1.2 $
# $Date: 1996/02/20 10:27:03 $
d25 2
a26 1
  HP-UX         ) OSMVER=`echo $OSVERS | awk -F. '{print $2}'`
d54 1
d58 1
d65 16
a80 9
  IRIX  ) echo "#include <audio.h>                               " >> config.h
          echo "#define AUDIO_SPEAKER   0                        " >> config.h
          echo "#define AUDIO_HEADPHONE 1                        " >> config.h
          echo "#define AUDIO_LINE_OUT  4                        " >> config.h
          echo "#define AUDIO_MICROPHONE 1                       " >> config.h
          echo "#define AUDIO_LINE_IN   2                        " >> config.h
          ;;
  HP-UX ) echo "HP-UX not supported yet!"
          exit
d133 7
a139 2
  HP-UX ) echo "HP-UX not supported yet!"
          exit
@


1.2
log
@Now automatically generates #defines for OS type.
@
text
@d9 2
a10 2
# $Revision: 1.1 $
# $Date: 1996/02/19 18:08:38 $
d12 8
d22 15
a36 1
OSMVER=`echo $OSVERS | awk -F. '{print $1}'`  # Hopefully, the major version number
a44 1
echo "#define ${OSTYPE}_$OSVERS                                " >> config.h
d47 14
a60 10
  SunOS ) if [ $OSMVER -ge 5 ]; then
            echo "#include <sys/stat.h>                          " >> config.h
            echo "#include <fcntl.h>                             " >> config.h
            echo "#include <sys/audioio.h>                       " >> config.h
            echo "#include <multimedia/audio_encode.h>           " >> config.h
            echo "int gettimeofday(struct timeval *tp, void * ); " >> config.h
          else 
            echo "#include <sun/audioio.h>                       " >> config.h
            echo "#include <multimedia/ulaw2linear.h>            " >> config.h
          fi
d69 3
d73 1
d87 26
a112 22
  SunOS ) if [ $OSMVER -ge 5 ]; then
            echo "CC     = gcc"                                                     >> Makefile.osdep
            echo "INCS   = -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.4 \\" >> Makefile.osdep
            echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.0 \\"   >> Makefile.osdep
            echo "         -I/usr/demo/SOUND/include -I/usr/openwin/include "       >> Makefile.osdep
            echo "LDLIBS = -R/usr/openwin/lib \\"                                   >> Makefile.osdep
            echo "         -L/cs/research/vision/packages/daedalus/lib \\"          >> Makefile.osdep
            echo "         -ltk4.0 -ltcl7.4 \\"                                     >> Makefile.osdep
            echo "         -L/usr/openwin/lib -lXext -lX11 \\"                      >> Makefile.osdep
            echo "         -L/usr/demo/SOUND/lib -laudio \\"                        >> Makefile.osdep
            echo "         -lsocket -lnsl -lm"                                      >> Makefile.osdep
          else
            echo "CC     = gcc"                                                     >> Makefile.osdep
            echo "INCS   = -I/cs/research/mice/speedy/common/src/pub/tcl/tcl7.4 \\" >> Makefile.osdep
            echo "         -I/cs/research/mice/speedy/common/src/pub/tk/tk4.0 \\"   >> Makefile.osdep
            echo "         -I/usr/ucl/X11/include -I/usr/demo/SOUND"                >> Makefile.osdep
            echo "LDLIBS = /cs/research/mice/speedy/common/sun4/lib/libtk4.0.a \\"  >> Makefile.osdep
            echo "         /cs/research/mice/speedy/common/sun4/lib/libtcl7.4.a \\" >> Makefile.osdep
            echo "         -L/usr/openwin/lib -lXext -lX11 \\"                      >> Makefile.osdep
            echo "         -L/usr/demo/SOUND -laudio\\"                             >> Makefile.osdep
            echo "         -lm"                                                     >> Makefile.osdep
          fi
d123 3
d127 1
@


1.1
log
@Initial revision
@
text
@d9 2
a10 2
# $Revision$
# $Date$
d21 4
a26 1
            echo "#define SUNOS_5                                " >> config.h
a32 1
            echo "#define SUNOS_4                                " >> config.h
d37 1
a37 2
  IRIX  ) echo "#define IRIX                                     " >> config.h
          echo "#include <audio.h>                               " >> config.h
@
