News:

Latest versions:
Server plugin: 0.5.1
MVP dongle: 0.5.2
Raspberry Pi client: 0.5.2
Windows client: 0.5.2-1

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - TEDDYXXL

#1
Hi !


After installing latest rasppi image with Debian10 (2019-07-10-raspbian-buster-full.img) compile of latest vomp version from git fails:


audioomx.cc: In member function 'virtual int AudioOMX::init(UCHAR)':
audioomx.cc:103:18: warning: 'void av_register_all()' is deprecated [-Wdeprecated-declarations]
  av_register_all();
                  ^
In file included from audioomx.h:36,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavformat/avformat.h:2043:6: note: declared here
void av_register_all(void);
      ^~~~~~~~~~~~~~~
audioomx.cc:103:18: warning: 'void av_register_all()' is deprecated [-Wdeprecated-declarations]
  av_register_all();
                  ^
In file included from audioomx.h:36,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavformat/avformat.h:2043:6: note: declared here
void av_register_all(void);
      ^~~~~~~~~~~~~~~
audioomx.cc: In member function 'int AudioOMX::InitDecoderLibAV()':
audioomx.cc:822:35: error: 'CODEC_FLAG_TRUNCATED' was not declared in this scope
  ac3codec_context_libav->flags |= CODEC_FLAG_TRUNCATED;
                                   ^~~~~~~~~~~~~~~~~~~~
audioomx.cc:822:35: note: suggested alternative: 'AV_CODEC_FLAG_TRUNCATED'
  ac3codec_context_libav->flags |= CODEC_FLAG_TRUNCATED;
                                   ^~~~~~~~~~~~~~~~~~~~
                                   AV_CODEC_FLAG_TRUNCATED
audioomx.cc:879:45: warning: 'AVAudioResampleContext* avresample_alloc_context()' is deprecated [-Wdeprecated-declarations]
  resam_con_libav = avresample_alloc_context();
                                             ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:194:25: note: declared here
AVAudioResampleContext *avresample_alloc_context(void);
                         ^~~~~~~~~~~~~~~~~~~~~~~~
audioomx.cc:879:45: warning: 'AVAudioResampleContext* avresample_alloc_context()' is deprecated [-Wdeprecated-declarations]
  resam_con_libav = avresample_alloc_context();
                                             ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:194:25: note: declared here
AVAudioResampleContext *avresample_alloc_context(void);
                         ^~~~~~~~~~~~~~~~~~~~~~~~
audioomx.cc: In member function 'void AudioOMX::DeinitDecoderLibAV()':
audioomx.cc:929:35: warning: 'void avresample_free(AVAudioResampleContext**)' is deprecated [-Wdeprecated-declarations]
   avresample_free(&resam_con_libav);
                                   ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:258:6: note: declared here
void avresample_free(AVAudioResampleContext **avr);
      ^~~~~~~~~~~~~~~
audioomx.cc:929:35: warning: 'void avresample_free(AVAudioResampleContext**)' is deprecated [-Wdeprecated-declarations]
   avresample_free(&resam_con_libav);
                                   ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:258:6: note: declared here
void avresample_free(AVAudioResampleContext **avr);
      ^~~~~~~~~~~~~~~
audioomx.cc: In member function 'UINT AudioOMX::DeliverMediaPacket(MediaPacket, const UCHAR*, UINT*)':
audioomx.cc:2136:36: warning: 'int avcodec_decode_audio4(AVCodecContext*, AVFrame*, int*, const AVPacket*)' is deprecated [-Wdeprecated-declarations]
       &gotta, &incoming_paket_libav);
                                    ^
In file included from audioomx.h:35,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavcodec/avcodec.h:4722:5: note: declared here
int avcodec_decode_audio4(AVCodecContext *avctx, AVFrame *frame,
     ^~~~~~~~~~~~~~~~~~~~~
audioomx.cc:2136:36: warning: 'int avcodec_decode_audio4(AVCodecContext*, AVFrame*, int*, const AVPacket*)' is deprecated [-Wdeprecated-declarations]
       &gotta, &incoming_paket_libav);
                                    ^
