summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS12
-rw-r--r--dw/fltkcomplexbutton.cc5
-rw-r--r--dw/fltkcomplexbutton.hh5
-rw-r--r--src/binaryconst.h5
-rw-r--r--src/md5.c9
-rw-r--r--src/md5.h9
6 files changed, 41 insertions, 4 deletions
diff --git a/AUTHORS b/AUTHORS
index c22dd7ce..b80e979b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -74,3 +74,15 @@ patches.
Contributions are always welcome!
+
+
+---------------
+Non-Dillo code:
+---------------
+
+* dw/fltkcomplexbutton.(cc|hh) contain code from the FLTK project whose
+ copyright is held by Bill Spitzak and others.
+* src/binaryconst.h contains code by Tom Torfs that the author placed in the
+ public domain.
+* src/md5.[ch] contain code by L. Peter Deutsch whose copyright is held by
+ Aladdin Enterprises.
diff --git a/dw/fltkcomplexbutton.cc b/dw/fltkcomplexbutton.cc
index 8f847218..0f124cf9 100644
--- a/dw/fltkcomplexbutton.cc
+++ b/dw/fltkcomplexbutton.cc
@@ -1,5 +1,6 @@
-// fltkcomplexbutton.cc contains code from FLTK 1.3's src/Fl_Button.cxx
-// that is Copyright 1998-2010 by Bill Spitzak and others.
+// fltkcomplexbutton.cc is derived from src/Fl_Button.cxx from FLTK's 1.3
+// branch at http://fltk.org in early 2011.
+// src/Fl_Button.cxx is Copyright 1998-2010 by Bill Spitzak and others.
/*
* This program is free software; you can redistribute it and/or modify
diff --git a/dw/fltkcomplexbutton.hh b/dw/fltkcomplexbutton.hh
index 3a14cfb2..43be6b57 100644
--- a/dw/fltkcomplexbutton.hh
+++ b/dw/fltkcomplexbutton.hh
@@ -1,6 +1,7 @@
-// fltkcomplexbutton.hh contains code from FLTK 1.3's FL/Fl_Button.H
-// that is Copyright 1998-2010 by Bill Spitzak and others.
+// fltkcomplexbutton.hh is derived from FL/Fl_Button.H from FLTK's 1.3 branch
+// at http://fltk.org in early 2011.
+// FL/Fl_Button.H is Copyright 1998-2010 by Bill Spitzak and others.
/*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/binaryconst.h b/src/binaryconst.h
index b5b9735b..09d4e7fa 100644
--- a/src/binaryconst.h
+++ b/src/binaryconst.h
@@ -1,6 +1,11 @@
#ifndef __BINARYCONST_H__
#define __BINARYCONST_H__
+/* binaryconst.h was integrated into the Dillo project in April 2004, and
+ * presumably comes from the ancestor of the code found at
+ * http://cprog.tomsweb.net/binconst.txt
+ */
+
/* Macros for allowing binary constants in C
* By Tom Torfs - donated to the public domain */
diff --git a/src/md5.c b/src/md5.c
index c35d96c5..bd1ffb16 100644
--- a/src/md5.c
+++ b/src/md5.c
@@ -1,4 +1,13 @@
/*
+ * md5.c was taken from "RFC1321-based (RSA-free) MD5 library" by L. Peter
+ * Deutsch at http://sourceforge.net/projects/libmd5-rfc/ in October 2011.
+ *
+ * The code was not modified when integrated into the Dillo project, but you
+ * should check the source repository to be sure that there have not been
+ * modifications since this notice.
+ */
+
+/*
Copyright (C) 1999, 2000, 2002 Aladdin Enterprises. All rights reserved.
This software is provided 'as-is', without any express or implied
diff --git a/src/md5.h b/src/md5.h
index 698c995d..184a14b7 100644
--- a/src/md5.h
+++ b/src/md5.h
@@ -1,4 +1,13 @@
/*
+ * md5.h was taken from "RFC1321-based (RSA-free) MD5 library" by L. Peter
+ * Deutsch at http://sourceforge.net/projects/libmd5-rfc/ in October 2011.
+ *
+ * The code was not modified when integrated into the Dillo project, but you
+ * should check the source repository to be sure that there have not been
+ * modifications since this notice.
+ */
+
+/*
Copyright (C) 1999, 2002 Aladdin Enterprises. All rights reserved.
This software is provided 'as-is', without any express or implied