aboutsummaryrefslogtreecommitdiff
path: root/devel/liblcfg
Commit message (Collapse)AuthorAgeFilesLines
* By default libtool replaces -export-symbols <file> with -retain-symbols-fileTijl Coosemans2015-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <file> on ELF systems, but this doesn't really do what -export-symbols is meant to do. On GNU ELF systems it converts <file> to a simple version script first and then uses -version-script instead of -retain-symbols-file. Let USES=libtool patch libtool scripts to do this on all systems with GNU ld(1). Bump PORTREVISION on all ports where the build log contains -export-symbols. audio/calf: This port builds a module that now exports only one function, but it also builds a number of executables that link to this module and expect to see other functions. Because it's already a bit dodgy to link to a module (libtool warns about this) let the module continue to export only one function and instead build an ordinary library from the same source that the executables can link to. Fix a number of other issues in the same Makefile.am and clean up the port Makefile. japanese/scim-honoka: Tries to hide all symbols that start with an underscore, but because this library is written in C++ all symbols start with _Z so it ends up hiding everything. Just don't hide anything at all like the textproc/scim configure script does. multimedia/schroedinger: Apply an upstream patch. textproc/scim-input-pad: Same as japanese/scim-honoka. PR: 201922 Approved by: portmgr (antoine) Exp-run by: antoine Notes: svn path=/head/; revision=393429
* Cleanup plistBaptiste Daroussin2014-10-271-2/+0
| | | | Notes: svn path=/head/; revision=371546
* - Fix license (sources mention GPLv2, not BSD)Dmitry Marakasov2014-06-242-4/+6
| | | | | | | | | - Switch to USES=libtool, drop .la files Approved by: portmgr blanket Notes: svn path=/head/; revision=359023
* Fix properties on pkg-plistBaptiste Daroussin2014-01-211-1/+0
| | | | Notes: svn path=/head/; revision=340674
* - Remove NO_STAGE as these have been tested to be safeBryan Drewery2013-09-251-1/+0
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=328226
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | devel part 3) Notes: svn path=/head/; revision=327724
* Fix build with clangBaptiste Daroussin2013-05-242-5/+28
| | | | Notes: svn path=/head/; revision=318970
* liblcfg is a lightweight configuration file library written in C99.Steven Kreuzer2012-06-204-0/+38
The file format supports arbitrarily nested simple assignments, lists and maps (aka dictionaries). WWW: http://liblcfg.carnivore.it/ Notes: svn path=/head/; revision=299690