In file included from audioomx.h:35,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavcodec/avcodec.h:4722:5: note: declared here
int avcodec_decode_audio4(AVCodecContext *avctx, AVFrame *frame,
     ^~~~~~~~~~~~~~~~~~~~~
audioomx.cc:2252:44: warning: 'int avresample_open(AVAudioResampleContext*)' is deprecated [-Wdeprecated-declarations]
     int ret=avresample_open(resam_con_libav);
                                            ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:214:5: note: declared here
int avresample_open(AVAudioResampleContext *avr);
     ^~~~~~~~~~~~~~~
audioomx.cc:2252:44: warning: 'int avresample_open(AVAudioResampleContext*)' is deprecated [-Wdeprecated-declarations]
     int ret=avresample_open(resam_con_libav);
                                            ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:214:5: note: declared here
int avresample_open(AVAudioResampleContext *avr);
     ^~~~~~~~~~~~~~~
audioomx.cc:2260:108: warning: 'int avresample_convert(AVAudioResampleContext*, uint8_t**, int, int, uint8_t* const*, int, int)' is deprecated [-Wdeprecated-declarations]
        decode_frame_libav->extended_data,  decode_frame_libav->linesize[0],  decode_frame_libav->nb_samples);
                                                                                                            ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:451:5: note: declared here
int avresample_convert(AVAudioResampleContext *avr, uint8_t **output,
     ^~~~~~~~~~~~~~~~~~
audioomx.cc:2260:108: warning: 'int avresample_convert(AVAudioResampleContext*, uint8_t**, int, int, uint8_t* const*, int, int)' is deprecated [-Wdeprecated-declarations]
        decode_frame_libav->extended_data,  decode_frame_libav->linesize[0],  decode_frame_libav->nb_samples);
                                                                                                            ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:451:5: note: declared here
