0.7.2 is available, also modifying PKGBUILD
build() {
cd "$srcdir/$pkgname-$pkgver"
CFLAGS=-Wno-error
./configure --prefix=/usr --sysconfdir=/etc
make CFLAGS="$CFLAGS -D_GNU_SOURCE"
make DESTDIR="$pkgdir/" install
}
make it builds successfully
Search Criteria
Package Details: turnserver 0.7.2-1
Package Actions
| Package Base: | turnserver |
|---|---|
| Description: | TURN server |
| Upstream URL: | http://turnserver.sourceforge.net/ |
| Category: | network |
| Licenses: | |
| Submitter: | sergej |
| Maintainer: | sergej |
| Last Packager: | None |
| Votes: | 3 |
| First Submitted: | 2010-01-19 18:18 |
| Last Updated: | 2013-09-03 10:23 |
Required by (0)
Sources
Latest Comments
Comment by dront78
Comment by nineinchnick
Modyfing src/Makefile.am to remove -Werror and then running aclocal and automake allows to compile, so I guess I need to file those as bugs in turnserver.
Comment by nineinchnick
I can't compile this package.
First I got this error(s):
turnserver.c:1274:6: error: ‘const struct in6_addr’ has no member named ‘s6_addr32’
adding a flag helps:
make CFLAGS=-D_GNU_SOURCE
But then I've got warnings that become errors:
error: declaration of ‘index’ shadows a global declaration [-Werror=shadow]
I see there are very strict flags passed to gcc, like -Wshadow -Werror
I've noticed lots of warnings become defaults in some recent gcc update.
I need help in veryfing if this is a bug in turnserver or we can disable those flags in PKGBUILD.
Also, there's a new version 0.5, but all those errors still apply.