There was a typo in PKGBUILD in arch part (reported by Locke). It is fixed now.
I also switched to git source makepkg facility.
Search Criteria
Package Details: liblcfg 20140623-1
Package Actions
| Package Base: | liblcfg |
|---|---|
| Description: | A lightweight configuration file library written in C99 |
| Upstream URL: | http://liblcfg.carnivore.it/ |
| Category: | lib |
| Licenses: | |
| Submitter: | Gagou |
| Maintainer: | Gagou |
| Last Packager: | Gagou |
| Votes: | 1 |
| First Submitted: | 2010-05-02 16:52 |
| Last Updated: | 2014-06-23 20:25 |
Latest Comments
Comment by Gagou
Comment by Gagou
Following Locke comment, I added armv6h to supported architectures.
Comment by Locke
I tested this package with armv6h, can you add it to supported architectures?
Comment by Gagou
Thanks for your report Damon.
I added your command in PKGBUILD like you suggested.
Comment by Damon
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
The bug with gcc 4.6 was fixed upstream. The patch for configure.ac is no longer necessary.
Comment by Gagou
Thanks for your report. I included your patch in the build step.
Comment by eworm
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.