diff options
author | erwin <erwin@FreeBSD.org> | 2003-06-22 23:58:16 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2003-06-22 23:58:16 +0800 |
commit | 0a94e492e121aafe4f6287206a5a1a4cde8a3e87 (patch) | |
tree | a7ad4a9f52ec73e38846a344a20aa29798345979 /devel/global/files | |
parent | 76c02a1d477634f6d36c8f7abe327c9b006892e7 (diff) | |
download | freebsd-ports-gnome-0a94e492e121aafe4f6287206a5a1a4cde8a3e87.tar.gz freebsd-ports-gnome-0a94e492e121aafe4f6287206a5a1a4cde8a3e87.tar.zst freebsd-ports-gnome-0a94e492e121aafe4f6287206a5a1a4cde8a3e87.zip |
- updated to global 4.5.3
- added a patch to fix a header inclusion problem in strbuf.h
- updated WWW link
- removed the anoying configure warning:
configure: WARNING: you should use --build, --host, --target
- moved the @unexec install-info thing in pkg-plist
- give maintainership to submitter
PR: 53263
Submitted by: Rui Lopes <rui@ruilopes.com>
Approved by: maintainer
Diffstat (limited to 'devel/global/files')
-rw-r--r-- | devel/global/files/patch-compat.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/global/files/patch-compat.h b/devel/global/files/patch-compat.h new file mode 100644 index 000000000000..76d1b2aefd85 --- /dev/null +++ b/devel/global/files/patch-compat.h @@ -0,0 +1,11 @@ +--- libdb/compat.h.orig Thu Jun 5 04:36:52 2003 ++++ libdb/compat.h Wed Jun 18 22:02:55 2003 +@@ -91,7 +91,7 @@ + #define bcopy(a, b, n) memmove(b, a, n) + #endif + +-#if defined(BSD) || defined(BSD4_3) ++#if 0 + #define strchr(a, b) index(a, b) + #define strrchr(a, b) rindex(a, b) + #define memcmp(a, b, n) bcmp(a, b, n) |