summaryrefslogtreecommitdiff
path: root/package/neon
AgeCommit message (Collapse)Author
2009-12-23neon: fix ssl option dependencyPeter Korsgaard
Thanks to Gustavo Zacarias for noticing. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-12-20neon: add optional ssl supportPeter Korsgaard
Signed-off-by: Nigel Kukard <nkukard@lbsd.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-12-15host-pkgconfig is now host-pkg-configThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-08-05Build neon with SSL support if availableNigel Kukard
2009-06-11neon: Fix pkgconfig dependencyWill Newton
neon should depend on host-pkgconfig rather than pkgconfig. Closes #385. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-03-18pkgconfig: add pkgconfig package for targetPeter Korsgaard
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.
2009-01-08neon: s/exapt/expat/Peter Korsgaard
2008-12-31* Refined building of neon optionsNigel Kukard
- Added support to build with or without zlib support
2008-12-08package/: get rid of unneeded $(strip ..)Peter Korsgaard
2008-10-20neon: don't strip if BR2_ENABLE_DEBUG is enabledPeter Korsgaard
2008-08-26neon: use := assignmentsPeter Korsgaard
2008-08-26neon: uses pkgconfig so select itPeter Korsgaard
2008-08-26neon: strip target libraryPeter Korsgaard
neon doesn't have an install-strip target, so do it afterwards instead.
2008-08-26neon: fix compilation without xml supportPeter Korsgaard
webdav needs xml support, so disable it if no xml support is selected, otherwise configure could get confused about a host xml2-config script.
2008-08-26neon: bump versionPeter Korsgaard
Fixes CVE-2008-3746.
2008-08-04buildroot: remove trailing spacesPeter Korsgaard
for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
2008-07-17Kconfig: remove 'default n'Peter Korsgaard
'default n' is the default, so there's no need to say it explicitly.
2008-06-19buildroot: s/depends/depends on/Peter Korsgaard
The new kconfig is more strict regarding depends/depends on, so fixup the tree.
2008-04-12* Added neonNigel Kukard