pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/src data/data-in.c language/data-io/data-l...


From: Ben Pfaff
Subject: [Pspp-cvs] pspp/src data/data-in.c language/data-io/data-l...
Date: Fri, 12 Oct 2007 05:07:17 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 07/10/12 05:07:17

Modified files:
        src/data       : data-in.c 
        src/language/data-io: data-list.c data-reader.c list.q 
        src/language/lexer: format-parser.c lexer.c 
        src/language/stats: t-test.q 
        src/libpspp    : pool.c str.c syntax-gen.c 
        src/output     : postscript.c 

Log message:
        stdint.h-instead-of-size_max.h.patch from patch #6230.
        
        Include <stdint.h> instead of "size_max.h" to get a definition for
        SIZE_MAX.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/data/data-in.c?cvsroot=pspp&r1=1.22&r2=1.23
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/data-io/data-list.c?cvsroot=pspp&r1=1.37&r2=1.38
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/data-io/data-reader.c?cvsroot=pspp&r1=1.25&r2=1.26
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/data-io/list.q?cvsroot=pspp&r1=1.31&r2=1.32
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/lexer/format-parser.c?cvsroot=pspp&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/lexer/lexer.c?cvsroot=pspp&r1=1.28&r2=1.29
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/stats/t-test.q?cvsroot=pspp&r1=1.30&r2=1.31
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/pool.c?cvsroot=pspp&r1=1.12&r2=1.13
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/str.c?cvsroot=pspp&r1=1.23&r2=1.24
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/syntax-gen.c?cvsroot=pspp&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/pspp/src/output/postscript.c?cvsroot=pspp&r1=1.32&r2=1.33

Patches:
Index: data/data-in.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/data/data-in.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -b -r1.22 -r1.23
--- data/data-in.c      12 Oct 2007 04:49:26 -0000      1.22
+++ data/data-in.c      12 Oct 2007 05:07:17 -0000      1.23
@@ -42,7 +42,6 @@
 
 #include "c-ctype.h"
 #include "minmax.h"
-#include "size_max.h"
 #include "xalloc.h"
 
 #include "gettext.h"

Index: language/data-io/data-list.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/data-io/data-list.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -b -r1.37 -r1.38
--- language/data-io/data-list.c        12 Oct 2007 04:59:27 -0000      1.37
+++ language/data-io/data-list.c        12 Oct 2007 05:07:17 -0000      1.38
@@ -18,6 +18,7 @@
 
 #include <ctype.h>
 #include <float.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 
@@ -48,7 +49,6 @@
 #include <libpspp/str.h>
 #include <output/table.h>
 
-#include "size_max.h"
 #include "xsize.h"
 #include "xalloc.h"
 

Index: language/data-io/data-reader.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/data-io/data-reader.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- language/data-io/data-reader.c      12 Oct 2007 04:59:27 -0000      1.25
+++ language/data-io/data-reader.c      12 Oct 2007 05:07:17 -0000      1.26
@@ -20,6 +20,7 @@
 
 #include <ctype.h>
 #include <errno.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 
@@ -36,7 +37,6 @@
 #include <libpspp/str.h>
 
 #include "minmax.h"
-#include "size_max.h"
 #include "xalloc.h"
 
 #include "gettext.h"

Index: language/data-io/list.q
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/data-io/list.q,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -b -r1.31 -r1.32
--- language/data-io/list.q     12 Oct 2007 04:59:27 -0000      1.31
+++ language/data-io/list.q     12 Oct 2007 05:07:17 -0000      1.32
@@ -16,11 +16,11 @@
 
 #include <config.h>
 
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 
 #include "intprops.h"
-#include "size_max.h"
 #include "xmalloca.h"
 
 #include <data/casegrouper.h>

Index: language/lexer/format-parser.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/lexer/format-parser.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- language/lexer/format-parser.c      7 Jul 2007 06:14:15 -0000       1.10
+++ language/lexer/format-parser.c      12 Oct 2007 05:07:17 -0000      1.11
@@ -19,6 +19,7 @@
 #include "format-parser.h"
 
 #include <ctype.h>