int avresample_convert(AVAudioResampleContext *avr, uint8_t **output,
     ^~~~~~~~~~~~~~~~~~
audioomx.cc:2261:38: warning: 'void avresample_close(AVAudioResampleContext*)' is deprecated [-Wdeprecated-declarations]
      avresample_close(resam_con_libav);
                                      ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:245:6: note: declared here
void avresample_close(AVAudioResampleContext *avr);
      ^~~~~~~~~~~~~~~~
audioomx.cc:2261:38: warning: 'void avresample_close(AVAudioResampleContext*)' is deprecated [-Wdeprecated-declarations]
      avresample_close(resam_con_libav);
                                      ^
In file included from audioomx.h:37,
                 from audioomx.cc:21:
/usr/include/arm-linux-gnueabihf/libavresample/avresample.h:245:6: note: declared here
void avresample_close(AVAudioResampleContext *avr);
      ^~~~~~~~~~~~~~~~
make: *** [<eingebaut>: audioomx.o] Fehler 1


Regards,

Dirk
#2
VOMP for Raspberry Pi / Vompclient crashes
December 26, 2016, 13:10:33
Hi !

After updating to latest git version of rasppi-vompclient vompclient crashes during select recordings:


13:10:50.304505 [debug]  RRProc - thread woken with req, queue size: 1
13:10:50.304527 [debug]  RRProc - TVMedia request 133 /video0/Hunde_haben_kurze_Beine/2006-12-11.20.10.50.99.rec
13:10:50.304530 [debug]  PictRead - Got TVMediaRequest, signal thread!
13:10:50.304542 [debug]  RRProc - threadMethod waiting
13:10:50.305693 [debug]  PictRead - Load Pict
13:10:50.305704 [debug]  PictRead - Request 0 0;  3 1 0 0
13:10:50.306430 [debug]  Client - Received chan=1, ser=134, op=42, edl=79
13:10:50.306442 [debug]  RRProc - recvReq
13:10:50.306447 [debug]  RRProc - recvReq set req and signalled
13:10:50.306449 [debug]  Client - Waiting
13:10:50.306467 [debug]  RRProc - thread woken with req, queue size: 1
13:10:50.306493 [debug]  RRProc - TVMedia request 134 /video0/Beethoven_III_-_Ein_Urlaub_mit_Hindernissen/2006-12-11.20.14.50.99.rec
13:10:50.306497 [debug]  PictRead - Got TVMediaRequest, signal thread!
13:10:50.306510 [debug]  RRProc - threadMethod waiting
13:10:50.312338 [debug]  PictRead - Load Pict
13:10:50.312349 [debug]  PictRead - Request 0 0;  3 1 0 0
13:10:50.318941 [debug]  PictRead - Load Pict
13:10:50.318951 [debug]  PictRead - Request 0 0;  3 1 0 0
13:10:50.325477 [debug]  PictRead - Load Pict
13:10:50.325486 [debug]  PictRead - Request 0 0;  3 1 0 0
13:10:50.331976 [debug]  PictRead - Load Pict
13:10:50.338800 [ERR]    Client - Incoming channel number unknown
13:10:50.338810 [debug]  Client - Vomp client destructor
13:10:50.338920 [debug]  TCP - TCP has closed socket
13:10:50.338950 [info]   RRProc - threadMethod err 2 or quit

My vompserver-version runs on linux-server (opensuse leap 42.2):

Dez 26 13:26:38 pcneu vdr[26376]: [26376] initializing plugin: vompserver (0.4.1): Vompserver plugin by Chris Tallon

Regards,

Dirk
#3
I have the same problem.

After stopping the firewall MVP loading/locating continues ...

It seems something has changed between vomp 3.x and 4.0 with the needed tcp-/udp-ports !

Which tcp-/udp-ports should open in the firewall ?


Regards,

Dirk
#4
VOMP General / MVP / Re: MediaMVP does not start
December 16, 2012, 20:33:37

The dongle.bin from Hauppauge doesn't work here:

Failed to locate GUI Server

But the latest vomp.dongle from yaris (0.3.1-3) works without any problem on my four mvps (2 x E1, 1 x wxmvp H3, 1 x D3A) !

The latest vompserver-version from git loads this vomp.dongle (from yaris) without any problem.

The latest vompserver-version from git doesn't works with dongle.bin which is build from git-vompclient: No menu is shown, only a black screen !

The vompserver-version from yaris doesn't works with dongle.bin which is build from git-vompclient: No menu is shown, only a black screen !


Dirk
#5
VOMP General / MVP / Re: MediaMVP does not start
December 16, 2012, 10:19:56

After installing DebianSqueeze as a VBOX Client build of a dongle works fine but my mvp (Revision D3A) can't use this dongle with latest version

of vompserver from git.

Dongle is loading but menu doesn't appear.

11:03:24.576750 [debug]  BOOTPD - Starting bootpd
11:03:24.576782 [debug]  BOOTPD - Bootp replier started
11:03:24.576826 [info]   Main - TFTP path '/tftpboot/'
11:03:24.576837 [debug]  Tftpd - Starting TFTPd
11:03:24.576868 [debug]  Tftpd - TFTP server started with base path '/tftpboot/'
11:03:24.576905 [debug]  MVPRelay - MVPRelay replier started
11:03:24.576916 [info]   Main - MVPRelay started
11:03:24.576941 [debug]  Main - MVPServer run success
11:03:24.577182 [debug]  Tftpd - Starting wait
11:03:24.577203 [debug]  BOOTPD - Starting wait
11:03:46.257304 [debug]  BOOTPD - Wait finished
11:03:46.257354 [debug]  BOOTPD - Got request
11:03:46.257393 [debug]  Config - Opened config file: /video0/plugins/vompserver/vomp-00-0D-FE-00-48-F1.conf
11:03:46.257412 [debug]  BOOTPD - Opened config file: /video0/plugins/vompserver/vomp-00-0D-FE-00-48-F1.conf
11:03:46.257492 [debug]  Config - Config error: Key IP not found
11:03:46.257505 [WARN]   BOOTPD - No IP found for MVP. Hopefully it has one already...
11:03:46.257532 [debug]  Config - Config error: Key Override IP not found
11:03:46.257545 [debug]  BOOTPD - Will not change MVP IP if it already has one
11:03:46.257554 [debug]  BOOTPD - Leave YI=0 as MVP already has good IP
11:03:46.257625 [debug]  BOOTPD - Starting wait
11:03:46.388000 [debug]  Tftpd - Wait finished
11:03:46.388053 [debug]  TftpClient - Client handler started
11:03:46.388142 [debug]  Tftpd - Starting wait
11:03:46.388152 [debug]  TftpClient - RRQ received for vomp-dongle
11:03:46.388178 [info]   TftpClient - File: '/tftpboot/vomp-dongle'
11:03:54.027754 [debug]  TftpClient - Retransmitting buffer
11:03:57.039114 [debug]  TftpClient - Retransmitting buffer
11:03:57.691047 [info]   TftpClient - File transfer finished
11:03:57.691121 [info]   TftpClient - processMessage terminating connection

Some lines from my configs:

[Boot]

## If you enable the bootp server in vomp.conf, you can specify
## an IP to give out to this MVP here.

#IP = 192.168.1.29

## If you have a router that gives out addresses but you want
## the above address forced to the MVP, set this:

#Override IP = 1

## A file name to send to the MVP. The MVP will then request
## this file from the TFTP server. Don't use a path here!

TFTP file name = vomp-dongle

[General]
LangCode = en
Remote keys = H00000000I00000000K00H00000001I00000000K01H00000002I00000000K02H00000003I00000000K03H00000004I00000000K04H00000005I00000000K05H00000006I00000000K06H00000007I00000000K07H00000008I00000000K08
H00000009I00000000K09H0000000AI00000000K0AH0000000BI00000000K0BH0000000CI00000000K0CH0000000EI00000000K0EH0000000FI00000000K0FH00000010I00000000K10H00000011I00000000K11H00000012I00000000K12H00000018I0000
0000K18H00000019I00000000K19H0000001AI00000000K1AH0000001BI00000000K1BH0000001CI00000000K1CH0000001EI00000000K1EH00000020I00000000K20H00000021I00000000K21H00000024I00000000K24H00000029I00000000K29H000000
2EI00000000K2EH00000030I00000000K30H00000032I00000000K32H00000034I00000000K34H00000035I00000000K35H00000036I00000000K36H00000037I00000000K37H00000038I00000000K38H0000003BI00000000K3BH0000003CI00000000K3C
H0000003DI00000000K3D
Last Power State = On
PowerOnMode = Menu
VDR shutdown = On
ResumeId = 1
[Media]
ScaleFactor = 1
[TV]
[Advanced]

[General]

## Specify a log file here to enable logging

Log file = /tmp/vompserver.log

## If you have more than one vompserver running you
## can enter a name here that will appear on the
## server select list on the MVP

Server name = LAPPC

## Enable this to start the built in Bootp server
## Required to boot the MVP if you have not got a
## DHCP server that can tell the MVP its boot file
## name and server

Bootp server enabled = yes

## Enable this to start the built in TFTP server
## Required to boot the MVP if you have not got a
## TFTP server running elsewhere

TFTP server enabled = yes

## Base directory for TFTP server
## If you leave this blank the plugin config
## path will be used - i.e. where this file is

TFTP directory = /tftpboot

MVPRelay enabled = yes


Dirk
#6
VOMP General / MVP / Re: Compile Dongle fails
December 16, 2012, 10:14:54

After installing DebianSqueeze as a VBOX Client build of a dongle works fine but my mvp (Revision D3A) can't use this dongle with latest version

of vompserver from git.

Dongle is loading but menu doesn't appear.

11:03:24.576750 [debug]  BOOTPD - Starting bootpd
11:03:24.576782 [debug]  BOOTPD - Bootp replier started
11:03:24.576826 [info]   Main - TFTP path '/tftpboot/'
11:03:24.576837 [debug]  Tftpd - Starting TFTPd
11:03:24.576868 [debug]  Tftpd - TFTP server started with base path '/tftpboot/'
11:03:24.576905 [debug]  MVPRelay - MVPRelay replier started
11:03:24.576916 [info]   Main - MVPRelay started
11:03:24.576941 [debug]  Main - MVPServer run success
11:03:24.577182 [debug]  Tftpd - Starting wait
11:03:24.577203 [debug]  BOOTPD - Starting wait
11:03:46.257304 [debug]  BOOTPD - Wait finished
11:03:46.257354 [debug]  BOOTPD - Got request
11:03:46.257393 [debug]  Config - Opened config file: /video0/plugins/vompserver/vomp-00-0D-FE-00-48-F1.conf
11:03:46.257412 [debug]  BOOTPD - Opened config file: /video0/plugins/vompserver/vomp-00-0D-FE-00-48-F1.conf
11:03:46.257492 [debug]  Config - Config error: Key IP not found
11:03:46.257505 [WARN]   BOOTPD - No IP found for MVP. Hopefully it has one already...
11:03:46.257532 [debug]  Config - Config error: Key Override IP not found
11:03:46.257545 [debug]  BOOTPD - Will not change MVP IP if it already has one
11:03:46.257554 [debug]  BOOTPD - Leave YI=0 as MVP already has good IP
11:03:46.257625 [debug]  BOOTPD - Starting wait
11:03:46.388000 [debug]  Tftpd - Wait finished
11:03:46.388053 [debug]  TftpClient - Client handler started
11:03:46.388142 [debug]  Tftpd - Starting wait
11:03:46.388152 [debug]  TftpClient - RRQ received for vomp-dongle
11:03:46.388178 [info]   TftpClient - File: '/tftpboot/vomp-dongle'
11:03:54.027754 [debug]  TftpClient - Retransmitting buffer
11:03:57.039114 [debug]  TftpClient - Retransmitting buffer
11:03:57.691047 [info]   TftpClient - File transfer finished
11:03:57.691121 [info]   TftpClient - processMessage terminating connection

Dirk
#7
VOMP General / MVP / Re: Compile Dongle fails
December 09, 2012, 20:37:35

I use openSUSE 12.2 !


Dirk
#8
VOMP General / MVP / Re: Compile Dongle fails
December 09, 2012, 15:05:03

Next error:


gcc -M wcfuncs.c -DBOOTSTRAP_GCC -Wall -Winline -Wstrict-prototypes -Wwrite-strings -mnew-mnemonics      -I../include -I. -I/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype -I.. -I../libio  -I/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers -I../sysdeps/powerpc/elf -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix/powerpc -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerpc/fpu -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754/flt-32 -I../sysdeps/ieee754/dbl-64 -I../sysdeps/powerpc/soft-fp -I../sysdeps/ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /usr/lib/gcc/i586-suse-linux/4.7/include -isystem /privat/tv/dvb/tools/vompdev/crosstool/gcc-3.4.5-glibc-2.2.5/powerpc-405-linux-gnu/powerpc-405-linux-gnu/include  -include ../include/libc-symbols.h      | sed -e 's,wcfuncs\.o,/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.o /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.os /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.op /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.og /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.ob /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.oST /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.d,' -e 's@ /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0\.43/build/powerpc-405-linux-gnu/gcc-3\.4\.5-glibc-2\.2\.5/build-glibc-headers/@ $(common-objpfx)@g' -e 's@^/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0\.43/build/powerpc-405-linux-gnu/gcc-3\.4\.5-glibc-2\.2\.5/build-glibc-headers/@$(common-objpfx)@g' > /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.T
gcc: Fehler: nicht erkannte Kommandozeilenoption »-mnew-mnemonics«
mv -f /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.T /privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/build-glibc-headers/wctype/wcfuncs.d
make[2]: Leaving directory `/backup/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/glibc-2.2.5/wctype'
make[2]: Entering directory `/backup/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/glibc-2.2.5/wctype'
/usr/bin/install -c -m 644 wctype.h /privat/tv/dvb/tools/vompdev/crosstool/gcc-3.4.5-glibc-2.2.5/powerpc-405-linux-gnu/powerpc-405-linux-gnu/include/wctype.h
make[2]: Leaving directory `/backup/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/glibc-2.2.5/wctype'
make  -C manual install-headers
make[2]: Entering directory `/backup/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/glibc-2.2.5/manual'
Makefile:250: *** Implizite und normale Regel vermischt.  Schluss.
make[2]: Leaving directory `/backup/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/glibc-2.2.5/manual'
make[1]: *** [manual/install-headers] Fehler 2
make[1]: Leaving directory `/backup/privat/tv/dvb/tools/vompdev/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5/glibc-2.2.5'
make: *** [install-headers] Fehler 2

Dirk
#9
VOMP General / MVP / Compile Dongle fails
December 09, 2012, 12:58:43
Hi !


Compile fails:

creating cache ./config.cache
checking host system type... powerpc-405-linux-gnu
checking sysdep dirs... sysdeps/powerpc/elf sysdeps/unix/sysv/linux/powerpc sysdeps/unix/sysv/linux sysdeps/gnu sysdeps/unix/common sysdeps/unix/mman sysdeps/unix/inet sysdeps/unix/sysv sysdeps/unix/powe
rpc sysdeps/unix sysdeps/posix sysdeps/powerpc/fpu sysdeps/powerpc sysdeps/wordsize-32 sysdeps/ieee754/flt-32 sysdeps/ieee754/dbl-64 sysdeps/powerpc/soft-fp sysdeps/ieee754 sysdeps/generic/elf sysdeps/ge
neric
checking for a BSD compatible install... /usr/bin/install -c
checking whether ln -s works... yes
checking for pwd... /usr/bin/pwd
checking build system type... i686-pc-linux-gnu
checking for powerpc-405-linux-gnu-gcc... gcc
checking version of gcc... 4.7.2, bad
checking for gnumake... no
checking for gmake... gmake
checking version of gmake... 3.82, ok
configure: error:
*** These critical programs are missing or too old:gcc
*** Check the INSTALL file for required versions.

Which version of gcc is required ?


Dirk
#10
VOMP General / MVP / Compile vompserver fails
November 25, 2011, 19:22:24
Hi !

After installling openSUSE 12.1 compile of vompserver-plugin fails:

Plugin vompserver:
make[1]: Entering directory `/backup/privat/tv/dvb/vdr-1.7.21/PLUGINS/src/vompserver-0.3.1-3-Yaris'
( if [ -f .standalone ] ; then ( rm -f .standalone; make clean ; make objects ) ; else exit 0 ;fi )
g++ -g -O3 -Wall -Woverloaded-virtual -Wno-parentheses -fPIC -c -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"vompserver"' -DVOMPSERVER -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -I../../../include -I/include -o mediafile.o mediafile.c
mediafile.c: In member function 'virtual MediaList* MediaFile::getMediaList(const MediaURI*)':
mediafile.c:126:21: error: expected primary-expression before 'struct'
mediafile.c:126:36: error: 'd_name' was not declared in this scope
mediafile.c:126:42: error: 'offsetof' was not declared in this scope
mediafile.c:126:58: error: array bound is not an integer constant before ']' token
make[1]: *** [mediafile.o] Error 1
make[1]: Leaving directory `/backup/privat/tv/dvb/vdr-1.7.21/PLUGINS/src/vompserver-0.3.1-3-Yaris'

Any ideas ?

Dirk