summaryrefslogtreecommitdiffstats
path: root/package/libxslt
Commit message (Collapse)AuthorAgeFilesLines
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: use <pkg>_CONFIG_SCRIPTS in packages that used special handlingThomas Petazzoni2013-02-081-17/+1
| | | | | | | | | | | | | | | | | The packages changed by this commit were not only changing prefix= and exec_prefix= during their <foo>-config fixups, they were also changing includedir= and/or libdir=. So, they could not be directly converted to the new <pkg>_CONFIG_SCRIPTS infrastructure. However, a careful analysis of their default <foo>-config shows that includedir= and libdir= is defined relatively to either ${prefix} and ${exec_prefix}. Therefore, the manual fixing of includedir= and libdir= is useless, and fixing prefix= and exec_prefix=, as done by the <pkg>_CONFIG_SCRIPTS mechanism is sufficient. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Samuel Martin" <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxslt: bump to version 1.1.28Gustavo Zacarias2012-12-161-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxslt: bump to version 1.1.27Gustavo Zacarias2012-10-044-84/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* all packages: use new host-xxx-package macrosArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS,host))/$(eval $(host-generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS,host))/$(eval $(host-autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS,host))/$(eval $(host-cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libxslt: use libgcrypt-config from STAGING_DIRArnout Vandecappelle (Essensium/Mind)2012-07-131-0/+1
| | | | | | Otherwise, if the host has a libgcrypt-config, that one will be used. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* libxslt: add multiple security patchesGustavo Zacarias2012-03-113-0/+83
| | | | | | | Add security patches for CVE-2011-1202 and CVE-2011-3970. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxslt: fix typo from db8fcd04ba94ce8 (libxslt: cleanup)Peter Korsgaard2012-01-191-1/+1
| | | | | | --without-crypto should be appended to the configure opts, not replace them. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxslt: cleanupPeter Korsgaard2012-01-181-7/+7
| | | | | | get rid of unused EXTRA variables. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove useless arguments from AUTOTARGETSThomas Petazzoni2011-09-291-2/+2
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxslt: fixup configure optionsGustavo Zacarias2011-05-021-10/+3
| | | | | | | | | Some configure options changed so adjust. Forcibly disabling threads isn't good and also it's detected by configure when there are no threads. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxslt: remove xslt-config script from TARGET_DIRThomas Petazzoni2011-03-071-0/+8
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libxslt: bump to version 1.1.26Gustavo Zacarias2010-12-222-3/+2
| | | | | | | Bump libxslt to version 1.1.26 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxslt: convert old-style hook to new-style hookThomas Petazzoni2010-09-121-5/+6
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libxslt: fix host compilationThomas Petazzoni2010-05-021-1/+2
| | | | | | | | | | | | | | | | Do not build against libgcrypt on the host, since we don't build libgcrypt ourself, and it might fail even when libgcrypt is installed on the host: ...configure... checking for libgcrypt-config... /usr/bin/libgcrypt-config Crypto extensions will be available. ...build... gcc: /usr/lib/libgcrypt.so: No such file or directory Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove redundant DISABLE_{IPV6,NLS,LARGEFILE} configure argsPeter Korsgaard2010-03-221-1/+0
| | | | | | | Makefile.autotools.in automatically adds these to the configure invocation, so there's no need to explicitly list them. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxslt: enable compilation on hostThomas Petazzoni2010-02-201-0/+8
| | | | | | | Compiling libxcb (from the X.org stack) requires xsltproc on the host, which is part of libxslt. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libxslt: fix dependency on libxmlLionel Landwerlin2010-01-282-1/+2
| | | | | | [Peter: fix indentation] Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-1/+1
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxslt: tell ./configure where libxml isThomas Petazzoni2009-08-101-1/+1
| | | | | | | | | | | libxslt is currently configured with --with-libxml-include-prefix, which allows libxslt ./configure to find libxml headers. However, the build of libxslt fails because it doesn't find the library itself. Therefore, instead of using --with-libxml-include-prefix, we switch to the more generic --with-libxml-prefix. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pkgconfig: add pkgconfig package for targetPeter Korsgaard2009-03-181-1/+0
| | | | | | | | | | | | | The host versions shouldn't be visible in Kconfig, so remove the reference to BR2_PACKAGE_PKGCONFIG everywhere and prefix the host targets with host-. At the same time add pkgconfig for the target (E.G. for development) and let BR2_PACKAGE_PKGCONFIG control that package. Notice: all defconfigs in the tree have been updated, but make sure to disable the pkgconfig package (unless you want it) if you use an external config, otherwise you'll end up with pkgconfig and glib2 in the target.
* libxslt: Convert to Makefile.autotools.in formatDaniel Laird2008-08-281-95/+24
| | | | | | | | Converted to Makefile.autotools.in format Version bumped to 1.1.24 Enabled crypto support dependant on gcrypt being chosen/not Post process xslt-config file like freetype-config/xm2-config.
* Kconfig: remove 'default n'Peter Korsgaard2008-07-171-1/+0
| | | | 'default n' is the default, so there's no need to say it explicitly.
* libxslt: use select instead of depends for pkgconfig like other packagesPeter Korsgaard2008-06-151-8/+5
| | | | | | | There's not much point in using depends instead of select for pkgconfig as it's a host tool, E.G. it doesn't add anything to the rootfs. At the same time, strip Config.in of trailing spaces.
* make sure xslt uses the right xml2 headersJohn Voltz2008-04-241-0/+1
|
* updated libxsltJohn Voltz2008-03-062-1/+25
|
* Make libxslt depend on packets, instead of selecting themUlf Samuelsson2007-11-291-1/+1
|
* Add libxslt packageUlf Samuelsson2007-11-282-0/+120