[Endpoint-commits] rev 5 - in trunk: . libjconfig librbc libsbp2 src

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Wed Oct 22 15:31:13 CDT 2003


Author: manish
Date: 2003-10-22 14:31:10 -0500 (Wed, 22 Oct 2003)
New Revision: 5

Modified:
   trunk/configure.in
   trunk/libjconfig/jconfig.c
   trunk/libjconfig/jiterator.c
   trunk/librbc/rbcbuffer.c
   trunk/librbc/rbccommand.c
   trunk/librbc/rbcdisk.c
   trunk/libsbp2/sbp2configrom.c
   trunk/libsbp2/sbp2main.c
   trunk/libsbp2/sbp2manager.c
   trunk/libsbp2/sbp2raw1394.c
   trunk/libsbp2/sbp2worker.c
   trunk/src/app.c
   trunk/src/cleanup.c
   trunk/src/main.c
   trunk/src/manager.c
   trunk/src/process.c
   trunk/src/util.c
   trunk/src/wire.c
   trunk/src/worker.c
Log:
use config.h, have AC_GNU_SOURCE and AC_SYS_LARGEFILE


Modified: trunk/configure.in
===================================================================
--- trunk/configure.in	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/configure.in	2003-10-22 19:31:10 UTC (rev 5)
@@ -20,6 +20,8 @@
 
 ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
 
+AC_GNU_SOURCE
+
 AC_PROG_CC
 AC_PROG_CPP
 
@@ -36,6 +38,8 @@
   esac
 fi
 
+AC_SYS_LARGEFILE
+
 AC_LIB_RAW1394(0.9.0,,
    AC_MSG_ERROR([Could not find libraw1394]))
 

Modified: trunk/libjconfig/jconfig.c
===================================================================
--- trunk/libjconfig/jconfig.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/libjconfig/jconfig.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -20,6 +20,7 @@
  *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
+#include "config.h"
 
 #include <stdarg.h>
 #include <stdio.h>

Modified: trunk/libjconfig/jiterator.c
===================================================================
--- trunk/libjconfig/jiterator.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/libjconfig/jiterator.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -27,6 +27,8 @@
  * MT safe
  */
 
+#include "config.h"
+
 #include <sys/types.h>
 #include <glib.h>
 

Modified: trunk/librbc/rbcbuffer.c
===================================================================
--- trunk/librbc/rbcbuffer.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/librbc/rbcbuffer.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <glib.h>
 
 #include "rbcbuffer.h"

Modified: trunk/librbc/rbccommand.c
===================================================================
--- trunk/librbc/rbccommand.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/librbc/rbccommand.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,8 +21,7 @@
  * Boston, MA 021110-1307, USA.
  */
 
-#define _GNU_SOURCE
-#define _FILE_OFFSET_BITS 64
+#include "config.h"
 
 #include <string.h>
 #include <sys/types.h>

Modified: trunk/librbc/rbcdisk.c
===================================================================
--- trunk/librbc/rbcdisk.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/librbc/rbcdisk.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>

Modified: trunk/libsbp2/sbp2configrom.c
===================================================================
--- trunk/libsbp2/sbp2configrom.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/libsbp2/sbp2configrom.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <glib.h>
 
 #include <libraw1394/raw1394.h>

Modified: trunk/libsbp2/sbp2main.c
===================================================================
--- trunk/libsbp2/sbp2main.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/libsbp2/sbp2main.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <glib.h>
 
 #include <libraw1394/raw1394.h>

Modified: trunk/libsbp2/sbp2manager.c
===================================================================
--- trunk/libsbp2/sbp2manager.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/libsbp2/sbp2manager.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <string.h>
 
 #include <glib.h>

Modified: trunk/libsbp2/sbp2raw1394.c
===================================================================
--- trunk/libsbp2/sbp2raw1394.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/libsbp2/sbp2raw1394.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <errno.h>
 
 #include <glib.h>

Modified: trunk/libsbp2/sbp2worker.c
===================================================================
--- trunk/libsbp2/sbp2worker.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/libsbp2/sbp2worker.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <string.h>
 
 #include <glib.h>

Modified: trunk/src/app.c
===================================================================
--- trunk/src/app.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/src/app.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <stdlib.h>
 
 #include <glib.h>

Modified: trunk/src/cleanup.c
===================================================================
--- trunk/src/cleanup.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/src/cleanup.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <unistd.h>
 #include <signal.h>
 

Modified: trunk/src/main.c
===================================================================
--- trunk/src/main.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/src/main.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

Modified: trunk/src/manager.c
===================================================================
--- trunk/src/manager.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/src/manager.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <stdlib.h>
 #include <string.h>
 

Modified: trunk/src/process.c
===================================================================
--- trunk/src/process.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/src/process.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <sys/types.h>
 #include <unistd.h>
 

Modified: trunk/src/util.c
===================================================================
--- trunk/src/util.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/src/util.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <glib.h>
 
 

Modified: trunk/src/wire.c
===================================================================
--- trunk/src/wire.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/src/wire.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <string.h>
 #include <limits.h>
 

Modified: trunk/src/worker.c
===================================================================
--- trunk/src/worker.c	2003-10-20 22:57:12 UTC (rev 4)
+++ trunk/src/worker.c	2003-10-22 19:31:10 UTC (rev 5)
@@ -21,6 +21,8 @@
  * Boston, MA 021110-1307, USA.
  */
 
+#include "config.h"
+
 #include <stdlib.h>
 
 #include <glib.h>



More information about the Endpoint-commits mailing list