diff options
Diffstat (limited to 'missing_d')
-rw-r--r-- | missing_d/COPYING.LIB | 6 | ||||
-rw-r--r-- | missing_d/ChangeLog | 10 | ||||
-rw-r--r-- | missing_d/mktime.c | 4 | ||||
-rw-r--r-- | missing_d/strerror.c | 2 | ||||
-rw-r--r-- | missing_d/strftime.c | 4 | ||||
-rw-r--r-- | missing_d/strtod.c | 2 | ||||
-rw-r--r-- | missing_d/strtoul.c | 2 | ||||
-rw-r--r-- | missing_d/system.c | 2 |
8 files changed, 21 insertions, 11 deletions
diff --git a/missing_d/COPYING.LIB b/missing_d/COPYING.LIB index 161a3d1d..778d0bb5 100644 --- a/missing_d/COPYING.LIB +++ b/missing_d/COPYING.LIB @@ -2,7 +2,7 @@ Version 2, June 1991 Copyright (C) 1991 Free Software Foundation, Inc. - 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -464,8 +464,8 @@ convey the exclusion of warranty; and each file should have at least the You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA + Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + MA 02110-1301, USA Also add information on how to contact you by electronic and paper mail. diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog index c0d38c19..72c2f71e 100644 --- a/missing_d/ChangeLog +++ b/missing_d/ChangeLog @@ -1,3 +1,13 @@ +Tue Jul 26 21:46:16 2005 Arnold D. Robbins <arnold@skeeve.com> + + * Release 3.1.5: Release tar file made. + +Tue Jul 26 21:27:46 2005 Arnold D. Robbins <arnold@skeeve.com> + + * strtod.c (gawk_strtod) [ENABLE_NLS]: Removed from conditional + paralleling change to main.c. + * stroul.c (strtoul): Same. + Mon Aug 2 12:18:15 2004 Arnold D. Robbins <arnold@skeeve.com> * Release 3.1.4: Release tar file made. diff --git a/missing_d/mktime.c b/missing_d/mktime.c index fab599d8..217dfafb 100644 --- a/missing_d/mktime.c +++ b/missing_d/mktime.c @@ -14,8 +14,8 @@ You should have received a copy of the GNU Library General Public License along with the GNU C Library; see the file COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ + write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /* Define this to have a standalone program to test this implementation of mktime. */ diff --git a/missing_d/strerror.c b/missing_d/strerror.c index 6a725995..f3e8c28c 100644 --- a/missing_d/strerror.c +++ b/missing_d/strerror.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #if 0 #include <stdio.h> diff --git a/missing_d/strftime.c b/missing_d/strftime.c index c1e1a1e2..69a0c517 100644 --- a/missing_d/strftime.c +++ b/missing_d/strftime.c @@ -14,8 +14,8 @@ You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301 USA. */ #ifdef HAVE_CONFIG_H # include <config.h> diff --git a/missing_d/strtod.c b/missing_d/strtod.c index fc97b8d8..5ebc8c6e 100644 --- a/missing_d/strtod.c +++ b/missing_d/strtod.c @@ -69,7 +69,7 @@ register const char **ptr; } if ( -#if ENABLE_NLS && defined(HAVE_LOCALE_H) +#if defined(HAVE_LOCALE_H) loc.decimal_point != NULL ? *s == loc.decimal_point[0] : *s == '.' diff --git a/missing_d/strtoul.c b/missing_d/strtoul.c index ccabfbeb..d2655750 100644 --- a/missing_d/strtoul.c +++ b/missing_d/strtoul.c @@ -93,7 +93,7 @@ int base; */ for (; *nptr != '\0'; nptr++) { c = *nptr; -#if ENABLE_NLS && defined(HAVE_LOCALE_H) +#if defined(HAVE_LOCALE_H) if (base == 10 && loc.thousands_sep != NULL && loc.thousands_sep[0] != '\0' diff --git a/missing_d/system.c b/missing_d/system.c index 11db9925..7d1a4ee4 100644 --- a/missing_d/system.c +++ b/missing_d/system.c @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ extern void fatal(); |