+#include <stdint.h>
 #include <stdlib.h>
 
 #include "lexer.h"
@@ -29,8 +30,6 @@
 #include <libpspp/misc.h>
 #include <libpspp/str.h>
 
-#include "size_max.h"
-
 #include "gettext.h"
 #define _(msgid) gettext (msgid)
 

Index: language/lexer/lexer.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/lexer/lexer.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -b -r1.28 -r1.29
--- language/lexer/lexer.c      12 Oct 2007 04:59:27 -0000      1.28
+++ language/lexer/lexer.c      12 Oct 2007 05:07:17 -0000      1.29
@@ -22,6 +22,7 @@
 #include <limits.h>
 #include <math.h>
 #include <stdarg.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <libpspp/assertion.h>
 #include <language/command.h>
@@ -31,7 +32,6 @@
 #include <libpspp/str.h>
 #include <output/journal.h>
 
-#include "size_max.h"
 #include "xalloc.h"
 
 #include "gettext.h"

Index: language/stats/t-test.q
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/stats/t-test.q,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -b -r1.30 -r1.31
--- language/stats/t-test.q     12 Oct 2007 04:59:28 -0000      1.30
+++ language/stats/t-test.q     12 Oct 2007 05:07:17 -0000      1.31
@@ -18,6 +18,7 @@
 
 #include <gsl/gsl_cdf.h>
 #include <math.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 
@@ -43,7 +44,6 @@
 #include <output/manager.h>
 #include <output/table.h>
 
-#include "size_max.h"
 #include "xalloc.h"
 
 #include "gettext.h"

Index: libpspp/pool.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/pool.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- libpspp/pool.c      12 Oct 2007 04:59:29 -0000      1.12
+++ libpspp/pool.c      12 Oct 2007 05:07:17 -0000      1.13
@@ -16,12 +16,12 @@
 
 #include <config.h>
 #include "pool.h"
+#include <stdint.h>
 #include <stdlib.h>
 #include <libpspp/assertion.h>
 #include "message.h"
 #include "str.h"
 
-#include "size_max.h"
 #include "xalloc.h"
 
 /* Fast, low-overhead memory block suballocator. */

Index: libpspp/str.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/str.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -b -r1.23 -r1.24
--- libpspp/str.c       12 Oct 2007 04:59:29 -0000      1.23
+++ libpspp/str.c       12 Oct 2007 05:07:17 -0000      1.24
@@ -19,14 +19,13 @@
 #include "str.h"
 
 #include <ctype.h>
-#include <limits.h>
+#include <stdint.h>
 #include <stdlib.h>
 
 #include <libpspp/message.h>
 #include <libpspp/pool.h>
 
 #include "minmax.h"
-#include "size_max.h"
 #include "xalloc.h"
 #include "xsize.h"
 

Index: libpspp/syntax-gen.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/syntax-gen.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- libpspp/syntax-gen.c        7 Jul 2007 06:14:22 -0000       1.3
+++ libpspp/syntax-gen.c        12 Oct 2007 05:07:17 -0000      1.4
@@ -16,8 +16,8 @@
 
 #include <config.h>
 #include <stdbool.h>
+#include <stdint.h>
 
-#include "size_max.h"
 #include <libpspp/str.h>
 #include <libpspp/assertion.h>
 #include <string.h>

Index: output/postscript.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/output/postscript.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -b -r1.32 -r1.33
--- output/postscript.c 12 Oct 2007 04:59:30 -0000      1.32
+++ output/postscript.c 12 Oct 2007 05:07:17 -0000      1.33
@@ -19,6 +19,7 @@
 #include <ctype.h>
 #include <errno.h>
 #include <limits.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <time.h>
 #include <unistd.h>
@@ -42,7 +43,6 @@
 
 #include "intprops.h"
 #include "minmax.h"
-#include "size_max.h"
 #include "xalloc.h"
 
 #include "gettext.h"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]