[Liboss-commit] CVS: liboss/src Makefile.am,1.1,1.2 osscat.c,1.1,1.2
Brought to you by:
thesin
|
From: Alexander S. <mrv...@us...> - 2002-10-18 22:00:31
|
Update of /cvsroot/liboss/liboss/src In directory usw-pr-cvs1:/tmp/cvs-serv3128/src Modified Files: Makefile.am osscat.c Log Message: More changes. It now compiles. osscat crashes trying to call a symbol acquired from dlsym (open), but i don't think it's dlcompat's fault Index: Makefile.am =================================================================== RCS file: /cvsroot/liboss/liboss/src/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Makefile.am 10 May 2002 15:05:42 -0000 1.1 +++ Makefile.am 18 Oct 2002 22:00:26 -0000 1.2 @@ -2,7 +2,7 @@ ## Process this file with automake to produce Makefile.in ## -CFLAGS = @CFLAGS@ $(COREAUDIO_CFLAGS) +CFLAGS = @CFLAGS@ $(COREAUDIO_CFLAGS) @NONPIC_CFLAGS@ bin_PROGRAMS = osscat Index: osscat.c =================================================================== RCS file: /cvsroot/liboss/liboss/src/osscat.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- osscat.c 10 May 2002 15:05:42 -0000 1.1 +++ osscat.c 18 Oct 2002 22:00:27 -0000 1.2 @@ -1,5 +1,7 @@ #include "soundcard.h" #include <stdio.h> +#include <unistd.h> +#include <stdlib.h> /* FIXME: Add capability for recording with 'libosscat /dev/audio > somefile' */ |