You are not logged in.
I have tried AUR and made my own SVN build, but both refuse to compile. Both give the same error:
buffer.cpp: In member function "int inbuffer::pipedata(unsigned int, long long int)":
buffer.cpp:280: virhe: "stderr" on esittelemättä tällä näkyvyysalueella
buffer.cpp:281: virhe: "fprintf" on esittelemättä tällä näkyvyysalueella
buffer.cpp: In member function "int inbuffer::providedata(unsigned int, long long int)":
buffer.cpp:410: virhe: "stderr" on esittelemättä tällä näkyvyysalueella
buffer.cpp:411: virhe: "fprintf" on esittelemättä tällä näkyvyysalueella
make[1]: *** [buffer.o] Virhe 1
make[1]: Poistutaan hakemistosta "/home/toni/.Build/src/dvbcut-build/src"
make: *** [all] Virhe 2
==> ERROR: Build Failed.
Aborting...can somebody point me to the right direction?
PS. Is there a way to get my OS to compile in english without changing main language from gnome? It would make pasting from terminal output a little less annoying when posting to international forums.
Offline
I don't know about question 2 but when I built dvbcut a month ago it needed two patches to fix gcc 4.4-related errors. This one ought to fix the compilation error you've seen:
--- src/buffer.cpp.orig 2008-10-19 21:01:39.000000000 +0100
+++ src/buffer.cpp 2009-05-09 19:03:17.000000000 +0100
@@ -18,6 +18,7 @@
/* $Id: buffer.cpp 136 2008-10-19 20:01:38Z too-tired $ */
+#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>and this one should fix the compilation error you'll get after fixing the first one ![]()
--- src/mpegmuxer.cpp.orig 2008-10-10 13:11:08.000000000 +0100
+++ src/mpegmuxer.cpp 2009-05-09 19:19:06.539048062 +0100
@@ -18,6 +18,9 @@
/* $Id: mpegmuxer.cpp 132 2008-10-10 12:11:08Z too-tired $ */
+
+
+#include <stdio.h>
#include <cstdlib>
#include <cstring>
#include <strings.h>Offline
PS. Is there a way to get my OS to compile in english without changing main language from gnome? It would make pasting from terminal output a little less annoying when posting to international forums.
export LANG=C ![]()
"I'm Winston Wolfe. I solve problems."
~ Need moar games? [arch-games] ~ [aurcheck] AUR haz updates? ~
Offline
Patches worked. Thank you
Offline
Btw you can leave a comment on the AUR website, so that the contributer can fix the issue ...
Offline