diff options
author | sobomax <sobomax@FreeBSD.org> | 2004-07-19 13:42:23 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2004-07-19 13:42:23 +0800 |
commit | d06424b0fb552b0ac67fd2e922024a812d5ba710 (patch) | |
tree | 628bce6f7e97d194ed698592943cda285c01c013 /devel/libexecinfo | |
parent | 36e206559bffafe85655f9e27dbaf7efc0e871f0 (diff) | |
download | freebsd-ports-gnome-d06424b0fb552b0ac67fd2e922024a812d5ba710.tar.gz freebsd-ports-gnome-d06424b0fb552b0ac67fd2e922024a812d5ba710.tar.zst freebsd-ports-gnome-d06424b0fb552b0ac67fd2e922024a812d5ba710.zip |
Update to 1.1.
Diffstat (limited to 'devel/libexecinfo')
-rw-r--r-- | devel/libexecinfo/Makefile | 5 | ||||
-rw-r--r-- | devel/libexecinfo/distinfo | 4 | ||||
-rw-r--r-- | devel/libexecinfo/files/patch-Makefile | 14 | ||||
-rw-r--r-- | devel/libexecinfo/files/patch-execinfo.c | 18 | ||||
-rw-r--r-- | devel/libexecinfo/files/patch-execinfo.h | 22 |
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_ */ |