compiling neutrinohd2 for pc (x86)
- DboxOldie
- Co-Admin
- Beiträge: 5427
- Registriert: Sa 6. Aug 2011, 15:21
- Hat sich bedankt: 79 Mal
- Danksagung erhalten: 300 Mal
Re: compiling neutrinohd2 for pc (x86)
Oder mit dem gcc....
Bei der Umstellung von gcc-4.6 nach gcc-4.8.x haben wir auch ein paar üble Überraschungen gehabt.
Bei der Umstellung von gcc-4.6 nach gcc-4.8.x haben wir auch ein paar üble Überraschungen gehabt.
- max
- Moderator
- Beiträge: 814
- Registriert: Mi 6. Jul 2011, 22:23
- Hat sich bedankt: 26 Mal
- Danksagung erhalten: 49 Mal
Re: compiling neutrinohd2 for pc (x86)
@Ezak
es liegt an Ubuntu 15.xx und neuer gcc version.
Folgende Änderung muß an Neutrino vorgenommen werden.
patch auch im Anhang.
es liegt an Ubuntu 15.xx und neuer gcc version.
Folgende Änderung muß an Neutrino vorgenommen werden.
patch auch im Anhang.
Code: Alles auswählen
--- neutrino-mp.org/acinclude.m4
+++ neutrino-mp/acinclude.m4
@@ -238,13 +238,13 @@
#include <linux/dvb/version.h>
version DVB_API_VERSION
]])])
- DVB_API_VERSION=`(eval "$ac_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | $EGREP "^version" | sed "s,version\ ,,"`
+ DVB_API_VERSION=`(eval "$ac_cpp -traditional-cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | $EGREP "^version" | sed "s,version\ ,,"`
AC_LANG_CONFTEST([AC_LANG_SOURCE([[
#include <linux/dvb/version.h>
version DVB_API_VERSION_MINOR
]])])
- DVB_API_VERSION_MINOR=`(eval "$ac_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | $EGREP "^version" | sed "s,version\ ,,"`
+ DVB_API_VERSION_MINOR=`(eval "$ac_cpp -traditional-cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | $EGREP "^version" | sed "s,version\ ,,"`
rm -f conftest*
AC_MSG_NOTICE([found dvb version $DVB_API_VERSION.$DVB_API_VERSION_MINOR])
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.
- max
- Moderator
- Beiträge: 814
- Registriert: Mi 6. Jul 2011, 22:23
- Hat sich bedankt: 26 Mal
- Danksagung erhalten: 49 Mal
Re: compiling neutrinohd2 for pc (x86)
ich habe mir heute extra Ubuntu 15.10 installiert und hatte die selber Fehlermeldung wie du beim bauen.
Nach Änderung der acinclude.m4 hat es ohne Fehler durch gebaut.
Änderung kann man auch von Hand vornehmen, in nmp-x86/build_tmp/neutrino-mp/acinclude.m4.
sonnst muss man alles clean machen, das der patch, auch angewandt wird.
Nach Änderung der acinclude.m4 hat es ohne Fehler durch gebaut.
Änderung kann man auch von Hand vornehmen, in nmp-x86/build_tmp/neutrino-mp/acinclude.m4.
sonnst muss man alles clean machen, das der patch, auch angewandt wird.
- max
- Moderator
- Beiträge: 814
- Registriert: Mi 6. Jul 2011, 22:23
- Hat sich bedankt: 26 Mal
- Danksagung erhalten: 49 Mal
Re: compiling neutrinohd2 for pc (x86)
ich muß jetzt mal dumm fragen wurde im makefile dann auch die # entfernt?
sehe gerade das bei TC das so da steht #N_PATCHES += $(PATCHES)/fix_DVB_API_VERSION_check_for_gcc5.patch
nachtrag:
- nmp-x86 Ordner gelöscht
- git clone https://github.com/TangoCash/nmp-x86.git
- in Makefile # vor #N_PATCHES += $(PATCHES)/fix_DVB_API_VERSION_check_for_gcc5.patch entfernt
- make default eingeben / baut ohne DVB Fehler weiter
Packet-Liste für PC Version
sehe gerade das bei TC das so da steht #N_PATCHES += $(PATCHES)/fix_DVB_API_VERSION_check_for_gcc5.patch
nachtrag:
- nmp-x86 Ordner gelöscht
- git clone https://github.com/TangoCash/nmp-x86.git
- in Makefile # vor #N_PATCHES += $(PATCHES)/fix_DVB_API_VERSION_check_for_gcc5.patch entfernt
- make default eingeben / baut ohne DVB Fehler weiter
Code: Alles auswählen
max@max:~$ uname -a
Linux max 4.2.0-18-generic #22-Ubuntu SMP Fri Nov 6 18:25:50 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
max@max:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 15.10
Release: 15.10
Codename: wily
max@max:~$
Code: Alles auswählen
sudo apt-get install autoconf libtool libtool-bin g++ gdb libavformat-dev libswscale-dev libopenthreads-dev libglew-dev freeglut3-dev libcurl4-gnutls-dev libfreetype6-dev libid3tag0-dev libmad0-dev libogg-dev libpng12-dev libgif-dev libjpeg62-dev libvorbis-dev libflac-dev libblkid-dev libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev libao-dev gdb ccache build-essential
Zuletzt geändert von max am Sa 28. Nov 2015, 00:33, insgesamt 1-mal geändert.
-
- Registrierte Benutzer
- Beiträge: 32
- Registriert: Di 24. Nov 2015, 12:36
- Hat sich bedankt: 2 Mal
- Danksagung erhalten: 0
Re: compiling neutrinohd2 for pc (x86)
ups...........
Vielen Dank Max, jetzt komme ich bis zum nächsten Fehler
Aber erstmal in die heia
Vielen Dank Max, jetzt komme ich bis zum nächsten Fehler
Code: Alles auswählen
/home/ezak/neutrino-mp-x86/nmp-x86/build_tmp/neutrino-mp/src/gui/luainstance.cpp:3120:84: error: invalid initialization of non-const reference of type ‘int&’ from an rvalue of type ‘int’
...
/home/ezak/neutrino-mp-x86/nmp-x86/build_tmp/neutrino-mp/src/driver/neutrinofonts.h:127:9: note: initializing argument 1 of ‘Font* CNeutrinoFonts::getDynFontExt(int&, int&, unsigned int, std::__cxx11::string, int)’
Font *getDynFontExt(int &dx, int &dy, unsigned int f_id, std::string text="", int style=FONT_STYLE_REGULAR);
^
Makefile:696: recipe for target 'luainstance.o' failed
make[6]: *** [luainstance.o] Error 1
make[6]: Leaving directory '/home/ezak/neutrino-mp-x86/nmp-x86/obj/neutrino-mp/src/gui'
Makefile:729: recipe for target 'install-recursive' failed
make[5]: *** [install-recursive] Error 1
make[5]: Leaving directory '/home/ezak/neutrino-mp-x86/nmp-x86/obj/neutrino-mp/src/gui'
Makefile:883: recipe for target 'install' failed
make[4]: *** [install] Error 2
make[4]: Leaving directory '/home/ezak/neutrino-mp-x86/nmp-x86/obj/neutrino-mp/src/gui'
Makefile:747: recipe for target 'install-recursive' failed
make[3]: *** [install-recursive] Error 1
make[3]: Leaving directory '/home/ezak/neutrino-mp-x86/nmp-x86/obj/neutrino-mp/src'
Makefile:904: recipe for target 'install' failed
make[2]: *** [install] Error 2
make[2]: Leaving directory '/home/ezak/neutrino-mp-x86/nmp-x86/obj/neutrino-mp/src'
Makefile:465: recipe for target 'install-recursive' failed
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory '/home/ezak/neutrino-mp-x86/nmp-x86/obj/neutrino-mp'
make/neutrino.mk:2: recipe for target 'neutrino' failed
make: *** [neutrino] Error 2
- max
- Moderator
- Beiträge: 814
- Registriert: Mi 6. Jul 2011, 22:23
- Hat sich bedankt: 26 Mal
- Danksagung erhalten: 49 Mal
Re: compiling neutrinohd2 for pc (x86)
hängt mit der Änderung für coolithek zusammen, patch im Anhang.
Code: Alles auswählen
--- neutrino-mp.org/src/gui/luainstance.cpp
+++ neutrino-mp/src/gui/luainstance.cpp
@@ -3094,7 +3094,7 @@
return 2;
}
- lua_Integer dx = 0, dy = 0, style = CNeutrinoFonts::FONT_STYLE_REGULAR;
+ int dx = 0, dy = 0, style = CNeutrinoFonts::FONT_STYLE_REGULAR;
std::string text="";
dx = luaL_checkint(L, 2);
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.
- mohousch
- Registrierte Benutzer
- Beiträge: 1110
- Registriert: Di 18. Sep 2012, 20:21
- Hat sich bedankt: 41 Mal
- Danksagung erhalten: 163 Mal
Re: compiling neutrinohd2 for pc (x86)
mein letzte Stand Debian 7 (Juli updatet)
nach Preqs installation und wie im topic beschrieben lief alles durch
nach Preqs installation und wie im topic beschrieben lief alles durch
- mohousch
- Registrierte Benutzer
- Beiträge: 1110
- Registriert: Di 18. Sep 2012, 20:21
- Hat sich bedankt: 41 Mal
- Danksagung erhalten: 163 Mal
Re: compiling neutrinohd2 for pc (x86)
In der Topic auf diesem Thread habe ich den Anhang updated, source file werden aus dem git geholt da der svn bei google ab anfangs 2016 gelöscht wird.
getestet wie bisher alles was da zu finden ist funktioniert noch
getestet wie bisher alles was da zu finden ist funktioniert noch
-
- Registrierte Benutzer
- Beiträge: 9
- Registriert: Fr 7. Aug 2015, 11:26
- Hat sich bedankt: 0
- Danksagung erhalten: 0
Re: compiling neutrinohd2 for pc (x86)
Also unter Ubuntu 15.10 gehts nicht.
Code: Alles auswählen
/home/tux/Development/neutrinohd2-pc/nhd2-exp/autogen.sh
Generating configuration files for neutrinoHD2, please wait....
aclocal
libtoolize --automake
autoconf
autoheader
automake --add-missing
configure.ac:2: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
configure.ac:2: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
configure.ac:4: installing './compile'
configure.ac:4: installing './config.guess'
configure.ac:4: installing './config.sub'
configure.ac:2: installing './install-sh'
configure.ac:2: installing './missing'
Makefile.am: installing './INSTALL'
Makefile.am: installing './COPYING' using GNU General Public License v3 file
Makefile.am: Consider adding the COPYING file to the version control system
Makefile.am: for your code, to avoid questions about which license your project uses
lib/connection/Makefile.am: installing './depcomp'
lib/libdvbapi/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
lib/libdvbsub/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
lib/libeplayer3/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
lib/libeplayer3/Makefile.am:9: warning: source file 'container/container.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least a source file is in a subdirectory, but the 'subdir-objects'
automake: automake option hasn't been enabled. For now, the corresponding output
automake: object file(s) will be placed in the top-level directory. However,
automake: this behaviour will change in future Automake versions: they will
automake: unconditionally cause object files to be placed in the same subdirectory
automake: of the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout your
automake: project, to avoid future incompatibilities.
lib/libeplayer3/Makefile.am:9: warning: source file 'container/container_ffmpeg.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'manager/audio.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'manager/manager.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'manager/video.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/linuxdvb.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/output.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'playback/playback.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/writer.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/aac.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/wmv.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/ac3.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/divx.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/wma.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/pes.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/dts.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/mpeg2.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/mp3.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/misc.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/h264.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/h263.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/vc1.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/vorbis.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/flac.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/pcm.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'container/text_srt.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'container/text_ssa.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'manager/subtitle.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/output_subtitle.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:9: warning: source file 'output/writer/framebuffer.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:9: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:37: warning: source file 'tools/eplayer2.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:37: but option 'subdir-objects' is disabled
lib/libeplayer3/Makefile.am:40: warning: source file 'tools/meta.c' is in a subdirectory,
lib/libeplayer3/Makefile.am:40: but option 'subdir-objects' is disabled
lib/liblcddisplay/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
lib/libtuxtxt/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
lib/libupnpclient/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
lib/libxmltree/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
lib/sectionsdclient/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
lib/timerdclient/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/daemonc/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/driver/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/driver/audiodec/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/driver/pictureviewer/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/gui/Makefile.am:16: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/gui/bedit/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/gui/widget/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/nhttpd/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/nhttpd/tuxboxapi/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/nhttpd/yhttpd_core/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/nhttpd/yhttpd_mods/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/sectionsd/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/system/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/timerd/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/zapit/lib/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/zapit/src/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
set -e; cd /home/tux/Development/neutrinohd2-pc/nhd2-exp; \
/home/tux/Development/neutrinohd2-pc/nhd2-exp/configure \
--prefix=/home/tux/Development/neutrinohd2-pc/generic \
--build=i686-pc-linux-gnu \
--enable-maintainer-mode \
--with-boxtype=generic \
--with-datadir=/home/tux/Development/neutrinohd2-pc/generic/share/tuxbox \
--with-fontdir=/home/tux/Development/neutrinohd2-pc/generic/share/fonts \
--with-isocodesdir=/home/tux/Development/neutrinohd2-pc/generic/share/iso-codes \
--with-themesdir=/home/tux/Development/neutrinohd2-pc/generic/share/tuxbox/neutrino/themes \
--with-gamesdir=/home/tux/Development/neutrinohd2-pc/generic/var/tuxbox/games \
--with-plugindir=/home/tux/Development/neutrinohd2-pc/generic/var/tuxbox/plugins \
--with-configdir=/home/tux/Development/neutrinohd2-pc/generic/var/tuxbox/config \
--enable-opengl \
--enable-gstreamer \
--enable-fribidi \
--enable-lcd \
--enable-scart \
--enable-ci
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking target... native
checking for pkg-config... /usr/bin/pkg-config
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking ost/dmx.h usability... no
checking ost/dmx.h presence... no
checking for ost/dmx.h... no
checking linux/dvb/version.h usability... yes
checking linux/dvb/version.h presence... yes
checking for linux/dvb/version.h... yes
configure: found dvb version
configure: error: can't find dvb headers
Makefile:68: recipe for target '/home/tux/Development/neutrinohd2-pc/nhd2-exp/config.status' failed
make: *** [/home/tux/Development/neutrinohd2-pc/nhd2-exp/config.status] Error 1
- mohousch
- Registrierte Benutzer
- Beiträge: 1110
- Registriert: Di 18. Sep 2012, 20:21
- Hat sich bedankt: 41 Mal
- Danksagung erhalten: 163 Mal
FramBoxes
hab bisschen für das "frameBoxes" Proof Concept was gebastellt, nicht was groesses als erstes ist klein Code in dem test Sample Plugin als zwei subPlugins:
- als mediaPlayer Seite wo z.B die ganzen Mediathecken Player sich befinden
- und als SmartTV MainMenu Anzeige für neutrino
es funktioniert auch wie es sein soll, mit links navigiert man weiter bzw immer weiter zwischen die Frame Items (bis jetzt nur eine Seite mit 18 FrameBoxes als 6 x 3 frames) wenn man auch auf die letzte Frame ist springt es wieder zurück zu erste Frame , oben und unten Tasten dienen wie genannt auch dazu.
und OK Taste um dem FrameBox Item zu wählen was auch funktioniert.
leider z.Zt hab totaler Chaos auf dem rechner um das auf dem Git zu laden.
PS: Sorry ich weiss die icons Bilder sind mesirable von der Qualität her das ist was ich zu Hand zum testen hatte
[youtube]og6tBaR7gWU[/youtube]
EDIT:
pushed to git
- localized menu items
- add test media portal
und doch das smart menu ist in neutrino unter Diverse Einstellungen/Allgemeine Einstellungen kann man das Hauptmenü Design zwischen standard und smart auswählen.
wie man dchnell das auf dem PC testet siehe die topic des threads
frohes Weihnachten
EDIT by BPanther: Youtube-Link gefixt.
- als mediaPlayer Seite wo z.B die ganzen Mediathecken Player sich befinden
- und als SmartTV MainMenu Anzeige für neutrino
es funktioniert auch wie es sein soll, mit links navigiert man weiter bzw immer weiter zwischen die Frame Items (bis jetzt nur eine Seite mit 18 FrameBoxes als 6 x 3 frames) wenn man auch auf die letzte Frame ist springt es wieder zurück zu erste Frame , oben und unten Tasten dienen wie genannt auch dazu.
und OK Taste um dem FrameBox Item zu wählen was auch funktioniert.
leider z.Zt hab totaler Chaos auf dem rechner um das auf dem Git zu laden.
PS: Sorry ich weiss die icons Bilder sind mesirable von der Qualität her das ist was ich zu Hand zum testen hatte
[youtube]og6tBaR7gWU[/youtube]
EDIT:
pushed to git
- localized menu items
- add test media portal
und doch das smart menu ist in neutrino unter Diverse Einstellungen/Allgemeine Einstellungen kann man das Hauptmenü Design zwischen standard und smart auswählen.
wie man dchnell das auf dem PC testet siehe die topic des threads
frohes Weihnachten
EDIT by BPanther: Youtube-Link gefixt.
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.
- mohousch
- Registrierte Benutzer
- Beiträge: 1110
- Registriert: Di 18. Sep 2012, 20:21
- Hat sich bedankt: 41 Mal
- Danksagung erhalten: 163 Mal
Re: compiling neutrinohd2 for pc (x86)
- color gradient (ported from sct-next)
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.