summaryrefslogtreecommitdiff
path: root/package/poco
AgeCommit message (Collapse)Author
2012-08-28remove rest of the BR2_SOURCEFORGE_MIRROR referencesStefan Fröberg
Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-08-01poco: add license informationBaruch Siach
Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
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>
2012-03-22poco: bump to 1.4.3p1Baruch Siach
Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-02-02poco: the Zip module depends on XML, Net and Util modulesThomas Petazzoni
Without this, in a configuration where the Zip module is selected but not the XML module, the build fails due to missing expat.h. This is because POCO builds the XML module as soon as the Zip module is enabled. This fixes the build breakage visible at: http://free-electrons.com/~thomas/buildroot/test-output-2011-12-02/test-920-output.bz2 with the configuration visible at: http://free-electrons.com/~thomas/buildroot/test-output-2011-12-02/test-920-config Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-10-08poco: unbreak mysql supportPeter Korsgaard
Update patch to also pass include directory for mysql headers, and get rid of host directories in -L / -I arguments. Finally look in staging rather than target for libmysqlclient. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-10-07package: add the poco C++ libraries collectionBaruch Siach
Add the C++ Portable Components libraries. The Data/ODBC components is disabled because its dependency (unixODBC) is not in Buildroot. The Data/MySQL component is build tested only. It probably requires an additional RPATH to actually run, because libmysqlclient resides in a non-standard location under /usr/lib/mysql. [Peter: use depends on for toolchain options] Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>