aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/csync/iconv.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
commit3ce3c4fd596debefbad77328a9b62a39eccf753c (patch)
tree8ea8842d946335dbd124e71336a11b928481c544 /unmaintained/csync/iconv.patch
parent62b8ba5f8fe6d62d56b2d078b4f12f72830ee4af (diff)
downloadaports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.bz2
aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.xz
unmaintained/*: purge aports not touched since v3.5.0
We agreed with ncopa on #alpine-devel (2017-12-01 16:20 UTC) to periodically purge aports in unmaintained that haven't been touched in last 1 year (2 releases).
Diffstat (limited to 'unmaintained/csync/iconv.patch')
-rw-r--r--unmaintained/csync/iconv.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/unmaintained/csync/iconv.patch b/unmaintained/csync/iconv.patch
deleted file mode 100644
index fcafeb3a80..0000000000
--- a/unmaintained/csync/iconv.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index 1cc90bc..f8309dd 100644
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -28,7 +28,7 @@ set(CSYNC_LINK_LIBRARIES
- ${SQLITE3_LIBRARIES}
- )
-
--if(HAVE_ICONV AND WITH_ICONV)
-+if(WITH_ICONV)
- list(APPEND CSYNC_PRIVATE_INCLUDE_DIRS ${ICONV_INCLUDE_DIR})
- list(APPEND CSYNC_LINK_LIBRARIES ${ICONV_LIBRARIES})
- endif()
-diff --git a/src/std/c_string.c b/src/std/c_string.c
-index f175734..ccc0644 100644
---- a/src/std/c_string.c
-+++ b/src/std/c_string.c
-@@ -39,7 +39,7 @@
- #include <windows.h>
- #endif
-
--#if defined(HAVE_ICONV) && defined(WITH_ICONV)
-+#if defined(WITH_ICONV)
- # ifdef HAVE_ICONV_H
- # include <iconv.h>
- # endif