diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2006-03-17 06:43:10 +0000 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2006-03-17 06:43:10 +0000 |
commit | 6b2643765043e0f51855ba04bc6d419aa8f28733 (patch) | |
tree | d61ccddb9e6d1fe4ba557338cd2b86bf6179438b /misc/ossp-uuid | |
parent | a36bbfc2f000862eb5fe6eae9707e74752f40866 (diff) | |
download | ports-6b2643765043e0f51855ba04bc6d419aa8f28733.tar.gz ports-6b2643765043e0f51855ba04bc6d419aa8f28733.zip |
Notes
Diffstat (limited to 'misc/ossp-uuid')
-rw-r--r-- | misc/ossp-uuid/Makefile | 2 | ||||
-rw-r--r-- | misc/ossp-uuid/distinfo | 6 | ||||
-rw-r--r-- | misc/ossp-uuid/files/patch-uuid_str.c | 32 |
3 files changed, 4 insertions, 36 deletions
diff --git a/misc/ossp-uuid/Makefile b/misc/ossp-uuid/Makefile index 0a891f728eec..c5c314b91e5f 100644 --- a/misc/ossp-uuid/Makefile +++ b/misc/ossp-uuid/Makefile @@ -6,7 +6,7 @@ # PORTNAME= uuid -PORTVERSION= 1.4.1 +PORTVERSION= 1.4.2 CATEGORIES= misc devel MASTER_SITES= ${MASTER_SITE_OSSP} MASTER_SITE_SUBDIR= lib/${PORTNAME} diff --git a/misc/ossp-uuid/distinfo b/misc/ossp-uuid/distinfo index 5916879880f0..29cb08adefd2 100644 --- a/misc/ossp-uuid/distinfo +++ b/misc/ossp-uuid/distinfo @@ -1,3 +1,3 @@ -MD5 (uuid-1.4.1.tar.gz) = a58fa33d4403b78dc6a2a7d649f4125e -SHA256 (uuid-1.4.1.tar.gz) = 45de9a35f8c097925f99e9f899586d1f19705d8531fc4a33a62ccdbff1095446 -SIZE (uuid-1.4.1.tar.gz) = 388134 +MD5 (uuid-1.4.2.tar.gz) = fdfe93bc134dfb73814456c3b444dda1 +SHA256 (uuid-1.4.2.tar.gz) = a8d4723b45a90e85c2250123a634cd00ea1912e79737c71c593fd78b1413176e +SIZE (uuid-1.4.2.tar.gz) = 390542 diff --git a/misc/ossp-uuid/files/patch-uuid_str.c b/misc/ossp-uuid/files/patch-uuid_str.c deleted file mode 100644 index f88d2bcadb87..000000000000 --- a/misc/ossp-uuid/files/patch-uuid_str.c +++ /dev/null @@ -1,32 +0,0 @@ ---- uuid_str.c.orig Tue Mar 29 21:39:51 2005 -+++ uuid_str.c Thu Dec 8 18:46:13 2005 -@@ -690,8 +690,10 @@ - { - char *rv; - int n; -+ va_list ap_tmp; - -- n = str_vsnprintf(NULL, 0, fmt, ap); -+ va_copy(ap_tmp, ap); -+ n = str_vsnprintf(NULL, 0, fmt, ap_tmp); - if ((rv = (char *)malloc(n+1)) == NULL) - return NULL; - str_vsnprintf(rv, n+1, fmt, ap); -@@ -720,6 +722,7 @@ - { - int rv; - size_t n; -+ va_list ap_tmp; - - if (str == NULL) - return -1; -@@ -729,7 +732,8 @@ - } - else { - n = strlen(*str); -- rv = str_vsnprintf(NULL, 0, fmt, ap); -+ va_copy(ap_tmp, ap); -+ rv = str_vsnprintf(NULL, 0, fmt, ap_tmp); - if ((*str = (char *)realloc(*str, n+rv+1)) == NULL) - return -1; - str_vsnprintf((*str)+n, rv+1, fmt, ap); |