summaryrefslogtreecommitdiff
path: root/package/neon/neon.mk
AgeCommit message (Collapse)Author
2012-07-17all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)
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>
2011-10-11neon: additional white space fixPeter Korsgaard
Missed from 66e09abc57 (neon: cleanup). Thanks to Michael S. Zick for noticing. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-10-11neon: cleanupPeter Korsgaard
Whitespace fixes / removal of redundant lines. No functional change. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-10-11neon: bump versionPeter Korsgaard
Closes #4321 Old neon version wasn't compatible with our openssl version, so bump the version. This also fixes some security related bugs. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-09-29package: remove useless arguments from AUTOTARGETSThomas Petazzoni
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>
2011-06-12packages: remove --{enable,disable}-{shared,static} from autotools packagesThomas Petazzoni
Now that those values are passed at the autotools infrastructure level, there's no need for every package to pass inconsistent values. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-07neon: remove neon-config script from TARGET_DIRThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-09-27packages: remove unneeded _INSTALL_TARGET_OPT definitionsThomas Petazzoni
Now that <pkg>_INSTALL_TARGET_OPT always defaults to 'DESTDIR=$(TARGET_DIR) install', we can remove the <pkg>_INSTALL_TARGET_OPT definition from a lot of packages. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-09-12neon: remove useless strippingThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-07-18neon: explicit path to xml2-configThomas Petazzoni
Now that $(STAGING_DIR)/usr/bin is not in the PATH, we need to explicit the path to such tools. This might also fix bug 1393 since by expliciting the path to xml2-config, we'll force neon ./configure to choose our xml2-config and not the one of the host. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
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>
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-04-12* Added neonNigel Kukard