summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2012-11-08 12:02:39 -0800
committerKévin THIERRY <kevin.thierry@open.eurogiciel.org>2014-11-12 14:09:24 +0100
commit1ace151cea0deeeee8d052d066447b84995de964 (patch)
treeeaf7f99baf9e420440a67760afaed160a5e6b2ee
parent13cdb86714eded0d6387e735691ff1c9baea67a9 (diff)
downloadlibxslt-1ace151cea0deeeee8d052d066447b84995de964.tar.gz
libxslt-1ace151cea0deeeee8d052d066447b84995de964.tar.bz2
libxslt-1ace151cea0deeeee8d052d066447b84995de964.zip
add packaging
-rw-r--r--packaging/libxslt-1.1.24-linkflags.patch13
-rw-r--r--packaging/libxslt-1.1.24-no-net-autobuild.patch11
-rw-r--r--packaging/libxslt-config-fixes.patch21
3 files changed, 0 insertions, 45 deletions
diff --git a/packaging/libxslt-1.1.24-linkflags.patch b/packaging/libxslt-1.1.24-linkflags.patch
deleted file mode 100644
index 222493a5..00000000
--- a/packaging/libxslt-1.1.24-linkflags.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: python/Makefile.am
-===================================================================
---- python/Makefile.am.orig 2009-05-12 08:29:34.000000000 +0200
-+++ python/Makefile.am 2010-07-21 15:22:21.000000000 +0200
-@@ -24,7 +24,7 @@ EXTRA_DIST = \
- libxslt-python-api.xml \
- $(DOCS)
-
--libxsltmod_la_LDFLAGS = $(WIN32_EXTRA_LDFLAGS) -module -avoid-version
-+libxsltmod_la_LDFLAGS = $(WIN32_EXTRA_LDFLAGS) $(mylibs) -module -avoid-version
-
- if WITH_PYTHON
- mylibs = \
diff --git a/packaging/libxslt-1.1.24-no-net-autobuild.patch b/packaging/libxslt-1.1.24-no-net-autobuild.patch
deleted file mode 100644
index a6643843..00000000
--- a/packaging/libxslt-1.1.24-no-net-autobuild.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- xsltproc/xsltproc.c
-+++ xsltproc/xsltproc.c
-@@ -544,7 +544,7 @@
-
- sec = xsltNewSecurityPrefs();
- xsltSetDefaultSecurityPrefs(sec);
-- defaultEntityLoader = xmlGetExternalEntityLoader();
-+ defaultEntityLoader = getenv("RPM_PACKAGE_NAME") ? xmlNoNetExternalEntityLoader : xmlGetExternalEntityLoader();
- xmlSetExternalEntityLoader(xsltprocExternalEntityLoader);
-
- for (i = 1; i < argc; i++) {
diff --git a/packaging/libxslt-config-fixes.patch b/packaging/libxslt-config-fixes.patch
deleted file mode 100644
index 57d455d0..00000000
--- a/packaging/libxslt-config-fixes.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- xslt-config.in.orig
-+++ xslt-config.in
-@@ -89,7 +89,7 @@ while test $# -gt 0; do
- shift
- done
-
--the_libs="@XSLT_LIBDIR@ @XSLT_LIBS@"
-+the_libs="-lxslt"
- if test "$includedir" != "/usr/include"; then
- the_flags="$the_flags -I$includedir `@XML_CONFIG@ --cflags`"
- else
---- xsltConf.sh.in.orig
-+++ xsltConf.sh.in
-@@ -2,6 +2,6 @@
- # Configuration file for using the xslt library
- #
- XSLT_LIBDIR="@XSLT_LIBDIR@"
--XSLT_LIBS="@XSLT_LIBS@"
-+XSLT_LIBS="-lxslt"
- XSLT_INCLUDEDIR="@XSLT_INCLUDEDIR@"
- MODULE_VERSION="xslt-@VERSION@"