summaryrefslogtreecommitdiff
path: root/gs/jpeg/rdgif.c
diff options
context:
space:
mode:
authorRalph Giles <ralph.giles@artifex.com>2005-12-28 20:45:24 +0000
committerRalph Giles <ralph.giles@artifex.com>2005-12-28 20:45:24 +0000
commit3a3287f5af52f6a956a03574dfd079dbe43038c6 (patch)
tree85101323ffd5ce2f3d604b68c364def214af713c /gs/jpeg/rdgif.c
parent0df6c7a810747d2d8209cc62ab1d24bd859b293b (diff)
Remove our local jpeg in favor of one copied from tags.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@6395 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/jpeg/rdgif.c')
-rw-r--r--gs/jpeg/rdgif.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/gs/jpeg/rdgif.c b/gs/jpeg/rdgif.c
deleted file mode 100644
index b27c1675d..000000000
--- a/gs/jpeg/rdgif.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * rdgif.c
- *
- * Copyright (C) 1991-1997, Thomas G. Lane.
- * This file is part of the Independent JPEG Group's software.
- * For conditions of distribution and use, see the accompanying README file.
- *
- * This file contains routines to read input images in GIF format.
- *
- *****************************************************************************
- * NOTE: to avoid entanglements with Unisys' patent on LZW compression, *
- * the ability to read GIF files has been removed from the IJG distribution. *
- * Sorry about that. *
- *****************************************************************************
- *
- * We are required to state that
- * "The Graphics Interchange Format(c) is the Copyright property of
- * CompuServe Incorporated. GIF(sm) is a Service Mark property of
- * CompuServe Incorporated."
- */
-
-#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
-
-#ifdef GIF_SUPPORTED
-
-/*
- * The module selection routine for GIF format input.
- */
-
-GLOBAL(cjpeg_source_ptr)
-jinit_read_gif (j_compress_ptr cinfo)
-{
- fprintf(stderr, "GIF input is unsupported for legal reasons. Sorry.\n");
- exit(EXIT_FAILURE);
- return NULL; /* keep compiler happy */
-}
-
-#endif /* GIF_SUPPORTED */