diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-11-28 09:45:45 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-11-28 09:45:45 +0000 |
commit | 58e47a21fab02ef24f6b4f14da5fa02d0613c69e (patch) | |
tree | c09859e680140f9fb7a4843cb054b99350fae95c /devel/safestr/files | |
parent | - Update to 2.26.0 (diff) |
2012-11-27 devel/p5-SPOPS: Depend on the expired p5-Class-Fields
2012-11-26 textproc/lemmatizer: No more public distfiles
2012-11-26 net/relay: No more public distfiles
2012-11-26 x11-clocks/bmp-alarm: No more public distfiles
2012-11-26 net-mgmt/nagios-check_ice: No more public distfiles
2012-11-26 japanese/libicq: No more public distfiles and development ceased
2012-11-26 graphics/tonicpoint-viewer: No more public distfiles
2012-11-26 devel/safestr: No more public distfiles
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=307896
Diffstat (limited to 'devel/safestr/files')
-rw-r--r-- | devel/safestr/files/patch-ltmain.sh | 15 | ||||
-rw-r--r-- | devel/safestr/files/patch-safefmt.c | 33 |
2 files changed, 0 insertions, 48 deletions
diff --git a/devel/safestr/files/patch-ltmain.sh b/devel/safestr/files/patch-ltmain.sh deleted file mode 100644 index d95cb8218958..000000000000 --- a/devel/safestr/files/patch-ltmain.sh +++ /dev/null @@ -1,15 +0,0 @@ ---- ltmain.sh.orig Fri Aug 29 13:31:36 2003 -+++ ltmain.sh Fri Aug 29 13:31:59 2003 -@@ -5425,10 +5425,12 @@ - fi - - # Install the pseudo-library for information purposes. -+ if /usr/bin/false ; then - name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` - instname="$dir/$name"i - $show "$install_prog $instname $destdir/$name" - $run eval "$install_prog $instname $destdir/$name" || exit $? -+ fi - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/devel/safestr/files/patch-safefmt.c b/devel/safestr/files/patch-safefmt.c deleted file mode 100644 index 78e7ae10a9a2..000000000000 --- a/devel/safestr/files/patch-safefmt.c +++ /dev/null @@ -1,33 +0,0 @@ ---- safefmt.c.orig Mon Sep 4 17:28:27 2006 -+++ safefmt.c Mon Sep 4 18:07:39 2006 -@@ -489,10 +489,10 @@ - SET_ARGLIST_TYPE(format_arg, type); - } - -- ap = arglist->ap; -+ va_copy(ap, arglist->ap); - for (x = arglist->current; x < max_arg; x++) - load_argument(x, arglist); -- arglist->ap = ap; -+ va_copy(arglist->ap, ap); - - arglist->max = max_arg; - arglist->scanned = 1; -@@ -675,7 +675,7 @@ - arglist.current = 0; - arglist.max = 0; - arglist.scanned = 0; -- arglist.ap = ap; -+ va_copy(arglist.ap, ap); - memset(arglist.list, 0, sizeof(arglist.list)); - - cs_d = 0; -@@ -683,7 +683,7 @@ - padding = NULL; - *nbytes = padding_size = 0; - arglist.current = arglist.max = arglist.scanned = 0; -- arglist.ap = ap; -+ va_copy(arglist.ap, ap); - trusted = (ifmt->hdr.flags & SAFESTR_TRUSTED) == SAFESTR_TRUSTED; - - for (c = start = ifmt->str; c < ifmt->str + ifmt->hdr.length; start = ++c) |