summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes2
-rw-r--r--LICENSE2
-rw-r--r--Makefile.in4
-rw-r--r--README2
-rw-r--r--configure.ac (renamed from configure.in)6
-rw-r--r--lzf.c4
-rw-r--r--lzf.h2
-rw-r--r--lzfP.h2
-rw-r--r--lzf_c.c2
-rw-r--r--lzf_d.c2
10 files changed, 16 insertions, 12 deletions
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.in b/configure.ac
index b18a9fb..c289d82 100644
--- a/configure.in
+++ b/configure.ac
@@ -1,4 +1,5 @@
-AC_INIT(lzfP.h)
+AC_INIT
+AC_CONFIG_SRCDIR([lzfP.h])
AC_CONFIG_HEADER(config.h)
@@ -19,4 +20,5 @@ else
AC_MSG_RESULT(no gcc)
fi
-AC_OUTPUT(Makefile)
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT
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: