summaryrefslogtreecommitdiff
path: root/ports-mgmt/pkg-devel/files
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-01-13 14:19:29 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-01-13 14:19:29 +0000
commiteeedb5abf83a89d31f82cdfef8b4803c30509f74 (patch)
tree75c52a1576d36dc2f493e1452f4daf5debd5eb33 /ports-mgmt/pkg-devel/files
parentx11-toolkits/libsexymm: Unbreak by fixing typo from previous commit (diff)
Update to 1.2.5:
- Manpage improvements - fix $auditfile in pkg audit periodic script - Fix repo-*.sqlite being corrupted when pkg update is interrupted by the user - pkg add now tells the version of the package missing - Strop decoding/encoding all fields, only scripts and description are now encoded/decoded
Notes
Notes: svn path=/head/; revision=339595
Diffstat (limited to 'ports-mgmt/pkg-devel/files')
-rw-r--r--ports-mgmt/pkg-devel/files/patch-libpkg_pkg_config28
1 files changed, 0 insertions, 28 deletions
diff --git a/ports-mgmt/pkg-devel/files/patch-libpkg_pkg_config b/ports-mgmt/pkg-devel/files/patch-libpkg_pkg_config
deleted file mode 100644
index 208477937f38..000000000000
--- a/ports-mgmt/pkg-devel/files/patch-libpkg_pkg_config
+++ /dev/null
@@ -1,28 +0,0 @@
---- libpkg/pkg_config.c.orig 2013-12-16 08:52:39.000000000 +0100
-+++ libpkg/pkg_config.c 2013-12-16 12:09:13.093549000 +0100
-@@ -293,6 +293,7 @@
- static size_t c_size = sizeof(c) / sizeof(struct config_entry);
-
- static void pkg_config_kv_free(struct pkg_config_kv *);
-+static void pkg_config_value_free(struct pkg_config_value *);
- static void pkg_config_free(struct pkg_config *conf);
- static struct pkg_repo *pkg_repo_new(const char *name, const char *url);
-
-@@ -440,7 +441,7 @@
- continue;
- }
- if (!conf->fromenv) {
-- pkg_config_free(conf);
-+ HASH_FREE(conf->list, pkg_config_value, pkg_config_value_free);
- conf->list = NULL;
- obj_walk_array(cur, conf);
- }
-@@ -452,7 +453,7 @@
- continue;
- }
- if (!conf->fromenv) {
-- pkg_config_free(conf);
-+ HASH_FREE(conf->kvlist, pkg_config_kv, pkg_config_kv_free);
- conf->kvlist = NULL;
- obj_walk_object(cur, conf);
- }