From 4ea2a2d5858c25172e9b30c8bdae71f33785dde2 Mon Sep 17 00:00:00 2001
From: root <root>
Date: Thu, 3 Mar 2005 17:06:44 +0000
Subject: *** empty log message ***

---
 Changes      |  2 ++
 LICENSE      |  2 +-
 Makefile.in  |  4 ++--
 README       |  2 +-
 configure.ac | 24 ++++++++++++++++++++++++
 configure.in | 22 ----------------------
 lzf.c        |  4 ++--
 lzf.h        |  2 +-
 lzfP.h       |  2 +-
 lzf_c.c      |  2 +-
 lzf_d.c      |  2 +-
 11 files changed, 36 insertions(+), 32 deletions(-)
 create mode 100644 configure.ac
 delete mode 100644 configure.in

diff --git a/Changes b/Changes
index 76ee9bf..aa26304 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 
+1.401 Thu Mar  3 18:00:52 CET 2005
 	- use cstring in c++, not string.h.
+        - change of contatc address.
 
 1.4  Wed Dec 15 08:08:49 CET 2004
 	- very very slight tuning of the hashing function.
diff --git a/LICENSE b/LICENSE
index e86d04c..00ec071 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2000-2003 Marc Alexander Lehmann <pcg@goof.com>
+Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de>
 
 Redistribution and use in source and binary forms, with or without modifica-
 tion, are permitted provided that the following conditions are met:
diff --git a/Makefile.in b/Makefile.in
index a01c230..f94e0cc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-VERSION = 1.4
+VERSION = 1.401
 
 prefix = @prefix@
 exec_prefix = @exec_prefix@
@@ -47,7 +47,7 @@ install: all
 dist:
 	mkdir liblzf-$(VERSION)
 	cp -Rp LICENSE README Makefile.in config.h.in \
-               configure configure.in install-sh \
+               configure configure.ac install-sh \
                lzf.h lzfP.h lzf_c.c lzf_d.c \
                crc32.h lzf.c Changes \
                liblzf-$(VERSION)
diff --git a/README b/README
index 5dc8721..1b8cee9 100644
--- a/README
+++ b/README
@@ -18,7 +18,7 @@ DESCRIPTION
     is really intented to be used inside larger programs.
 
 AUTHOR
-    This library was written by Marc Lehmann <pcg@goof.com> (See also
+    This library was written by Marc Lehmann <schmorp@schmorp.de> (See also
     http://liblzf.plan9.de/).
 
 
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..c289d82
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,24 @@
+AC_INIT
+AC_CONFIG_SRCDIR([lzfP.h])
+
+AC_CONFIG_HEADER(config.h)
+
+AC_PROG_CC
+AC_PROG_RANLIB
+AC_PROG_INSTALL
+AC_HEADER_STDC
+
+AC_CHECK_SIZEOF(short, 2)
+AC_CHECK_SIZEOF(int,   4)
+AC_CHECK_SIZEOF(long,  4)
+
+AC_C_CONST
+
+if test "$GCC" = yes; then
+   CFLAGS="$CFLAGS -O3 -funroll-all-loops"
+else
+   AC_MSG_RESULT(no gcc)
+fi
+
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT
diff --git a/configure.in b/configure.in
deleted file mode 100644
index b18a9fb..0000000
--- a/configure.in
+++ /dev/null
@@ -1,22 +0,0 @@
-AC_INIT(lzfP.h)
-
-AC_CONFIG_HEADER(config.h)
-
-AC_PROG_CC
-AC_PROG_RANLIB
-AC_PROG_INSTALL
-AC_HEADER_STDC
-
-AC_CHECK_SIZEOF(short, 2)
-AC_CHECK_SIZEOF(int,   4)
-AC_CHECK_SIZEOF(long,  4)
-
-AC_C_CONST
-
-if test "$GCC" = yes; then
-   CFLAGS="$CFLAGS -O3 -funroll-all-loops"
-else
-   AC_MSG_RESULT(no gcc)
-fi
-
-AC_OUTPUT(Makefile)
diff --git a/lzf.c b/lzf.c
index abd29db..a7a6a82 100644
--- a/lzf.c
+++ b/lzf.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000-2003 Marc Alexander Lehmann <pcg@goof.com>
+ * Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de>
  * 
  * Redistribution and use in source and binary forms, with or without modifica-
  * tion, are permitted provided that the following conditions are met:
@@ -54,7 +54,7 @@ usage (int ec)
 {
   fprintf (stderr, "\n"
            "lzf, a very lightweight compression/decompression filter\n"
-           "written by Marc Lehmann <pcg@goof.com> You can find more info at\n"
+           "written by Marc Lehmann <schmorp@schmorp.de> You can find more info at\n"
            "http://liblzf.plan9.de/\n"
            "\n"
  	   "USAGE: lzf -c [-b blocksize] | -d\n"
diff --git a/lzf.h b/lzf.h
index 54cc054..5e7ff74 100644
--- a/lzf.h
+++ b/lzf.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000-2003 Marc Alexander Lehmann <pcg@goof.com>
+ * Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de>
  * 
  * Redistribution and use in source and binary forms, with or without modifica-
  * tion, are permitted provided that the following conditions are met:
diff --git a/lzfP.h b/lzfP.h
index 014a152..33b9037 100644
--- a/lzfP.h
+++ b/lzfP.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000-2003 Marc Alexander Lehmann <pcg@goof.com>
+ * Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de>
  * 
  * Redistribution and use in source and binary forms, with or without modifica-
  * tion, are permitted provided that the following conditions are met:
diff --git a/lzf_c.c b/lzf_c.c
index da6b926..eeb114e 100644
--- a/lzf_c.c
+++ b/lzf_c.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000-2003 Marc Alexander Lehmann <pcg@goof.com>
+ * Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de>
  * 
  * Redistribution and use in source and binary forms, with or without modifica-
  * tion, are permitted provided that the following conditions are met:
diff --git a/lzf_d.c b/lzf_d.c
index 817bb2a..d0229d7 100644
--- a/lzf_d.c
+++ b/lzf_d.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000-2003 Marc Alexander Lehmann <pcg@goof.com>
+ * Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de>
  * 
  * Redistribution and use in source and binary forms, with or without modifica-
  * tion, are permitted provided that the following conditions are met:
-- 
cgit v1.2.3