pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] pspp ChangeLog configure.ac src/libpspp/i18n.c


From: Ben Pfaff
Subject: [Pspp-cvs] pspp ChangeLog configure.ac src/libpspp/i18n.c
Date: Tue, 06 Nov 2007 05:49:04 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 07/11/06 05:49:04

Modified files:
        .              : ChangeLog configure.ac 
        src/libpspp    : i18n.c 

Log message:
        No need for check for off_t or for the size of float or long double
        any longer, as we don't use the results anymore.  Also, no need to put
        #include <locale.h> into config.h any longer, as this was only needed
        for --with-included-gettext, which we have not supported for some
        time.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/ChangeLog?cvsroot=pspp&r1=1.93&r2=1.94
http://cvs.savannah.gnu.org/viewcvs/pspp/configure.ac?cvsroot=pspp&r1=1.69&r2=1.70
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/i18n.c?cvsroot=pspp&r1=1.10&r2=1.11

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -b -r1.93 -r1.94
--- ChangeLog   3 Nov 2007 22:00:03 -0000       1.93
+++ ChangeLog   6 Nov 2007 05:49:04 -0000       1.94
@@ -1,3 +1,11 @@
+2007-11-05  Ben Pfaff  <address@hidden>
+
+       * configure.ac: No need for check for off_t or for the size of
+       float or long double any longer, as we don't use the results
+       anymore.  Also, no need to put #include <locale.h> into config.h
+       any longer, as this was only needed for --with-included-gettext,
+       which we have not supported for some time.
+
 2007-11-03  Ben Pfaff  <address@hidden>
 
        Allow output files to overwrite input files (bug #21280).

Index: configure.ac
===================================================================
RCS file: /cvsroot/pspp/pspp/configure.ac,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -b -r1.69 -r1.70
--- configure.ac        6 Nov 2007 01:35:26 -0000       1.69
+++ configure.ac        6 Nov 2007 05:49:04 -0000       1.70
@@ -84,11 +84,7 @@
 
 AC_C_INLINE
 
-dnl  Dont use AC_TYPE_OFF_T --- it doesnt generate the HAVE_TYPE macro
-AC_CHECK_TYPES(off_t) 
-AC_CHECK_SIZEOF(float)
 AC_CHECK_SIZEOF(double)
-AC_CHECK_SIZEOF(long double)
 
 AC_C_BIGENDIAN
 
@@ -96,9 +92,6 @@
 
 AC_PROG_LN_S
 
-dnl This is needed otherwise --with-included-gettext fails
-AH_BOTTOM([#include <locale.h>])
-
 AC_ARG_ENABLE(
   debug, 
   [AS_HELP_STRING([--enable-debug], 

Index: src/libpspp/i18n.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/i18n.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- src/libpspp/i18n.c  3 Nov 2007 03:43:12 -0000       1.10
+++ src/libpspp/i18n.c  6 Nov 2007 05:49:04 -0000       1.11
@@ -17,6 +17,7 @@
 #include <config.h>
 #include <xalloc.h>
 #include <assert.h>
+#include <locale.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>




reply via email to

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