diff options
author | kris <kris@FreeBSD.org> | 2002-08-23 11:36:33 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-08-23 11:36:33 +0800 |
commit | 4981d5c7cd75b641802385c761ccf91910a8cd47 (patch) | |
tree | 49033c4699435c1aa6ccf8f080d1553623416307 /biology/fasta3 | |
parent | e0db8023d98d01074bf33e215d007fc11bd732e9 (diff) | |
download | freebsd-ports-gnome-4981d5c7cd75b641802385c761ccf91910a8cd47.tar.gz freebsd-ports-gnome-4981d5c7cd75b641802385c761ccf91910a8cd47.tar.zst freebsd-ports-gnome-4981d5c7cd75b641802385c761ccf91910a8cd47.zip |
Prefer <limits.h> over <values.h> as the latter has been removed from
-current.
Noticed by: bento
Diffstat (limited to 'biology/fasta3')
-rw-r--r-- | biology/fasta3/files/patch-comp_thr.c | 11 | ||||
-rw-r--r-- | biology/fasta3/files/patch-compacc.c | 11 | ||||
-rw-r--r-- | biology/fasta3/files/patch-complib.c | 11 | ||||
-rw-r--r-- | biology/fasta3/files/patch-scaleswn.c | 11 |
4 files changed, 44 insertions, 0 deletions
diff --git a/biology/fasta3/files/patch-comp_thr.c b/biology/fasta3/files/patch-comp_thr.c new file mode 100644 index 000000000000..24a0904c0d1c --- /dev/null +++ b/biology/fasta3/files/patch-comp_thr.c @@ -0,0 +1,11 @@ +--- comp_thr.c.orig Thu Aug 22 20:32:10 2002 ++++ comp_thr.c Thu Aug 22 20:32:25 2002 +@@ -16,7 +16,7 @@ + #include <time.h> + + #ifdef UNIX +-#if !defined(__NetBSD__) && !defined(MacOSX) ++#if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(MacOSX) + #include <values.h> + #else + #include <limits.h> diff --git a/biology/fasta3/files/patch-compacc.c b/biology/fasta3/files/patch-compacc.c new file mode 100644 index 000000000000..c6a493f81a31 --- /dev/null +++ b/biology/fasta3/files/patch-compacc.c @@ -0,0 +1,11 @@ +--- compacc.c.orig Thu Aug 22 20:30:30 2002 ++++ compacc.c Thu Aug 22 20:30:43 2002 +@@ -11,7 +11,7 @@ + #if defined(UNIX) || defined(MSDOS) + #include <sys/types.h> + #endif +-#if !defined(__MWERKS__) && !defined(MacOSX) ++#if !defined(__FreeBSD__) && !defined(__MWERKS__) && !defined(MacOSX) + #include <values.h> + #else + #include <limits.h> diff --git a/biology/fasta3/files/patch-complib.c b/biology/fasta3/files/patch-complib.c new file mode 100644 index 000000000000..d5f27bd708d0 --- /dev/null +++ b/biology/fasta3/files/patch-complib.c @@ -0,0 +1,11 @@ +--- complib.c.orig Thu Aug 22 20:33:57 2002 ++++ complib.c Thu Aug 22 20:34:07 2002 +@@ -29,7 +29,7 @@ + #include <ctype.h> + #include <time.h> + #ifdef UNIX +-#if !defined(__NetBSD__) && !defined(MacOSX) ++#if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(MacOSX) + #include <values.h> + #else + #include <limits.h> diff --git a/biology/fasta3/files/patch-scaleswn.c b/biology/fasta3/files/patch-scaleswn.c new file mode 100644 index 000000000000..3fd5f2023b63 --- /dev/null +++ b/biology/fasta3/files/patch-scaleswn.c @@ -0,0 +1,11 @@ +--- scaleswn.c.orig Thu Aug 22 20:30:55 2002 ++++ scaleswn.c Thu Aug 22 20:31:06 2002 +@@ -26,7 +26,7 @@ + #include <math.h> + #include <string.h> + +-#if !defined(__MWERKS__) && !defined(MacOSX) ++#if !defined(__FreeBSD__) && !defined(__MWERKS__) && !defined(MacOSX) + #include <values.h> + #else + #include <limits.h> /* needed for LONG_MAX */ |