summaryrefslogtreecommitdiffhomepage
path: root/mixlib
diff options
context:
space:
mode:
Diffstat (limited to 'mixlib')
-rw-r--r--mixlib/gettext.h2
-rw-r--r--mixlib/mix.c4
-rw-r--r--mixlib/mix.h4
-rw-r--r--mixlib/mix_code_file.c4
-rw-r--r--mixlib/mix_code_file.h2
-rw-r--r--mixlib/mix_config.c4
-rw-r--r--mixlib/mix_config.h4
-rw-r--r--mixlib/mix_device.c2
-rw-r--r--mixlib/mix_device.h2
-rw-r--r--mixlib/mix_eval.c2
-rw-r--r--mixlib/mix_eval.h2
-rw-r--r--mixlib/mix_eval_scanner.l4
-rw-r--r--mixlib/mix_file.c2
-rw-r--r--mixlib/mix_file.h2
-rw-r--r--mixlib/mix_ins.c2
-rw-r--r--mixlib/mix_ins.h2
-rw-r--r--mixlib/mix_io.c2
-rw-r--r--mixlib/mix_io.h2
-rw-r--r--mixlib/mix_parser.c2
-rw-r--r--mixlib/mix_parser.h2
-rw-r--r--mixlib/mix_predicate.c4
-rw-r--r--mixlib/mix_predicate.h2
-rw-r--r--mixlib/mix_predicate_list.c2
-rw-r--r--mixlib/mix_predicate_list.h2
-rw-r--r--mixlib/mix_scanner.l2
-rw-r--r--mixlib/mix_src_file.c2
-rw-r--r--mixlib/mix_src_file.h2
-rw-r--r--mixlib/mix_symbol_table.c2
-rw-r--r--mixlib/mix_symbol_table.h2
-rw-r--r--mixlib/mix_types.c4
-rw-r--r--mixlib/mix_types.h2
-rw-r--r--mixlib/mix_vm.c2
-rw-r--r--mixlib/mix_vm.h2
-rw-r--r--mixlib/mix_vm_clock.c4
-rw-r--r--mixlib/mix_vm_clock.h2
-rw-r--r--mixlib/mix_vm_command.c4
-rw-r--r--mixlib/mix_vm_command.h4
-rw-r--r--mixlib/mix_vm_dump.c2
-rw-r--r--mixlib/mix_vm_dump.h2
-rw-r--r--mixlib/testsuite/mix_device_t.c2
-rw-r--r--mixlib/testsuite/mix_eval_t.c2
-rw-r--r--mixlib/testsuite/mix_ins_t.c2
-rw-r--r--mixlib/testsuite/mix_parser_t.c2
-rw-r--r--mixlib/testsuite/mix_types_t.c2
-rw-r--r--mixlib/testsuite/mix_vm_ins_t.c2
-rw-r--r--mixlib/testsuite/test.h2
-rw-r--r--mixlib/xmix_device.c2
-rw-r--r--mixlib/xmix_device.h2
-rw-r--r--mixlib/xmix_eval.h2
-rw-r--r--mixlib/xmix_io.c2
-rw-r--r--mixlib/xmix_io.h2
-rw-r--r--mixlib/xmix_parser.h2
-rw-r--r--mixlib/xmix_vm.c2
-rw-r--r--mixlib/xmix_vm.h4
-rw-r--r--mixlib/xmix_vm_command.c4
-rw-r--r--mixlib/xmix_vm_command.h4
-rw-r--r--mixlib/xmix_vm_handlers.c4
-rw-r--r--mixlib/xmix_vm_handlers.h4
58 files changed, 74 insertions, 74 deletions
diff --git a/mixlib/gettext.h b/mixlib/gettext.h
index 8b262f4..fa3622f 100644
--- a/mixlib/gettext.h
+++ b/mixlib/gettext.h
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Library 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,
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
USA. */
#ifndef _LIBGETTEXT_H
diff --git a/mixlib/mix.c b/mixlib/mix.c
index 7a1f4a9..3578a57 100644
--- a/mixlib/mix.c
+++ b/mixlib/mix.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- mix.c :
* Implementation of the functions declared in mix.h
* ------------------------------------------------------------------
- * $Id: mix.c,v 1.5 2002/04/10 23:39:40 jao Exp $
+ * $Id: mix.c,v 1.6 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix.h b/mixlib/mix.h
index b9b3e4d..6a3fd1d 100644
--- a/mixlib/mix.h
+++ b/mixlib/mix.h
@@ -1,7 +1,7 @@
/* -*-c-*- ---------------- mix.h :
* Initialisation of the mix library
* ------------------------------------------------------------------
- * $Id: mix.h,v 1.6 2002/12/08 00:35:54 jao Exp $
+ * $Id: mix.h,v 1.7 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2000, 2001 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_code_file.c b/mixlib/mix_code_file.c
index 71a4ba4..ab67812 100644
--- a/mixlib/mix_code_file.c
+++ b/mixlib/mix_code_file.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- mix_code_file.c :
* Implementation of the functions declared in mix_code_file.h
* ------------------------------------------------------------------
- * $Id: mix_code_file.c,v 1.5 2003/06/04 01:33:24 jao Exp $
+ * $Id: mix_code_file.c,v 1.6 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2000, 2002, 2003 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_code_file.h b/mixlib/mix_code_file.h
index 0678910..84b89fb 100644
--- a/mixlib/mix_code_file.h
+++ b/mixlib/mix_code_file.h
@@ -16,7 +16,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_config.c b/mixlib/mix_config.c
index c62d527..694b18b 100644
--- a/mixlib/mix_config.c
+++ b/mixlib/mix_config.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- mix_config.c :
* Implementation of the functions declared in mix_config.h
* ------------------------------------------------------------------
- * $Id: mix_config.c,v 1.11 2004/06/23 10:46:17 jao Exp $
+ * $Id: mix_config.c,v 1.12 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_config.h b/mixlib/mix_config.h
index 1b82a51..9d2af32 100644
--- a/mixlib/mix_config.h
+++ b/mixlib/mix_config.h
@@ -1,7 +1,7 @@
/* -*-c-*- ---------------- mix_config.h :
* Basic config storage utility.
* ------------------------------------------------------------------
- * $Id: mix_config.h,v 1.5 2001/09/18 22:49:56 jao Exp $
+ * $Id: mix_config.h,v 1.6 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_device.c b/mixlib/mix_device.c
index e50896d..6a99e8a 100644
--- a/mixlib/mix_device.c
+++ b/mixlib/mix_device.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_device.h b/mixlib/mix_device.h
index 775b0cd..7830dfe 100644
--- a/mixlib/mix_device.h
+++ b/mixlib/mix_device.h
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_eval.c b/mixlib/mix_eval.c
index b629852..f6f816a 100644
--- a/mixlib/mix_eval.c
+++ b/mixlib/mix_eval.c
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_eval.h b/mixlib/mix_eval.h
index a7f961f..c1c1243 100644
--- a/mixlib/mix_eval.h
+++ b/mixlib/mix_eval.h
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_eval_scanner.l b/mixlib/mix_eval_scanner.l
index e9c9586..8d0d3bd 100644
--- a/mixlib/mix_eval_scanner.l
+++ b/mixlib/mix_eval_scanner.l
@@ -1,7 +1,7 @@
/* -*-c-*- ------------------ mix_eval_scanner.l :
* scanner used by mix_eval_t
* ------------------------------------------------------------------
- * $Id: mix_eval_scanner.l,v 1.3 2004/08/02 08:53:54 jao Exp $
+ * $Id: mix_eval_scanner.l,v 1.4 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2000, 2004 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_file.c b/mixlib/mix_file.c
index 816a380..383d3b4 100644
--- a/mixlib/mix_file.c
+++ b/mixlib/mix_file.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_file.h b/mixlib/mix_file.h
index bb9e7e3..059eebb 100644
--- a/mixlib/mix_file.h
+++ b/mixlib/mix_file.h
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_ins.c b/mixlib/mix_ins.c
index f7cb05f..1aa3f70 100644
--- a/mixlib/mix_ins.c
+++ b/mixlib/mix_ins.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_ins.h b/mixlib/mix_ins.h
index 7746e8c..07d8e38 100644
--- a/mixlib/mix_ins.h
+++ b/mixlib/mix_ins.h
@@ -16,7 +16,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_io.c b/mixlib/mix_io.c
index 8f3fb5d..31e43df 100644
--- a/mixlib/mix_io.c
+++ b/mixlib/mix_io.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_io.h b/mixlib/mix_io.h
index 61d35da..0e79d67 100644
--- a/mixlib/mix_io.h
+++ b/mixlib/mix_io.h
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_parser.c b/mixlib/mix_parser.c
index aca78f6..0dfcf81 100644
--- a/mixlib/mix_parser.c
+++ b/mixlib/mix_parser.c
@@ -16,7 +16,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_parser.h b/mixlib/mix_parser.h
index 8bc0dd6..2335fb1 100644
--- a/mixlib/mix_parser.h
+++ b/mixlib/mix_parser.h
@@ -16,7 +16,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_predicate.c b/mixlib/mix_predicate.c
index 5eb487d..2143757 100644
--- a/mixlib/mix_predicate.c
+++ b/mixlib/mix_predicate.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- mix_predicate.c :
* Implementation of the functions declared in mix_predicate.h
* ------------------------------------------------------------------
- * $Id: mix_predicate.c,v 1.5 2002/04/10 23:39:40 jao Exp $
+ * $Id: mix_predicate.c,v 1.6 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001, 2002 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_predicate.h b/mixlib/mix_predicate.h
index 63c33ef..903de57 100644
--- a/mixlib/mix_predicate.h
+++ b/mixlib/mix_predicate.h
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_predicate_list.c b/mixlib/mix_predicate_list.c
index 42f6ea6..1b68d35 100644
--- a/mixlib/mix_predicate_list.c
+++ b/mixlib/mix_predicate_list.c
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_predicate_list.h b/mixlib/mix_predicate_list.h
index ae67d95..d651df7 100644
--- a/mixlib/mix_predicate_list.h
+++ b/mixlib/mix_predicate_list.h
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_scanner.l b/mixlib/mix_scanner.l
index fd47d92..6150007 100644
--- a/mixlib/mix_scanner.l
+++ b/mixlib/mix_scanner.l
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_src_file.c b/mixlib/mix_src_file.c
index 4e1489b..b376643 100644
--- a/mixlib/mix_src_file.c
+++ b/mixlib/mix_src_file.c
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_src_file.h b/mixlib/mix_src_file.h
index 1392df2..d3a7461 100644
--- a/mixlib/mix_src_file.h
+++ b/mixlib/mix_src_file.h
@@ -18,7 +18,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_symbol_table.c b/mixlib/mix_symbol_table.c
index 2ddec40..dc56b7a 100644
--- a/mixlib/mix_symbol_table.c
+++ b/mixlib/mix_symbol_table.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_symbol_table.h b/mixlib/mix_symbol_table.h
index 844a0ac..c54c3f8 100644
--- a/mixlib/mix_symbol_table.h
+++ b/mixlib/mix_symbol_table.h
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_types.c b/mixlib/mix_types.c
index 58fe3c9..f87247a 100644
--- a/mixlib/mix_types.c
+++ b/mixlib/mix_types.c
@@ -1,7 +1,7 @@
/* -*-c-*- ------------------ mix_types.c :
* Implementation file for mix_types.h declarations.
* ------------------------------------------------------------------
- * $Id: mix_types.c,v 1.4 2004/06/09 22:56:26 jao Exp $
+ * $Id: mix_types.c,v 1.5 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_types.h b/mixlib/mix_types.h
index 54509f3..c628e05 100644
--- a/mixlib/mix_types.h
+++ b/mixlib/mix_types.h
@@ -16,7 +16,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_vm.c b/mixlib/mix_vm.c
index 95f9f41..71c8bae 100644
--- a/mixlib/mix_vm.c
+++ b/mixlib/mix_vm.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_vm.h b/mixlib/mix_vm.h
index 005bfc2..12b082a 100644
--- a/mixlib/mix_vm.h
+++ b/mixlib/mix_vm.h
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_vm_clock.c b/mixlib/mix_vm_clock.c
index 1d09939..cc39992 100644
--- a/mixlib/mix_vm_clock.c
+++ b/mixlib/mix_vm_clock.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- mix_vm_clock.c :
* Implementation of the functions declared in mix_vm_clock.h
* ------------------------------------------------------------------
- * $Id: mix_vm_clock.c,v 1.2 2001/09/11 22:53:20 jao Exp $
+ * $Id: mix_vm_clock.c,v 1.3 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2000, 2001 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_vm_clock.h b/mixlib/mix_vm_clock.h
index 706115e..3c19973 100644
--- a/mixlib/mix_vm_clock.h
+++ b/mixlib/mix_vm_clock.h
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_vm_command.c b/mixlib/mix_vm_command.c
index 55da6a5..350dae5 100644
--- a/mixlib/mix_vm_command.c
+++ b/mixlib/mix_vm_command.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- mix_vm_command.c :
* Implementation of the functions declared in mix_vm_command.h
* ------------------------------------------------------------------
- * $Id: mix_vm_command.c,v 1.29 2004/06/23 10:46:17 jao Exp $
+ * $Id: mix_vm_command.c,v 1.30 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_vm_command.h b/mixlib/mix_vm_command.h
index cedb650..1ff561f 100644
--- a/mixlib/mix_vm_command.h
+++ b/mixlib/mix_vm_command.h
@@ -1,7 +1,7 @@
/* -*-c-*- ---------------- mix_vm_command.h :
* declarations for mix_vm_command_t, describing commands issued to a vm
* ------------------------------------------------------------------
- * $Id: mix_vm_command.h,v 1.14 2001/09/16 22:32:12 jao Exp $
+ * $Id: mix_vm_command.h,v 1.15 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/mix_vm_dump.c b/mixlib/mix_vm_dump.c
index 91953fd..5c0bc32 100644
--- a/mixlib/mix_vm_dump.c
+++ b/mixlib/mix_vm_dump.c
@@ -15,7 +15,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.
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
diff --git a/mixlib/mix_vm_dump.h b/mixlib/mix_vm_dump.h
index 8c5e1bd..7f8b0c3 100644
--- a/mixlib/mix_vm_dump.h
+++ b/mixlib/mix_vm_dump.h
@@ -16,7 +16,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.
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
diff --git a/mixlib/testsuite/mix_device_t.c b/mixlib/testsuite/mix_device_t.c
index da4c8f9..8638d2f 100644
--- a/mixlib/testsuite/mix_device_t.c
+++ b/mixlib/testsuite/mix_device_t.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/testsuite/mix_eval_t.c b/mixlib/testsuite/mix_eval_t.c
index 83f9a5d..9b62fd6 100644
--- a/mixlib/testsuite/mix_eval_t.c
+++ b/mixlib/testsuite/mix_eval_t.c
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/testsuite/mix_ins_t.c b/mixlib/testsuite/mix_ins_t.c
index f643b47..8dcc619 100644
--- a/mixlib/testsuite/mix_ins_t.c
+++ b/mixlib/testsuite/mix_ins_t.c
@@ -15,7 +15,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.
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
diff --git a/mixlib/testsuite/mix_parser_t.c b/mixlib/testsuite/mix_parser_t.c
index 7bfa9d0..215fc70 100644
--- a/mixlib/testsuite/mix_parser_t.c
+++ b/mixlib/testsuite/mix_parser_t.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/testsuite/mix_types_t.c b/mixlib/testsuite/mix_types_t.c
index 694038e..ababead 100644
--- a/mixlib/testsuite/mix_types_t.c
+++ b/mixlib/testsuite/mix_types_t.c
@@ -16,7 +16,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.
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
diff --git a/mixlib/testsuite/mix_vm_ins_t.c b/mixlib/testsuite/mix_vm_ins_t.c
index ce368ee..458cbba 100644
--- a/mixlib/testsuite/mix_vm_ins_t.c
+++ b/mixlib/testsuite/mix_vm_ins_t.c
@@ -15,7 +15,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.
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
diff --git a/mixlib/testsuite/test.h b/mixlib/testsuite/test.h
index 6bf6306..7f8eb0c 100644
--- a/mixlib/testsuite/test.h
+++ b/mixlib/testsuite/test.h
@@ -13,7 +13,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.
+** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
diff --git a/mixlib/xmix_device.c b/mixlib/xmix_device.c
index 622a092..c61ab55 100644
--- a/mixlib/xmix_device.c
+++ b/mixlib/xmix_device.c
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_device.h b/mixlib/xmix_device.h
index a05d207..0eb3fa8 100644
--- a/mixlib/xmix_device.h
+++ b/mixlib/xmix_device.h
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_eval.h b/mixlib/xmix_eval.h
index b43803a..7516ed3 100644
--- a/mixlib/xmix_eval.h
+++ b/mixlib/xmix_eval.h
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_io.c b/mixlib/xmix_io.c
index b9881c0..a43d284 100644
--- a/mixlib/xmix_io.c
+++ b/mixlib/xmix_io.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_io.h b/mixlib/xmix_io.h
index 19cbe04..1346559 100644
--- a/mixlib/xmix_io.h
+++ b/mixlib/xmix_io.h
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_parser.h b/mixlib/xmix_parser.h
index 2621eb1..51f1560 100644
--- a/mixlib/xmix_parser.h
+++ b/mixlib/xmix_parser.h
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_vm.c b/mixlib/xmix_vm.c
index ecb67c9..d5b4e4b 100644
--- a/mixlib/xmix_vm.c
+++ b/mixlib/xmix_vm.c
@@ -15,7 +15,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_vm.h b/mixlib/xmix_vm.h
index f4773eb..7a634d4 100644
--- a/mixlib/xmix_vm.h
+++ b/mixlib/xmix_vm.h
@@ -2,7 +2,7 @@
* This file contains internal declarations used in the implementation
* of the mix_vm_t type.
* ------------------------------------------------------------------
- * $Id: xmix_vm.h,v 1.9 2004/06/06 19:53:13 jao Exp $
+ * $Id: xmix_vm.h,v 1.10 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
*
@@ -18,7 +18,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_vm_command.c b/mixlib/xmix_vm_command.c
index 211c1bf..370ffb7 100644
--- a/mixlib/xmix_vm_command.c
+++ b/mixlib/xmix_vm_command.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- xmix_vm_command.c :
* Implementation of the functions declared in xmix_vm_command.h
* ------------------------------------------------------------------
- * $Id: xmix_vm_command.c,v 1.3 2002/04/09 23:28:19 jao Exp $
+ * $Id: xmix_vm_command.c,v 1.4 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001, 2002 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_vm_command.h b/mixlib/xmix_vm_command.h
index 8ea1a76..ae2c2e7 100644
--- a/mixlib/xmix_vm_command.h
+++ b/mixlib/xmix_vm_command.h
@@ -1,7 +1,7 @@
/* -*-c-*- ---------------- xmix_vm_command.h :
* Private type declarations form mix_vm_command
* ------------------------------------------------------------------
- * $Id: xmix_vm_command.h,v 1.4 2004/06/23 10:46:17 jao Exp $
+ * $Id: xmix_vm_command.h,v 1.5 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001, 2004 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_vm_handlers.c b/mixlib/xmix_vm_handlers.c
index a5ff3da..ba7052b 100644
--- a/mixlib/xmix_vm_handlers.c
+++ b/mixlib/xmix_vm_handlers.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- xmix_vm_handlers.c :
* Implementation of the functions declared in xmix_vm_handlers.h
* ------------------------------------------------------------------
- * $Id: xmix_vm_handlers.c,v 1.9 2004/06/23 10:46:17 jao Exp $
+ * $Id: xmix_vm_handlers.c,v 1.10 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
diff --git a/mixlib/xmix_vm_handlers.h b/mixlib/xmix_vm_handlers.h
index 300f0d8..b3258f9 100644
--- a/mixlib/xmix_vm_handlers.h
+++ b/mixlib/xmix_vm_handlers.h
@@ -1,7 +1,7 @@
/* -*-c-*- ---------------- xmix_vm_handlers.h :
* mix_vm_cmd_dispatcher command handlers
* ------------------------------------------------------------------
- * $Id: xmix_vm_handlers.h,v 1.3 2001/09/16 22:37:39 jao Exp $
+ * $Id: xmix_vm_handlers.h,v 1.4 2005/09/20 19:43:13 jao Exp $
* ------------------------------------------------------------------
* Copyright (C) 2001 Free Software Foundation, Inc.
*
@@ -17,7 +17,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.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/