Package Details: liblcfg 20140623-1

Package Base: liblcfg
Description: A lightweight configuration file library written in C99
Upstream URL: http://liblcfg.carnivore.it/
Category: lib
Licenses: GPL
Submitter: Gagou
Maintainer: Gagou
Last Packager: Gagou
Votes: 1
First Submitted: 2010-05-02 16:52
Last Updated: 2014-06-23 20:25

Dependencies (2)

Required by (1)

Sources

Latest Comments

Comment by Gagou

2014-06-23 20:28

There was a typo in PKGBUILD in arch part (reported by Locke). It is fixed now.
I also switched to git source makepkg facility.

Comment by Gagou

2014-06-21 20:46

Following Locke comment, I added armv6h to supported architectures.

Comment by Locke

2013-09-02 11:59

I tested this package with armv6h, can you add it to supported architectures?

Comment by Gagou

2013-01-19 22:17

Thanks for your report Damon.
I added your command in PKGBUILD like you suggested.

Comment by Damon

2013-01-15 11:40

Won't build. Add this to the PKGBUILD right before "autoreconf -i".

sed -i s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g ./configure.ac

Comment by Gagou

2011-11-28 15:38

The bug with gcc 4.6 was fixed upstream. The patch for configure.ac is no longer necessary.

Comment by Gagou

2011-04-29 17:30

Thanks for your report. I included your patch in the build step.

Comment by eworm

2011-04-28 15:10

With gcc 4.6.* I need this patch:

--- liblcfg-build/code/configure.ac 2011-04-28 17:03:19.592673607 +0200
+++ liblcfg-build/code/configure.ac 2011-04-28 17:03:42.888754213 +0200
@@ -24,11 +24,11 @@ dnl Check for some target-specific stuff
case "$host" in
*-*-freebsd*)
CPPFLAGS="$CPPFLAGS -I/usr/local/include -I/usr/src/contrib/file/"
- LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib"
+ LDFLAGS="$LDFLAGS -L/usr/local/lib"
;;
*-*-linux*)
CPPFLAGS="$CPPFLAGS -D _GNU_SOURCE -I/usr/local/include"
- LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib"
+ LDFLAGS="$LDFLAGS -L/usr/local/lib"
;;
*-*-darwin*)
CPPFLAGS="$CPPFLAGS -I/opt/local/include"

Apply with patch -Np2 just before the autoreconf.