aboutsummaryrefslogtreecommitdiffstats
path: root/community/pgbouncer
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-01-29 00:25:35 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-01-29 00:31:53 +0100
commitd420552f02af2ad6a15cf3a70b76bf86b222c07e (patch)
tree8ab7137ed9264312aee69292d009509e70357ea7 /community/pgbouncer
parent78a6ed13e4b5cd182f28be18694d543ae179446b (diff)
downloadaports-d420552f02af2ad6a15cf3a70b76bf86b222c07e.tar.bz2
aports-d420552f02af2ad6a15cf3a70b76bf86b222c07e.tar.xz
Remove more stale patches from community/
Diffstat (limited to 'community/pgbouncer')
-rw-r--r--community/pgbouncer/const_free.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/community/pgbouncer/const_free.patch b/community/pgbouncer/const_free.patch
deleted file mode 100644
index a422130e50..0000000000
--- a/community/pgbouncer/const_free.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/lib/usual/base.h b/lib/usual/base.h
-index 99b23fe..f835e33 100644
---- a/lib/usual/base.h
-+++ b/lib/usual/base.h
-@@ -327,14 +327,6 @@ void log_fatal(const char *file, int line, const char *func, bool show_perror, v
- #endif
- #endif
-
--/* Fix posix bug by accepting const pointer. */
--static inline void _const_free(const void *p)
--{
-- free((void *)p);
--}
--/** Compat: make free() accept const pointer */
--#define free(x) _const_free(x)
--
- /** Zeroing malloc */
- _MUSTCHECK
- static inline void *zmalloc(size_t len)