diff options
-rw-r--r-- | CONTRIBUTORS | 3 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | libdtv/liblx/xListFuncs.c | 1 | ||||
-rw-r--r-- | libdtv/liblx/xMemMgt.c | 2 | ||||
-rw-r--r-- | libdtv/libsi/si_parser.c | 1 |
5 files changed, 9 insertions, 0 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 39dcde13..c1536533 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -380,3 +380,6 @@ Joerg Riechardt <J.Riechardt@gmx.de> Holger Wächtler <holger@convergence.de> for some valuable advice during adapting to the NEWSTRUCT driver + +Jürgen Zimmermann <jnzimmer@informatik.uni-kl.de> + for adding some missing #includes to files in libdtv for gcc 3.2 @@ -1419,3 +1419,5 @@ Video Disk Recorder Revision History 2002-08-24: Version 1.1.8 - Fixed replaying the last few seconds of a recording. +- Added some missing #includes to files in libdtv for gcc 3.2 (thanks to Jürgen + Zimmermann). diff --git a/libdtv/liblx/xListFuncs.c b/libdtv/liblx/xListFuncs.c index 7457170e..01b85b85 100644 --- a/libdtv/liblx/xListFuncs.c +++ b/libdtv/liblx/xListFuncs.c @@ -25,6 +25,7 @@ // Free Software Foundation, Inc., 59 Temple Place - Suite 330, // Boston, MA 02111-1307, USA. +#include <string.h> #include "liblx.h" diff --git a/libdtv/liblx/xMemMgt.c b/libdtv/liblx/xMemMgt.c index 8f619bc8..c93713b0 100644 --- a/libdtv/liblx/xMemMgt.c +++ b/libdtv/liblx/xMemMgt.c @@ -26,6 +26,8 @@ // Boston, MA 02111-1307, USA. #include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <malloc.h> #include "liblx.h" diff --git a/libdtv/libsi/si_parser.c b/libdtv/libsi/si_parser.c index 063d93e6..be0d2549 100644 --- a/libdtv/libsi/si_parser.c +++ b/libdtv/libsi/si_parser.c @@ -26,6 +26,7 @@ // Boston, MA 02111-1307, USA. #include <stdio.h> +#include <string.h> #include <math.h> #include <time.h> |