summaryrefslogtreecommitdiff
path: root/iconv
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-02-09 23:18:22 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-02-09 23:18:22 +0000
commit59ba27a63ada3f46b71ec99a314dfac5a38ad6d2 (patch)
tree69edda6ebdfd8fe5d83991ab44723e07f6366420 /iconv
parentaf850b1c978bdca648ef9fb141e785d75f74d9bf (diff)
Replace FSF snail mail address with URLs.
Diffstat (limited to 'iconv')
-rw-r--r--iconv/Makefile5
-rw-r--r--iconv/dummy-repertoire.c3
-rw-r--r--iconv/gconv.c5
-rw-r--r--iconv/gconv.h5
-rw-r--r--iconv/gconv_builtin.c5
-rw-r--r--iconv/gconv_builtin.h5
-rw-r--r--iconv/gconv_cache.c5
-rw-r--r--iconv/gconv_charset.h5
-rw-r--r--iconv/gconv_close.c5
-rw-r--r--iconv/gconv_conf.c5
-rw-r--r--iconv/gconv_db.c5
-rw-r--r--iconv/gconv_dl.c5
-rw-r--r--iconv/gconv_int.h5
-rw-r--r--iconv/gconv_open.c5
-rw-r--r--iconv/gconv_simple.c5
-rw-r--r--iconv/gconv_trans.c5
-rw-r--r--iconv/iconv.c5
-rw-r--r--iconv/iconv.h5
-rw-r--r--iconv/iconv_charmap.c3
-rw-r--r--iconv/iconv_close.c5
-rw-r--r--iconv/iconv_open.c5
-rw-r--r--iconv/iconv_prog.c3
-rw-r--r--iconv/iconv_prog.h5
-rw-r--r--iconv/iconvconfig.c3
-rw-r--r--iconv/iconvconfig.h5
-rw-r--r--iconv/loop.c5
-rw-r--r--iconv/skeleton.c5
-rw-r--r--iconv/strtab.c3
-rw-r--r--iconv/tst-iconv2.c5
-rw-r--r--iconv/tst-iconv5.c5
30 files changed, 55 insertions, 85 deletions
diff --git a/iconv/Makefile b/iconv/Makefile
index 46b6e9bdf3..87545bf2fe 100644
--- a/iconv/Makefile
+++ b/iconv/Makefile
@@ -13,9 +13,8 @@
# Lesser General Public License for more details.
# 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.
+# License along with the GNU C Library; if not, see
+# <http://www.gnu.org/licenses/>.
#
# Makefile for iconv.
diff --git a/iconv/dummy-repertoire.c b/iconv/dummy-repertoire.c
index cae384c287..7c46042156 100644
--- a/iconv/dummy-repertoire.c
+++ b/iconv/dummy-repertoire.c
@@ -13,8 +13,7 @@
GNU General Public License for more details.
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. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
/* For iconv we don't have to handle repertoire maps. Provide dummy
definitions to allow the use of linereader.c unchanged. */
diff --git a/iconv/gconv.c b/iconv/gconv.c
index 1b64455537..497e74507b 100644
--- a/iconv/gconv.c
+++ b/iconv/gconv.c
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <dlfcn.h>
diff --git a/iconv/gconv.h b/iconv/gconv.h
index 24e2c0f3b7..3f9112ef82 100644
--- a/iconv/gconv.h
+++ b/iconv/gconv.h
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
/* This header provides no interface for a user to the internals of
the gconv implementation in the libc. Therefore there is no use
diff --git a/iconv/gconv_builtin.c b/iconv/gconv_builtin.c
index d8beabd416..8e0f972838 100644
--- a/iconv/gconv_builtin.c
+++ b/iconv/gconv_builtin.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <endian.h>
#include <limits.h>
diff --git a/iconv/gconv_builtin.h b/iconv/gconv_builtin.h
index 271a4be87c..b23ceacddb 100644
--- a/iconv/gconv_builtin.h
+++ b/iconv/gconv_builtin.h
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
/* All encoding named must be in upper case. There must be no extra
spaces. */
diff --git a/iconv/gconv_cache.c b/iconv/gconv_cache.c
index 4fcb0bc2b4..90b6cff27a 100644
--- a/iconv/gconv_cache.c
+++ b/iconv/gconv_cache.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <dlfcn.h>
#include <errno.h>
diff --git a/iconv/gconv_charset.h b/iconv/gconv_charset.h
index 8882f4319f..c4355c5e39 100644
--- a/iconv/gconv_charset.h
+++ b/iconv/gconv_charset.h
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <ctype.h>
#include <locale.h>
diff --git a/iconv/gconv_close.c b/iconv/gconv_close.c
index cc0ecd650b..106a1b6b61 100644
--- a/iconv/gconv_close.c
+++ b/iconv/gconv_close.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <stdlib.h>
diff --git a/iconv/gconv_conf.c b/iconv/gconv_conf.c
index 7b7c340e99..e9fc9616f7 100644
--- a/iconv/gconv_conf.c
+++ b/iconv/gconv_conf.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <ctype.h>
diff --git a/iconv/gconv_db.c b/iconv/gconv_db.c
index cf452e786a..a081205106 100644
--- a/iconv/gconv_db.c
+++ b/iconv/gconv_db.c
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <limits.h>
diff --git a/iconv/gconv_dl.c b/iconv/gconv_dl.c
index 8217b7e553..b0ab2ffcba 100644
--- a/iconv/gconv_dl.c
+++ b/iconv/gconv_dl.c
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <dlfcn.h>
diff --git a/iconv/gconv_int.h b/iconv/gconv_int.h
index a2fcb93740..728580e9ee 100644
--- a/iconv/gconv_int.h
+++ b/iconv/gconv_int.h
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _GCONV_INT_H
#define _GCONV_INT_H 1
diff --git a/iconv/gconv_open.c b/iconv/gconv_open.c
index 07ebb9b959..a8ebd61f20 100644
--- a/iconv/gconv_open.c
+++ b/iconv/gconv_open.c
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <locale.h>
diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c
index 67761603f9..8697309da7 100644
--- a/iconv/gconv_simple.c
+++ b/iconv/gconv_simple.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <byteswap.h>
#include <dlfcn.h>
diff --git a/iconv/gconv_trans.c b/iconv/gconv_trans.c
index 1f1dd01b19..64ca97d3f2 100644
--- a/iconv/gconv_trans.c
+++ b/iconv/gconv_trans.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <dlfcn.h>
diff --git a/iconv/iconv.c b/iconv/iconv.c
index d0f5528f55..2435bfde8e 100644
--- a/iconv/iconv.c
+++ b/iconv/iconv.c
@@ -15,9 +15,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <stddef.h> /* for NULL */
#include <errno.h>
diff --git a/iconv/iconv.h b/iconv/iconv.h
index 774b0f1b4a..8fcba97ca1 100644
--- a/iconv/iconv.h
+++ b/iconv/iconv.h
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _ICONV_H
#define _ICONV_H 1
diff --git a/iconv/iconv_charmap.c b/iconv/iconv_charmap.c
index 09bfa92df2..df28e1c3a1 100644
--- a/iconv/iconv_charmap.c
+++ b/iconv/iconv_charmap.c
@@ -14,8 +14,7 @@
GNU General Public License for more details.
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. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <assert.h>
#include <errno.h>
diff --git a/iconv/iconv_close.c b/iconv/iconv_close.c
index 038acc69e2..4b6a5eb9a1 100644
--- a/iconv/iconv_close.c
+++ b/iconv/iconv_close.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <iconv.h>
diff --git a/iconv/iconv_open.c b/iconv/iconv_open.c
index e4fed93ecb..b5fcd0b569 100644
--- a/iconv/iconv_open.c
+++ b/iconv/iconv_open.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <alloca.h>
#include <errno.h>
diff --git a/iconv/iconv_prog.c b/iconv/iconv_prog.c
index 0d62a07147..36168a1a91 100644
--- a/iconv/iconv_prog.c
+++ b/iconv/iconv_prog.c
@@ -14,8 +14,7 @@
GNU General Public License for more details.
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. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <argp.h>
#include <assert.h>
diff --git a/iconv/iconv_prog.h b/iconv/iconv_prog.h
index b05de32df1..9690ae66aa 100644
--- a/iconv/iconv_prog.h
+++ b/iconv/iconv_prog.h
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _ICONV_PROG_H
#define _ICONV_PROG_H 1
diff --git a/iconv/iconvconfig.c b/iconv/iconvconfig.c
index 9738ed890d..0379ec37a0 100644
--- a/iconv/iconvconfig.c
+++ b/iconv/iconvconfig.c
@@ -14,8 +14,7 @@
GNU General Public License for more details.
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. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#include <argp.h>
#include <assert.h>
diff --git a/iconv/iconvconfig.h b/iconv/iconvconfig.h
index ca3441b642..828ceaa2d8 100644
--- a/iconv/iconvconfig.h
+++ b/iconv/iconvconfig.h
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser 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. */
+ License along with the GNU C Library; see the file COPYING.LIB. If
+ not, see <http://www.gnu.org/licenses/>. */
#include <stdint.h>
diff --git a/iconv/loop.c b/iconv/loop.c
index e129261d71..e11e86b5ec 100644
--- a/iconv/loop.c
+++ b/iconv/loop.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
/* This file provides a frame for the reader loop in all conversion modules.
The actual code must (of course) be provided in the actual module source
diff --git a/iconv/skeleton.c b/iconv/skeleton.c
index 72ac53641f..934b1fdde8 100644
--- a/iconv/skeleton.c
+++ b/iconv/skeleton.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
/* This file can be included to provide definitions of several things
many modules have in common. It can be customized using the following
diff --git a/iconv/strtab.c b/iconv/strtab.c
index 37b9077276..10b51b4df7 100644
--- a/iconv/strtab.c
+++ b/iconv/strtab.c
@@ -13,8 +13,7 @@
GNU General Public License for more details.
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. */
+ along with this program; if not, see <http://www.gnu.org/licenses/>. */
#ifdef HAVE_CONFIG_H
# include <config.h>
diff --git a/iconv/tst-iconv2.c b/iconv/tst-iconv2.c
index 8807e09c8c..90a0e0d0fd 100644
--- a/iconv/tst-iconv2.c
+++ b/iconv/tst-iconv2.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <iconv.h>
diff --git a/iconv/tst-iconv5.c b/iconv/tst-iconv5.c
index 013a48b7ef..4e8aa29db8 100644
--- a/iconv/tst-iconv5.c
+++ b/iconv/tst-iconv5.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
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. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <iconv.h>
#include <string.h>