pkgsrc/audio/libdca/patches/patch-dtsdec
wiz 6c5cf6e0c0 Update to 0.0.5, based on patch provided by maintainer Sergey Svishchev
in PR 38167:


libdca-0.0.5 Tue Apr 10 14:31:59 CEST 2007

Fix typo in dts.h

libdca-0.0.4 Sun Apr  8 11:00:58 CEST 2007

Fix shared library linking.
Disable non-PIC optimization by default (use --without-pic to re-enable).

libdca-0.0.3 Thu Apr  5 20:48:56 EEST 2007

Fix for pointer aliasing.
Build system rework.
FreeBSD compile fix.
Changed library name to libdca (was formerly known as libdts).
Removed Debian packaging files now maintained separately.
2008-09-07 13:54:43 +00:00

15 lines
392 B
Text

$NetBSD: patch-dtsdec,v 1.2 2008/09/07 13:54:43 wiz Exp $
--- src/dcadec.c.orig Mon Feb 23 23:30:49 2004
+++ src/dcadec.c Fri Jun 8 21:09:29 2007
@@ -65,7 +65,9 @@
{
sigint = 1;
signal (sig, SIG_DFL);
- return (RETSIGTYPE)0;
+ /* No return statement, since we cannot know whether the return
+ * type is "void" or "int".
+ */
}
static void print_fps (int final)