Update of /cvsroot/libsysio/libsysio
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11075
Modified Files:
Makefile.am Rules.make
Log Message:
A new, major change, to .../include/xtio.h. This is intended to
be the include file for applications. It prototype all of the
extended API available as well as the necessary structures.
Other shanges to support this. We now need it most everywhere to build the
library as well.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/libsysio/libsysio/Makefile.am,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -w -b -B -p -r1.13 -r1.14
--- Makefile.am 2 Jun 2004 22:28:16 -0000 1.13
+++ Makefile.am 3 Jul 2004 05:47:12 -0000 1.14
@@ -50,11 +50,13 @@ endif
if WITH_LUSTRE_HACK
OPTIONAL_LUSTRE_SRCDIR_SRCS = $(LUSTRE_SRCDIR_SRCS)
# it would be better that let configure script check this
-AM_CFLAGS = -fPIC
+OPTIONAL_LUSTRE_CFLAGS = -fPIC
else
OPTIONAL_LUSTRE_SRCDIR_SRCS =
endif
+AM_CFLAGS = $(OPTIONAL_LUSTRE_CFLAGS)
+
__LIBBUILD_DIR__libsysio_a_SOURCES = \
$(SRCDIR_SRCS) \
$(OPTIONAL_LUSTRE_SRCDIR_SRCS) \
Index: Rules.make
===================================================================
RCS file: /cvsroot/libsysio/libsysio/Rules.make,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -w -b -B -p -r1.6 -r1.7
--- Rules.make 6 Feb 2004 20:07:28 -0000 1.6
+++ Rules.make 3 Jul 2004 05:47:12 -0000 1.7
@@ -14,5 +14,6 @@ endif
DEV_CPPFLAGS = $(STDFD_DEV_CPPFLAGS)
AM_CPPFLAGS = \
+ -D_POSIX_C_SOURCE=199506L -D_XOPEN_SOURCE=500 \
$(AUTOMOUNT) $(ZERO_SUM_MEMORY) $(DEV_CPPFLAGS) $(SOCKETS_CPPFLAGS) \
-I$(top_srcdir)/include
|