[Liboss-commit] CVS: liboss/lib Makefile.am,1.16,1.17 ossinsert.c,1.1,1.2
Brought to you by:
thesin
|
From: Alexander S. <mrv...@us...> - 2002-10-27 22:48:02
|
Update of /cvsroot/liboss/liboss/lib
In directory usw-pr-cvs1:/tmp/cvs-serv12549/lib
Modified Files:
Makefile.am ossinsert.c
Log Message:
ossinsert now builds, also optimizing the hell out of it, because I do stuff like that.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/liboss/liboss/lib/Makefile.am,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- Makefile.am 22 Oct 2002 19:46:14 -0000 1.16
+++ Makefile.am 27 Oct 2002 22:47:59 -0000 1.17
@@ -4,7 +4,7 @@
CFLAGS = @CFLAGS@ $(ESD_INCS) $(COREAUDIO_CFLAGS) $(DLSYM_UNDERSCORE) -DLIBOSS_INTERNAL
-lib_LTLIBRARIES = liboss.la
+lib_LTLIBRARIES = liboss.la ossinsert.la
liboss_la_SOURCES = esddsp.c
liboss_la_DEPENDENCIES =
@@ -12,6 +12,13 @@
liboss_la_LDFLAGS = -no-undefined \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
+
+ossinsert_la_SOURCES = ossinsert.c
+ossinsert_la_DEPENDENCIES = liboss.la
+ossinsert_la_LIBADD = -L .libs -loss
+ossinsert_la_LDFLAGS = -no-undefined \
+ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -module
+
include_HEADERS =
Index: ossinsert.c
===================================================================
RCS file: /cvsroot/liboss/liboss/lib/ossinsert.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ossinsert.c 24 Oct 2002 22:11:36 -0000 1.1
+++ ossinsert.c 27 Oct 2002 22:47:59 -0000 1.2
@@ -1,3 +1,5 @@
+#include <stdarg.h>
+
#undef ioctl
#undef open
#undef close
|