aboutsummaryrefslogtreecommitdiffstats
path: root/main/ldb
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2016-01-27 14:14:43 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2016-01-27 14:14:43 +0000
commit0efa781061179d5197c049798bebdc76d033f20a (patch)
tree835855703f9398a9077b6d17a29480b2b4dd1ae4 /main/ldb
parent47affed1795cc5ca4cdd4625ea53ba85513f0636 (diff)
downloadaports-0efa781061179d5197c049798bebdc76d033f20a.tar.bz2
aports-0efa781061179d5197c049798bebdc76d033f20a.tar.xz
main/ldb: remove unused patch
Diffstat (limited to 'main/ldb')
-rw-r--r--main/ldb/APKBUILD4
-rw-r--r--main/ldb/fix-libreplace.patch55
2 files changed, 1 insertions, 58 deletions
diff --git a/main/ldb/APKBUILD b/main/ldb/APKBUILD
index 27f09db08d..7da2d1175f 100644
--- a/main/ldb/APKBUILD
+++ b/main/ldb/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ldb
pkgver=1.1.24
-pkgrel=0
+pkgrel=1
pkgdesc="A schema-less, ldap like, API and database"
url="http://ldb.samba.org/"
arch="all"
@@ -47,8 +47,6 @@ build() {
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
- gzip "$pkgdir"/usr/share/man/man1/*
- gzip "$pkgdir"/usr/share/man/man3/*
}
_py() {
diff --git a/main/ldb/fix-libreplace.patch b/main/ldb/fix-libreplace.patch
deleted file mode 100644
index e922be0f1a..0000000000
--- a/main/ldb/fix-libreplace.patch
+++ /dev/null
@@ -1,55 +0,0 @@
---- talloc-2.1.0.orig/lib/replace/replace.c
-+++ talloc-2.1.0/lib/replace/replace.c
-@@ -546,28 +524,6 @@
- # error "You need a strtoull function"
- #endif
- }
--#else
--#ifdef HAVE_BSD_STRTOLL
--#ifdef HAVE_STRTOUQ
--unsigned long long int rep_strtoull(const char *str, char **endptr, int base)
--{
-- unsigned long long int nb = strtouq(str, endptr, base);
-- /* In linux EINVAL is only returned if base is not ok */
-- if (errno == EINVAL) {
-- if (base == 0 || (base >1 && base <37)) {
-- /* Base was ok so it's because we were not
-- * able to make the convertion.
-- * Let's reset errno.
-- */
-- errno = 0;
-- }
-- }
-- return nb;
--}
--#else
--#error "You need the strtouq function"
--#endif /* HAVE_STRTOUQ */
--#endif /* HAVE_BSD_STRTOLL */
- #endif /* HAVE_STRTOULL */
-
- #ifndef HAVE_SETENV
---- talloc-2.1.0.orig/lib/replace/replace.h
-+++ talloc-2.1.0/lib/replace/replace.h
-@@ -355,21 +355,11 @@
- #ifndef HAVE_STRTOLL
- #define strtoll rep_strtoll
- long long int rep_strtoll(const char *str, char **endptr, int base);
--#else
--#ifdef HAVE_BSD_STRTOLL
--#define strtoll rep_strtoll
--long long int rep_strtoll(const char *str, char **endptr, int base);
- #endif
--#endif
-
- #ifndef HAVE_STRTOULL
- #define strtoull rep_strtoull
- unsigned long long int rep_strtoull(const char *str, char **endptr, int base);
--#else
--#ifdef HAVE_BSD_STRTOLL /* yes, it's not HAVE_BSD_STRTOULL */
--#define strtoull rep_strtoull
--unsigned long long int rep_strtoull(const char *str, char **endptr, int base);
--#endif
- #endif
-
- #ifndef HAVE_FTRUNCATE