summaryrefslogtreecommitdiff
path: root/graphics/tiff/patches
diff options
context:
space:
mode:
authorwiz <wiz>2005-07-14 14:59:10 +0000
committerwiz <wiz>2005-07-14 14:59:10 +0000
commitf3c2bac25af2f6fb31f43c23850fcbea35eca811 (patch)
tree1345c2fc2ed54939afb989dbcd64ea3bd1925fe2 /graphics/tiff/patches
parent4b86f1d2f8543184a325df83664113587e44d902 (diff)
downloadpkgsrc-f3c2bac25af2f6fb31f43c23850fcbea35eca811.tar.gz
Add lfind replacement function. From libtiff CVS.
Diffstat (limited to 'graphics/tiff/patches')
-rw-r--r--graphics/tiff/patches/patch-at122
-rw-r--r--graphics/tiff/patches/patch-au14
-rw-r--r--graphics/tiff/patches/patch-av39
-rw-r--r--graphics/tiff/patches/patch-aw59
-rw-r--r--graphics/tiff/patches/patch-ax21
-rw-r--r--graphics/tiff/patches/patch-ay46
6 files changed, 301 insertions, 0 deletions
diff --git a/graphics/tiff/patches/patch-at b/graphics/tiff/patches/patch-at
new file mode 100644
index 00000000000..1a8496ed0ac
--- /dev/null
+++ b/graphics/tiff/patches/patch-at
@@ -0,0 +1,122 @@
+$NetBSD: patch-at,v 1.3 2005/07/14 14:59:10 wiz Exp $
+
+--- configure.orig 2005-07-05 18:37:50.000000000 +0200
++++ configure
+@@ -22736,6 +22736,117 @@ done
+
+
+
++for ac_func in lfind
++do
++as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
++echo "$as_me:$LINENO: checking for $ac_func" >&5
++echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
++if eval "test \"\${$as_ac_var+set}\" = set"; then
++ echo $ECHO_N "(cached) $ECHO_C" >&6
++else
++ cat >conftest.$ac_ext <<_ACEOF
++/* confdefs.h. */
++_ACEOF
++cat confdefs.h >>conftest.$ac_ext
++cat >>conftest.$ac_ext <<_ACEOF
++/* end confdefs.h. */
++/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
++ For example, HP-UX 11i <limits.h> declares gettimeofday. */
++#define $ac_func innocuous_$ac_func
++
++/* System header to define __stub macros and hopefully few prototypes,
++ which can conflict with char $ac_func (); below.
++ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
++ <limits.h> exists even on freestanding compilers. */
++
++#ifdef __STDC__
++# include <limits.h>
++#else
++# include <assert.h>
++#endif
++
++#undef $ac_func
++
++/* Override any gcc2 internal prototype to avoid an error. */
++#ifdef __cplusplus
++extern "C"
++{
++#endif
++/* We use char because int might match the return type of a gcc2
++ builtin and then its argument prototype would still apply. */
++char $ac_func ();
++/* The GNU C library defines this for functions which it implements
++ to always fail with ENOSYS. Some functions are actually named
++ something starting with __ and the normal name is an alias. */
++#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
++choke me
++#else
++char (*f) () = $ac_func;
++#endif
++#ifdef __cplusplus
++}
++#endif
++
++int
++main ()
++{
++return f != $ac_func;
++ ;
++ return 0;
++}
++_ACEOF
++rm -f conftest.$ac_objext conftest$ac_exeext
++if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
++ (eval $ac_link) 2>conftest.er1
++ ac_status=$?
++ grep -v '^ *+' conftest.er1 >conftest.err
++ rm -f conftest.er1
++ cat conftest.err >&5
++ echo "$as_me:$LINENO: \$? = $ac_status" >&5
++ (exit $ac_status); } &&
++ { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
++ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
++ (eval $ac_try) 2>&5
++ ac_status=$?
++ echo "$as_me:$LINENO: \$? = $ac_status" >&5
++ (exit $ac_status); }; } &&
++ { ac_try='test -s conftest$ac_exeext'
++ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
++ (eval $ac_try) 2>&5
++ ac_status=$?
++ echo "$as_me:$LINENO: \$? = $ac_status" >&5
++ (exit $ac_status); }; }; then
++ eval "$as_ac_var=yes"
++else
++ echo "$as_me: failed program was:" >&5
++sed 's/^/| /' conftest.$ac_ext >&5
++
++eval "$as_ac_var=no"
++fi
++rm -f conftest.err conftest.$ac_objext \
++ conftest$ac_exeext conftest.$ac_ext
++fi
++echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
++echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
++if test `eval echo '${'$as_ac_var'}'` = yes; then
++ cat >>confdefs.h <<_ACEOF
++#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
++_ACEOF
++
++else
++ case $LIBOBJS in
++ "$ac_func.$ac_objext" | \
++ *" $ac_func.$ac_objext" | \
++ "$ac_func.$ac_objext "* | \
++ *" $ac_func.$ac_objext "* ) ;;
++ *) LIBOBJS="$LIBOBJS $ac_func.$ac_objext" ;;
++esac
++
++fi
++done
++
++
++
+ echo "$as_me:$LINENO: checking native cpu bit order" >&5
+ echo $ECHO_N "checking native cpu bit order... $ECHO_C" >&6
+ case "$target_cpu" in
diff --git a/graphics/tiff/patches/patch-au b/graphics/tiff/patches/patch-au
new file mode 100644
index 00000000000..16859441e22
--- /dev/null
+++ b/graphics/tiff/patches/patch-au
@@ -0,0 +1,14 @@
+$NetBSD: patch-au,v 1.3 2005/07/14 14:59:10 wiz Exp $
+
+--- libtiff/tif_config.h.in.orig 2005-04-15 19:13:34.000000000 +0200
++++ libtiff/tif_config.h.in
+@@ -52,6 +52,9 @@
+ /* Define to 1 if you have the `isascii' function. */
+ #undef HAVE_ISASCII
+
++/* Define to 1 if you have the `lfind' function. */
++#undef HAVE_LFIND
++
+ /* Define to 1 if you have the `c' library (-lc). */
+ #undef HAVE_LIBC
+
diff --git a/graphics/tiff/patches/patch-av b/graphics/tiff/patches/patch-av
new file mode 100644
index 00000000000..d1edc5c529d
--- /dev/null
+++ b/graphics/tiff/patches/patch-av
@@ -0,0 +1,39 @@
+$NetBSD: patch-av,v 1.3 2005/07/14 14:59:10 wiz Exp $
+
+--- libtiff/tiffiop.h.orig 2005-07-05 18:38:13.000000000 +0200
++++ libtiff/tiffiop.h
+@@ -32,26 +32,29 @@
+
+ #include "tif_config.h"
+
+-#if HAVE_FCNTL_H
++#ifdef HAVE_FCNTL_H
+ # include <fcntl.h>
+ #endif
+
+-#if HAVE_SYS_TYPES_H
++#ifdef HAVE_SYS_TYPES_H
+ # include <sys/types.h>
+ #endif
+
+-#if HAVE_STRING_H
++#ifdef HAVE_STRING_H
+ # include <string.h>
+ #endif
+
+-#if HAVE_ASSERT_H
++#ifdef HAVE_ASSERT_H
+ # include <assert.h>
+ #else
+ # define assert(x)
+ #endif
+
+-#if HAVE_SEARCH_H
++#ifdef HAVE_SEARCH_H
+ # include <search.h>
++#else
++extern void *lfind(const void *, const void *, size_t *, size_t,
++ int (*)(const void *, const void *));
+ #endif
+
+ #include "tiffio.h"
diff --git a/graphics/tiff/patches/patch-aw b/graphics/tiff/patches/patch-aw
new file mode 100644
index 00000000000..84c6c0b4c1e
--- /dev/null
+++ b/graphics/tiff/patches/patch-aw
@@ -0,0 +1,59 @@
+$NetBSD: patch-aw,v 1.3 2005/07/14 14:59:10 wiz Exp $
+
+--- port/lfind.c.orig 2005-07-14 16:42:34.000000000 +0200
++++ port/lfind.c
+@@ -0,0 +1,54 @@
++
++/*
++ * Copyright (c) 1989, 1993
++ * The Regents of the University of California. All rights reserved.
++ *
++ * This code is derived from software contributed to Berkeley by
++ * Roger L. Snyder.
++ *
++ * Redistribution and use in source and binary forms, with or without
++ * modification, are permitted provided that the following conditions
++ * are met:
++ * 1. Redistributions of source code must retain the above copyright
++ * notice, this list of conditions and the following disclaimer.
++ * 2. Redistributions in binary form must reproduce the above copyright
++ * notice, this list of conditions and the following disclaimer in the
++ * documentation and/or other materials provided with the distribution.
++ * 3. Neither the name of the University nor the names of its contributors
++ * may be used to endorse or promote products derived from this software
++ * without specific prior written permission.
++ *
++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
++ * SUCH DAMAGE.
++ */
++
++#include <sys/types.h>
++
++#ifndef NULL
++# define NULL 0
++#endif
++
++typedef int (*cmp_fn_t) __P((const void *, const void *));
++
++void *
++lfind(const void *key, const void *base, size_t *nmemb, size_t size,
++ cmp_fn_t compar)
++{
++ char *element, *end;
++
++ end = (char *)base + *nmemb * size;
++ for (element = (char *)base; element < end; element += size)
++ if (!compar(element, key)) /* key found */
++ return element;
++
++ return NULL;
++}
diff --git a/graphics/tiff/patches/patch-ax b/graphics/tiff/patches/patch-ax
new file mode 100644
index 00000000000..661a350e6d2
--- /dev/null
+++ b/graphics/tiff/patches/patch-ax
@@ -0,0 +1,21 @@
+$NetBSD: patch-ax,v 1.3 2005/07/14 14:59:10 wiz Exp $
+
+--- port/Makefile.in.orig 2005-07-14 16:45:12.000000000 +0200
++++ port/Makefile.in
+@@ -66,7 +66,7 @@ host_triplet = @host@
+ target_triplet = @target@
+ subdir = port
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in getopt.c \
+- strcasecmp.c strtoul.c
++ lfind.c strcasecmp.c strtoul.c
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
+ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+@@ -284,6 +284,7 @@ distclean-compile:
+ -rm -f *.tab.c
+
+ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/lfind.Plo@am__quote@
+ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/strcasecmp.Plo@am__quote@
+ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/strtoul.Plo@am__quote@
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dummy.Plo@am__quote@
diff --git a/graphics/tiff/patches/patch-ay b/graphics/tiff/patches/patch-ay
new file mode 100644
index 00000000000..9bda457aa71
--- /dev/null
+++ b/graphics/tiff/patches/patch-ay
@@ -0,0 +1,46 @@
+$NetBSD: patch-ay,v 1.1 2005/07/14 14:59:10 wiz Exp $
+
+--- libtiff/Makefile.in.orig 2005-07-05 18:38:08.000000000 +0200
++++ libtiff/Makefile.in
+@@ -93,7 +93,8 @@ am__installdirs = "$(DESTDIR)$(libdir)"
+ "$(DESTDIR)$(libtiffincludedir)"
+ libLTLIBRARIES_INSTALL = $(INSTALL)
+ LTLIBRARIES = $(lib_LTLIBRARIES)
+-libtiff_la_LIBADD =
++am__DEPENDENCIES_1 = $(top_builddir)/port/libport.la
++libtiff_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+ am__objects_1 = tif_aux.lo tif_close.lo tif_codec.lo tif_color.lo \
+ tif_compress.lo tif_dir.lo tif_dirinfo.lo tif_dirread.lo \
+ tif_dirwrite.lo tif_dumpmode.lo tif_error.lo tif_extension.lo \
+@@ -105,7 +106,7 @@ am__objects_1 = tif_aux.lo tif_close.lo
+ tif_warning.lo tif_write.lo tif_zip.lo
+ am_libtiff_la_OBJECTS = $(am__objects_1)
+ libtiff_la_OBJECTS = $(am_libtiff_la_OBJECTS)
+-am__DEPENDENCIES_1 = $(top_builddir)/libtiff/libtiff.la
++am__DEPENDENCIES_2 = $(top_builddir)/libtiff/libtiff.la
+ am__objects_2 = tif_stream.lo
+ am_libtiffxx_la_OBJECTS = $(am__objects_2)
+ libtiffxx_la_OBJECTS = $(am_libtiffxx_la_OBJECTS)
+@@ -113,8 +114,7 @@ libtiffxx_la_OBJECTS = $(am_libtiffxx_la
+ PROGRAMS = $(noinst_PROGRAMS)
+ am_mkg3states_OBJECTS = mkg3states.$(OBJEXT)
+ mkg3states_OBJECTS = $(am_mkg3states_OBJECTS)
+-am__DEPENDENCIES_2 = $(top_builddir)/port/libport.la
+-mkg3states_DEPENDENCIES = $(am__DEPENDENCIES_2)
++mkg3states_DEPENDENCIES = $(am__DEPENDENCIES_1)
+ DEFAULT_INCLUDES = -I. -I$(srcdir) -I. -I.
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
+@@ -347,10 +347,11 @@ lib_LTLIBRARIES = libtiff.la $(am__appen
+ libtiff_la_SOURCES = $(SRCS)
+ libtiff_la_LDFLAGS = -no-undefined -version-number \
+ $(LIBTIFF_VERSION_INFO) $(am__append_3)
++libtiff_la_LIBADD = $(LIBPORT)
+ libtiffxx_la_SOURCES = $(SRCSXX)
+ libtiffxx_la_LDFLAGS = -no-undefined -version-number \
+ $(LIBTIFF_VERSION_INFO) $(am__append_4)
+-libtiffxx_la_LIBADD = $(LIBTIFF)
++libtiffxx_la_LIBADD = $(LIBTIFF) $(LIBPORT)
+ libtiffxx_la_DEPENDENCIES = libtiff.la
+ mkg3states_SOURCES = mkg3states.c tif_fax3.h
+ mkg3states_LDADD = $(LIBPORT)