aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Podgorny <pasis.ua@gmail.com>2014-09-07 15:15:03 +0300
committerDmitry Podgorny <pasis.ua@gmail.com>2014-09-07 15:15:03 +0300
commit4069ba07b931c3be270a33dfa15f8b8451165644 (patch)
tree92a78b63359c96a3f79aa54078ad8cabfb09ce93
parentef12b2a78c584a989904bbe5c714af1ec7409b38 (diff)
downloadprofanity-4069ba07b931c3be270a33dfa15f8b8451165644.tar.gz
profanity-4069ba07b931c3be270a33dfa15f8b8451165644.tar.xz
dev-libs/libstrophe: removed unused files
-rw-r--r--dev-libs/libstrophe/files/libstrophe-automake-foreign.patch11
-rw-r--r--dev-libs/libstrophe/files/libstrophe-fix-build-libxml2.patch18
2 files changed, 0 insertions, 29 deletions
diff --git a/dev-libs/libstrophe/files/libstrophe-automake-foreign.patch b/dev-libs/libstrophe/files/libstrophe-automake-foreign.patch
deleted file mode 100644
index 2027967..0000000
--- a/dev-libs/libstrophe/files/libstrophe-automake-foreign.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index a3e48ee..fb123e4 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -1,5 +1,5 @@
- AC_INIT([libstrophe], [0.8-snapshot], [jack@metajack.im])
--AM_INIT_AUTOMAKE
-+AM_INIT_AUTOMAKE([foreign])
-
- AC_PROG_CC
- AC_PROG_RANLIB
diff --git a/dev-libs/libstrophe/files/libstrophe-fix-build-libxml2.patch b/dev-libs/libstrophe/files/libstrophe-fix-build-libxml2.patch
deleted file mode 100644
index 2710f4b..0000000
--- a/dev-libs/libstrophe/files/libstrophe-fix-build-libxml2.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index fb123e4..a9ac211 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -9,11 +9,9 @@ AC_CHECK_HEADER(openssl/ssl.h, [], [AC_MSG_ERROR([couldn't find openssl headers,
- PKG_CHECK_MODULES([check], [check >= 0.9.4], [], [AC_MSG_WARN([libcheck not found; unit tests will not be compilable])])
-
- AC_ARG_WITH([libxml2],
-- [AS_HELP_STRING([--with-libxml2], [use libxml2 for XML parsing])],
-- [with_libxml2=check],
-- [with_libxml2=no])
-+ [AS_HELP_STRING([--with-libxml2], [use libxml2 for XML parsing])])
-
--if test "x$with_libxml2" != xno; then
-+if test "x$with_libxml2" = xyes; then
- PKG_CHECK_MODULES([libxml2], [libxml-2.0 >= 2.7],
- [with_libxml2=yes], [dummy=1])
- if test "x$with_libxml2" != xyes; then