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/ChangeL...


From: Ben Pfaff
Subject: [Pspp-cvs] pspp ChangeLog configure.ac src/libpspp/ChangeL...
Date: Wed, 01 Nov 2006 03:33:02 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 06/11/01 03:33:02

Modified files:
        .              : ChangeLog configure.ac 
        src/libpspp    : ChangeLog str.h 

Log message:
        Tue Oct 31 19:29:05 2006  Ben Pfaff  <address@hidden>
        
                * configure.ac: Drop tests for strchr, strrchr because now we
                assume a C89 compliant library.  (Gnulib makes this assumption 
so
                we might as well too.)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/ChangeLog?cvsroot=pspp&r1=1.63&r2=1.64
http://cvs.savannah.gnu.org/viewcvs/pspp/configure.ac?cvsroot=pspp&r1=1.46&r2=1.47
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/ChangeLog?cvsroot=pspp&r1=1.37&r2=1.38
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/str.h?cvsroot=pspp&r1=1.11&r2=1.12

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -b -r1.63 -r1.64
--- ChangeLog   29 Oct 2006 22:09:41 -0000      1.63
+++ ChangeLog   1 Nov 2006 03:33:01 -0000       1.64
@@ -1,3 +1,9 @@
+Tue Oct 31 19:29:05 2006  Ben Pfaff  <address@hidden>
+
+       * configure.ac: Drop tests for strchr, strrchr because now we
+       assume a C89 compliant library.  (Gnulib makes this assumption so
+       we might as well too.)
+
 Sun Oct 29 14:08:53 2006  Ben Pfaff  <address@hidden>
 
        * Smake (GNULIB_MODULES): Remove `restrict' from modules, because

Index: configure.ac
===================================================================
RCS file: /cvsroot/pspp/pspp/configure.ac,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -b -r1.46 -r1.47
--- configure.ac        2 May 2006 03:51:42 -0000       1.46
+++ configure.ac        1 Nov 2006 03:33:02 -0000       1.47
@@ -73,7 +73,7 @@
 AC_C_BIGENDIAN
 
 AC_FUNC_VPRINTF
-AC_CHECK_FUNCS([strchr strrchr __setfpucw isinf isnan finite getpid 
feholdexcept])
+AC_CHECK_FUNCS([__setfpucw isinf isnan finite getpid feholdexcept])
 
 AC_PROG_LN_S
 

Index: src/libpspp/ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -b -r1.37 -r1.38
--- src/libpspp/ChangeLog       28 Oct 2006 04:01:55 -0000      1.37
+++ src/libpspp/ChangeLog       1 Nov 2006 03:33:02 -0000       1.38
@@ -1,3 +1,10 @@
+Tue Oct 31 19:28:19 2006  Ben Pfaff  <address@hidden>
+
+       * str.h: [!HAVE_STRCHR] Drop compatibility code, because now we
+       assume a C89 compliant library.  (Gnulib makes this assumption so
+       we might as well too.)
+       [!HAVE_STRRCHR] Ditto.
+
 Thu Oct 26 20:19:50 2006  Ben Pfaff  <address@hidden>
 
        * automake.mk: Add the new files.

Index: src/libpspp/str.h
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/str.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- src/libpspp/str.h   18 Jul 2006 04:57:01 -0000      1.11
+++ src/libpspp/str.h   1 Nov 2006 03:33:02 -0000       1.12
@@ -38,13 +38,6 @@
 #include "vsnprintf.h"
 #include "xvasprintf.h"
 
-#ifndef HAVE_STRCHR
-#define strchr index
-#endif
-#ifndef HAVE_STRRCHR
-#define strrchr rindex
-#endif
-
 /* Miscellaneous. */
 
 void buf_reverse (char *, size_t);




reply via email to

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