No need for check for off_t or for the size of float or long double
authorBen Pfaff <blp@gnu.org>
Tue, 6 Nov 2007 05:49:04 +0000 (05:49 +0000)
committerBen Pfaff <blp@gnu.org>
Tue, 6 Nov 2007 05:49:04 +0000 (05:49 +0000)
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.

ChangeLog
configure.ac
src/libpspp/i18n.c

index 696c526d66139571ebe4ed62073c3ac80bc66196..1c6fee0284bfbd00f213127fcae2f77ad6e08423 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-11-05  Ben Pfaff  <blp@gnu.org>
+
+       * 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  <blp@gnu.org>
 
        Allow output files to overwrite input files (bug #21280).
index 6dae49b058554ed9564417325137cf0e1ed00107..5b8e1a933c99c0dec9e00149df042cd0e9a36ea8 100644 (file)
@@ -84,11 +84,7 @@ gl_INIT
 
 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_CHECK_FUNCS([__setfpucw fork execl execlp isinf isnan finite getpid feholdexc
 
 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 ba083fffe2f1a791dca465bd0c4a17b59b4cc63c..c214fb55b0a0147514949e03311be172099276dc 100644 (file)
@@ -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>