summaryrefslogtreecommitdiff
path: root/devel/libexecinfo
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2004-07-19 05:42:23 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2004-07-19 05:42:23 +0000
commit65fd5b616d960530e6f099044c6cc54d98516e9b (patch)
tree655e23c8d211cf584b1236230d40e86ccbf6052b /devel/libexecinfo
parent- update MASTER_SITES (diff)
Update to 1.1.
Notes
Notes: svn path=/head/; revision=113939
Diffstat (limited to 'devel/libexecinfo')
-rw-r--r--devel/libexecinfo/Makefile5
-rw-r--r--devel/libexecinfo/distinfo4
-rw-r--r--devel/libexecinfo/files/patch-Makefile14
-rw-r--r--devel/libexecinfo/files/patch-execinfo.c18
-rw-r--r--devel/libexecinfo/files/patch-execinfo.h22
5 files changed, 4 insertions, 59 deletions
diff --git a/devel/libexecinfo/Makefile b/devel/libexecinfo/Makefile
index d51ca0d6191c..fc7d7aaa570a 100644
--- a/devel/libexecinfo/Makefile
+++ b/devel/libexecinfo/Makefile
@@ -6,10 +6,9 @@
#
PORTNAME= libexecinfo
-PORTVERSION= 1.0
-PORTREVISION= 2
+PORTVERSION= 1.1
CATEGORIES= devel
-MASTER_SITES= https://demo.portaone.com/~sobomax/freestuff/
+MASTER_SITES= http://www.portaone.com/~sobomax/
MAINTAINER= ports@FreeBSD.org
COMMENT= A library for inspecting program's backtrace
diff --git a/devel/libexecinfo/distinfo b/devel/libexecinfo/distinfo
index bb8940f8f0fa..a3625bd1c808 100644
--- a/devel/libexecinfo/distinfo
+++ b/devel/libexecinfo/distinfo
@@ -1,2 +1,2 @@
-MD5 (libexecinfo-1.0.tar.bz2) = 745579b7705227c5c79cd7af391a005b
-SIZE (libexecinfo-1.0.tar.bz2) = 4242
+MD5 (libexecinfo-1.1.tar.bz2) = 8e9e81c554c1c5d735bc877448e92b91
+SIZE (libexecinfo-1.1.tar.bz2) = 4841
diff --git a/devel/libexecinfo/files/patch-Makefile b/devel/libexecinfo/files/patch-Makefile
deleted file mode 100644
index 693544c52748..000000000000
--- a/devel/libexecinfo/files/patch-Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- Makefile 2003/08/10 05:00:23 1.1
-+++ Makefile 2003/08/10 05:00:34
-@@ -28,6 +28,8 @@
-
- SRCS= stacktraverse.c stacktraverse.h execinfo.c execinfo.h
-
-+INCS= execinfo.h
-+
- SHLIB_MAJOR= 1
- SHLIB_MINOR= 0
-
diff --git a/devel/libexecinfo/files/patch-execinfo.c b/devel/libexecinfo/files/patch-execinfo.c
deleted file mode 100644
index 5692e9b9dd7f..000000000000
--- a/devel/libexecinfo/files/patch-execinfo.c
+++ /dev/null
@@ -1,18 +0,0 @@
-
-$FreeBSD$
-
---- execinfo.c 2003/08/10 06:14:30 1.1
-+++ execinfo.c 2003/08/10 06:15:23
-@@ -41,8 +41,11 @@
- {
- int i;
-
-- for (i = 1; getframeaddr(i + 1) != NULL && i != size + 1; i++)
-+ for (i = 1; getframeaddr(i + 1) != NULL && i != size + 1; i++) {
- buffer[i - 1] = getreturnaddr(i);
-+ if (buffer[i - 1] == NULL)
-+ break;
-+ }
-
- return i - 1;
- }
diff --git a/devel/libexecinfo/files/patch-execinfo.h b/devel/libexecinfo/files/patch-execinfo.h
deleted file mode 100644
index 8ac54b9c108d..000000000000
--- a/devel/libexecinfo/files/patch-execinfo.h
+++ /dev/null
@@ -1,22 +0,0 @@
-
-$FreeBSD$
-
---- execinfo.h 2003/08/10 05:43:54 1.1
-+++ execinfo.h 2003/08/10 05:44:11
-@@ -29,8 +29,16 @@
- #ifndef _EXECINFO_H_
- #define _EXECINFO_H_
-
-+#ifdef __cplusplus
-+extern "C" {
-+#endif
-+
- int backtrace(void **, int);
- char ** backtrace_symbols(void *const *, int);
- void backtrace_symbols_fd(void *const *, int, int);
-+
-+#ifdef __cplusplus
-+}
-+#endif
-
- #endif /* _EXECINFO_H_ */