pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] pspp/src data/value.h language/stats/binomial.h...


From: Ben Pfaff
Subject: [Pspp-cvs] pspp/src data/value.h language/stats/binomial.h...
Date: Fri, 12 Oct 2007 05:05:32 +0000

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

Modified files:
        src/data       : value.h 
        src/language/stats: binomial.h npar-summary.h sort-criteria.h 
        src/output     : chart.h output.h 
        src/output/charts: box-whisker.h plot-chart.h plot-hist.h 
        src/ui/gui     : clipboard.h t-test-independent-samples-dialog.c 
                         widget-io.h 

Log message:
        config.h-fixes.patch from patch #6230.
        
        Do #include <config.h> from every .c file.
        Do not #include <config.h> from any .h file.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/data/value.h?cvsroot=pspp&r1=1.12&r2=1.13
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/stats/binomial.h?cvsroot=pspp&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/stats/npar-summary.h?cvsroot=pspp&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/stats/sort-criteria.h?cvsroot=pspp&r1=1.7&r2=1.8
http://cvs.savannah.gnu.org/viewcvs/pspp/src/output/chart.h?cvsroot=pspp&r1=1.9&r2=1.10
http://cvs.savannah.gnu.org/viewcvs/pspp/src/output/output.h?cvsroot=pspp&r1=1.14&r2=1.15
http://cvs.savannah.gnu.org/viewcvs/pspp/src/output/charts/box-whisker.h?cvsroot=pspp&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/pspp/src/output/charts/plot-chart.h?cvsroot=pspp&r1=1.8&r2=1.9
http://cvs.savannah.gnu.org/viewcvs/pspp/src/output/charts/plot-hist.h?cvsroot=pspp&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/pspp/src/ui/gui/clipboard.h?cvsroot=pspp&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/pspp/src/ui/gui/t-test-independent-samples-dialog.c?cvsroot=pspp&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/pspp/src/ui/gui/widget-io.h?cvsroot=pspp&r1=1.1&r2=1.2

Patches:
Index: data/value.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/data/value.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- data/value.h        12 Oct 2007 04:49:26 -0000      1.12
+++ data/value.h        12 Oct 2007 05:05:31 -0000      1.13
@@ -21,7 +21,6 @@
 #include <libpspp/float-format.h>
 #include <libpspp/misc.h>
 #include "minmax.h"
-#include <config.h>
 
 /* Values. */
 

Index: language/stats/binomial.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/stats/binomial.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- language/stats/binomial.h   7 Jul 2007 06:14:16 -0000       1.5
+++ language/stats/binomial.h   12 Oct 2007 05:05:31 -0000      1.6
@@ -17,7 +17,6 @@
 #if !binomial_h
 #define binomial_h 1
 
-#include <config.h>
 #include <stddef.h>
 #include <stdbool.h>
 

Index: language/stats/npar-summary.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/stats/npar-summary.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- language/stats/npar-summary.h       7 Jul 2007 06:14:17 -0000       1.5
+++ language/stats/npar-summary.h       12 Oct 2007 05:05:31 -0000      1.6
@@ -17,8 +17,6 @@
 #if !n_par_summary_h
 #define n_par_summary_h 1
 
-#include <config.h>
-
 struct variable ;
 struct casereader ;
 struct dictionary;

Index: language/stats/sort-criteria.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/stats/sort-criteria.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- language/stats/sort-criteria.h      7 Jul 2007 06:14:17 -0000       1.7
+++ language/stats/sort-criteria.h      12 Oct 2007 05:05:31 -0000      1.8
@@ -17,7 +17,6 @@
 #ifndef SORT_CRITERIA_H
 #define SORT_CRITERIA_H
 
-#include <config.h>
 #include <stdbool.h>
 #include <stddef.h>
 

Index: output/chart.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/output/chart.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- output/chart.h      12 Oct 2007 04:59:30 -0000      1.9
+++ output/chart.h      12 Oct 2007 05:05:31 -0000      1.10
@@ -14,7 +14,6 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
-#include <config.h>
 #include <stdio.h>
 #include <stdarg.h>
 #include <string.h>

Index: output/output.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/output/output.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- output/output.h     23 Sep 2007 05:59:02 -0000      1.14
+++ output/output.h     12 Oct 2007 05:05:31 -0000      1.15
@@ -17,8 +17,6 @@
 #ifndef OUTPUT_OUTPUT_H
 #define OUTPUT_OUTPUT_H 1
 
-#include <config.h>
-
 #include <libpspp/str.h>
 
 

Index: output/charts/box-whisker.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/output/charts/box-whisker.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- output/charts/box-whisker.h 7 Jul 2007 06:14:25 -0000       1.5
+++ output/charts/box-whisker.h 12 Oct 2007 05:05:31 -0000      1.6
@@ -17,8 +17,6 @@
 #ifndef BOX_WHISKER_H
 #define BOX_WHISKER_H
 
-#include <config.h>
-
 struct chart ;
 struct weighted_value;
 struct metrics;

Index: output/charts/plot-chart.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/output/charts/plot-chart.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- output/charts/plot-chart.h  12 Oct 2007 04:59:30 -0000      1.8
+++ output/charts/plot-chart.h  12 Oct 2007 05:05:31 -0000      1.9
@@ -14,7 +14,6 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
-#include <config.h>
 #include <stdio.h>
 #include <stdarg.h>
 #include <string.h>

Index: output/charts/plot-hist.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/output/charts/plot-hist.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- output/charts/plot-hist.h   7 Jul 2007 06:14:26 -0000       1.3
+++ output/charts/plot-hist.h   12 Oct 2007 05:05:31 -0000      1.4
@@ -17,7 +17,6 @@
 #ifndef PLOT_HIST_H
 #define PLOT_HIST_H
 
-#include <config.h>
 #include <gsl/gsl_histogram.h>
 
 

Index: ui/gui/clipboard.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/ui/gui/clipboard.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- ui/gui/clipboard.h  18 Aug 2007 02:52:36 -0000      1.2
+++ ui/gui/clipboard.h  12 Oct 2007 05:05:32 -0000      1.3
@@ -14,7 +14,6 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
-#include <config.h>
 #include <gtksheet/gtksheet.h>
 
 #ifndef CLIPBOARD_H

Index: ui/gui/t-test-independent-samples-dialog.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/ui/gui/t-test-independent-samples-dialog.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- ui/gui/t-test-independent-samples-dialog.c  12 Oct 2007 04:47:08 -0000      
1.3
+++ ui/gui/t-test-independent-samples-dialog.c  12 Oct 2007 05:05:32 -0000      
1.4
@@ -16,6 +16,7 @@
 */
 
 
+#include <config.h>
 #include <glade/glade.h>
 #include <gtk/gtk.h>
 #include "t-test-independent-samples-dialog.h"

Index: ui/gui/widget-io.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/ui/gui/widget-io.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- ui/gui/widget-io.h  29 Jul 2007 07:56:54 -0000      1.1
+++ ui/gui/widget-io.h  12 Oct 2007 05:05:32 -0000      1.2
@@ -14,8 +14,6 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
-#include <config.h>
-
 #include <gtk/gtk.h>
 
 




reply via email to

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