abclinuxu.cz AbcLinuxu.cz itbiz.cz ITBiz.cz HDmag.cz HDmag.cz abcprace.cz AbcPráce.cz
AbcLinuxu hledá autory!
Inzerujte na AbcPráce.cz od 950 Kč
Rozšířené hledání
×
    včera 18:22 | IT novinky

    V uplynulých dnech byla v depu Českých drah v Brně-Maloměřicích úspěšně dokončena zástavba speciální antény satelitního internetu Starlink od společnosti SpaceX do jednotky InterPanter 660 004 Českých drah. Zástavbu provedla Škoda Group. Cestující se s InterPanterem, vybaveným vysokorychlostním satelitním internetem, setkají například na linkách Svitava Brno – Česká Třebová – Praha nebo Moravan Brno – Břeclav – Přerov – Olomouc.

    Ladislav Hagara | Komentářů: 0
    včera 13:11 | Nová verze

    Byla vydána nová verze 8.7.0 správce sbírky fotografií digiKam (Wikipedie). Přehled novinek i s náhledy v oficiálním oznámení (NEWS). Nejnovější digiKam je ke stažení také jako balíček ve formátu AppImage. Stačí jej stáhnout, nastavit právo ke spuštění a spustit.

    Ladislav Hagara | Komentářů: 0
    včera 12:22 | IT novinky

    Před 30 lety, k 1. 7. 1995, byl v ČR liberalizován Internet - tehdejší Eurotel přišel o svou exkluzivitu a mohli začít vznikat první komerční poskytovatelé přístupu k Internetu [𝕏].

    Ladislav Hagara | Komentářů: 6
    včera 11:33 | Nová verze

    Byla vydána (𝕏) nová verze 7.4 open source monitorovacího systému Zabbix (Wikipedie). Přehled novinek v oznámení na webu, v poznámkách k vydání a v aktualizované dokumentaci.

    Ladislav Hagara | Komentářů: 0
    včera 05:44 | Bezpečnostní upozornění

    Balíček s příkazem sudo byl vydán ve verzi 1.9.17p1. Řešeny jsou zranitelnosti CVE-2025-32462 (lokální eskalace práv prostřednictvím volby host) a CVE-2025-32463 (lokální eskalace práv prostřednictvím volby chroot).

    Ladislav Hagara | Komentářů: 6
    včera 05:22 | IT novinky

    Do služeb Seznam.cz se lze nově přihlásit pomocí služby MojeID [𝕏].

    Ladislav Hagara | Komentářů: 2
    včera 03:33 | Bezpečnostní upozornění

    Bezpečnostní výzkumníci zveřejnili informace o osmi zranitelnostech, které postihují více než 700 modelů tiskáren, skenerů a štítkovačů značky Brother. Bezpečnostní upozornění vydali také další výrobci jako Fujifilm, Ricoh, Konica Minolta a Toshiba. Nejzávažnější zranitelnost CVE-2024-51978 umožňuje útočníkovi vzdáleně a bez přihlášení získat administrátorská oprávnění prostřednictvím výchozího hesla, které lze odvodit ze

    … více »
    Ladislav Hagara | Komentářů: 0
    30.6. 16:00 | Komunita

    Společnost Oracle vlastní ochrannou známku JAVASCRIPT. Komunita kolem programovacího jazyka JavaScript zastoupena společností Deno Land vede právní bitvu za její osvobození, viz petice a otevřený dopis na javascript.tm. Do 7. srpna se k nim má vyjádřit Oracle (USPTO TTAB).

    Ladislav Hagara | Komentářů: 6
    30.6. 13:11 | IT novinky

    Byl představen samostatný rádiový modul Raspberry Pi Radio Module 2 s Wi-Fi a Bluetooth.

    Ladislav Hagara | Komentářů: 6
    30.6. 12:44 | Upozornění

    Certifikační autorita Let’s Encrypt ukončila k 4. červnu zasílání e-mailových oznámení o vypršení platnosti certifikátů. Pokud e-maily potřebujete, Let’s Encrypt doporučuje některou z monitorovacích služeb.

    Ladislav Hagara | Komentářů: 0
    Jaký je váš oblíbený skriptovací jazyk?
     (59%)
     (28%)
     (7%)
     (2%)
     (0%)
     (1%)
     (3%)
    Celkem 337 hlasů
     Komentářů: 16, poslední 8.6. 21:05
    Rozcestník

    Administrace komentářů

    Jste na stránce určené pro řešení chyb a problémů týkajících se diskusí a komentářů. Můžete zde našim administrátorům reportovat špatně zařazenou či duplicitní diskusi, vulgární či osočující příspěvek a podobně. Děkujeme vám za vaši pomoc, více očí více vidí, společně můžeme udržet vysokou kvalitu AbcLinuxu.cz.

    Příspěvek
    16.12.2005 20:43 Käyttäjä 11133 | skóre: 58 | blog: Ajattelee menneisyyttä
    Rozbalit Rozbalit vše Jak napsat e-build pro libjingle?
    Dobrý den píšu (svůj první) e-build pro libjingle a můj kód vypadá zatím takto:
    # Copyright 1999-2005 Gentoo Foundation
    # Distributed under the terms of the GNU General Public License v2
    # $Header: $
    
    DESCRIPTION=""
    HOMEPAGE="https://sourceforge.net/projects/libjingle/"
    SRC_URI="http://kent.dl.sourceforge.net/sourceforge/libjingle/libjingle-0.1.0.tar.gz"
    
    LICENSE="BSD"
    SLOT="0"
    KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
    IUSE="speex ilbc"
    
    DEPEND="net-libs/ortp"
    RDEPEND="
                speex? ( >=media-libs/speex-1.1.6 )
                ilbc? ( dev-libs/ilbc-rfc3951 )
    "
    
    src_compile() {
        use speex && myconf="--with-speex=/usr/include/speex"
        use ilbc && myconf="--with-ilbc=/usr/include/ilbc"
        econf ${myconf} || die
            emake || die
    }
    
    a při kompilaci mi to vypisuje chybu:
    >>> emerge (1 of 1) net-libs/libjingle-0.1.0 to /
    >>> md5 files   ;-) libjingle-0.1.0.ebuild
    >>> md5 files   ;-) files/digest-libjingle-0.1.0
    >>> md5 src_uri ;-) libjingle-0.1.0.tar.gz
    >>> Unpacking source...
    >>> Unpacking libjingle-0.1.0.tar.gz to /var/tmp/portage/libjingle-0.1.0/work
    >>> Source unpacked.
     * econf: updating libjingle-0.1.0/config.guess with /usr/share/gnuconfig/config.guess
     * econf: updating libjingle-0.1.0/config.sub with /usr/share/gnuconfig/config.sub
    ./configure --prefix=/usr --host=i686-pc-linux-gnu
    --mandir=/usr/share/man --infodir=/usr/share/info
    --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib
    --build=i686-pc-linux-gnu --with-ilbc=/usr/include/ilbc
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking target system type... i686-pc-linux-gnu
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for i686-pc-linux-gnu-gcc... i686-pc-linux-gnu-gcc
    checking for C compiler default output... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether i686-pc-linux-gnu-gcc accepts -g... yes
    checking for i686-pc-linux-gnu-gcc option to accept ANSI C... none needed
    checking for style of include used by make... GNU
    checking dependency style of i686-pc-linux-gnu-gcc... gcc3
    checking for i686-pc-linux-gnu-g++... i686-pc-linux-gnu-g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether i686-pc-linux-gnu-g++ accepts -g... yes
    checking dependency style of i686-pc-linux-gnu-g++... gcc3
    checking for a sed that does not truncate output... /bin/sed
    checking for egrep... grep -E
    checking for ld used by i686-pc-linux-gnu-gcc... /usr/i686-pc-linux-gnu/bin/ld
    checking if the linker (/usr/i686-pc-linux-gnu/bin/ld) is GNU ld... yes
    checking for /usr/i686-pc-linux-gnu/bin/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/i686-pc-linux-gnu-nm -B
    checking whether ln -s works... yes
    checking how to recognise dependent libraries... pass_all
    checking how to run the C preprocessor... i686-pc-linux-gnu-gcc -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 dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking how to run the C++ preprocessor... i686-pc-linux-gnu-g++ -E
    checking for i686-pc-linux-gnu-g77... i686-pc-linux-gnu-g77
    checking whether we are using the GNU Fortran 77 compiler... yes
    checking whether i686-pc-linux-gnu-g77 accepts -g... yes
    checking the maximum length of command line arguments... 32768
    checking command to parse /usr/bin/i686-pc-linux-gnu-nm -B output from i686-pc-linux-gnu-gcc object... ok
    checking for objdir... .libs
    checking for i686-pc-linux-gnu-ar... i686-pc-linux-gnu-ar
    checking for i686-pc-linux-gnu-ranlib... i686-pc-linux-gnu-ranlib
    checking for i686-pc-linux-gnu-strip... i686-pc-linux-gnu-strip
    checking if i686-pc-linux-gnu-gcc static flag  works... yes
    checking if i686-pc-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
    checking for i686-pc-linux-gnu-gcc option to produce PIC... -fPIC
    checking if i686-pc-linux-gnu-gcc PIC flag -fPIC works... yes
    checking if i686-pc-linux-gnu-gcc supports -c -o file.o... yes
    checking whether the i686-pc-linux-gnu-gcc linker (/usr/i686-pc-linux-gnu/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    configure: creating libtool
    appending configuration tag "CXX" to libtool
    checking for ld used by i686-pc-linux-gnu-g++... /usr/i686-pc-linux-gnu/bin/ld
    checking if the linker (/usr/i686-pc-linux-gnu/bin/ld) is GNU ld... yes
    checking whether the i686-pc-linux-gnu-g++ linker (/usr/i686-pc-linux-gnu/bin/ld) supports shared libraries... yes
    checking for i686-pc-linux-gnu-g++ option to produce PIC... -fPIC
    checking if i686-pc-linux-gnu-g++ PIC flag -fPIC works... yes
    checking if i686-pc-linux-gnu-g++ supports -c -o file.o... yes
    checking whether the i686-pc-linux-gnu-g++ linker (/usr/i686-pc-linux-gnu/bin/ld) supports shared libraries... yes
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    appending configuration tag "F77" to libtool
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking for i686-pc-linux-gnu-g77 option to produce PIC... -fPIC
    checking if i686-pc-linux-gnu-g77 PIC flag -fPIC works... yes
    checking if i686-pc-linux-gnu-g77 supports -c -o file.o... yes
    checking whether the i686-pc-linux-gnu-g77 linker (/usr/i686-pc-linux-gnu/bin/ld) supports shared libraries... yes
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking for a BSD-compatible install... /bin/install -c
    checking for XML_ParserCreate in -lexpat... yes
    checking alsa/asoundlib.h usability... yes
    checking alsa/asoundlib.h presence... yes
    checking for alsa/asoundlib.h... yes
    checking for snd_pcm_open in -lasound... yes
    checking for pkg-config... /usr/bin/pkg-config
    checking for glib-2.0 gmodule-2.0... yes
    checking GLIB_CFLAGS... -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
    checking GLIB_LIBS... -Wl,--export-dynamic -lgmodule-2.0 -ldl -lglib-2.0
    checking for ortp... yes
    checking ORTP_CFLAGS... -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
    checking ORTP_LIBS... -pthread -lortp -lgthread-2.0 -lglib-2.0
    checking speex.h usability... no
    checking speex.h presence... no
    checking for speex.h... no
    configure: WARNING: Could not find a libspeex version that have the speex_encode_int() function. Please install libspeex=1.0.5 or libspeex>=1.1.6 from http://www.speex.org/
    checking iLBC_decode.h usability... no
    checking iLBC_decode.h presence... no
    checking for iLBC_decode.h... no
    configure: WARNING: Could not find ilbc headers or libs. Please install ilbc package from http://www.linphone.org if you want iLBC codec support in libjingle.
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating talk/Makefile
    config.status: creating talk/base/Makefile
    config.status: creating talk/third_party/Makefile
    config.status: creating talk/third_party/mediastreamer/Makefile
    config.status: creating talk/examples/Makefile
    config.status: creating talk/examples/login/Makefile
    config.status: creating talk/examples/call/Makefile
    config.status: creating talk/p2p/Makefile
    config.status: creating talk/p2p/base/Makefile
    config.status: creating talk/p2p/client/Makefile
    config.status: creating talk/session/Makefile
    config.status: creating talk/session/phone/Makefile
    config.status: creating talk/xmllite/Makefile
    config.status: creating talk/xmpp/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    
    libjingle 0.1.0
    
    Supported Codecs:
    Speex: no
    iLBC: no
    MULAW: yes
    
    cd . && /bin/sh /var/tmp/portage/libjingle-0.1.0/work/libjingle-0.1.0/missing --run aclocal-1.6
    cd . && \
      /bin/sh /var/tmp/portage/libjingle-0.1.0/work/libjingle-0.1.0/missing --run automake-1.6 --gnu  Makefile
    cd . && /bin/sh /var/tmp/portage/libjingle-0.1.0/work/libjingle-0.1.0/missing --run autoconf
    /bin/sh ./config.status --recheck
    running /bin/sh ./configure  --prefix=/usr --host=i686-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --build=i686-pc-linux-gnu --with-ilbc=/usr/include/ilbc CFLAGS=-march=pentium4 -O3 -pipe -fomit-frame-pointer CXXFLAGS=-march=pentium4 -O3 -pipe -fomit-frame-pointer build_alias=i686-pc-linux-gnu host_alias=i686-pc-linux-gnu  --no-create --no-recursion
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking target system type... i686-pc-linux-gnu
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for i686-pc-linux-gnu-gcc... i686-pc-linux-gnu-gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether i686-pc-linux-gnu-gcc accepts -g... yes
    checking for i686-pc-linux-gnu-gcc option to accept ANSI C... none needed
    checking for style of include used by make... GNU
    checking dependency style of i686-pc-linux-gnu-gcc... gcc3
    checking for i686-pc-linux-gnu-g++... i686-pc-linux-gnu-g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether i686-pc-linux-gnu-g++ accepts -g... yes
    checking dependency style of i686-pc-linux-gnu-g++... gcc3
    checking for a sed that does not truncate output... /bin/sed
    checking for egrep... grep -E
    checking for ld used by i686-pc-linux-gnu-gcc... /usr/i686-pc-linux-gnu/bin/ld
    checking if the linker (/usr/i686-pc-linux-gnu/bin/ld) is GNU ld... yes
    checking for /usr/i686-pc-linux-gnu/bin/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/i686-pc-linux-gnu-nm -B
    checking whether ln -s works... yes
    checking how to recognise dependent libraries... pass_all
    checking how to run the C preprocessor... i686-pc-linux-gnu-gcc -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 dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking how to run the C++ preprocessor... i686-pc-linux-gnu-g++ -E
    checking for i686-pc-linux-gnu-g77... i686-pc-linux-gnu-g77
    checking whether we are using the GNU Fortran 77 compiler... yes
    checking whether i686-pc-linux-gnu-g77 accepts -g... yes
    checking the maximum length of command line arguments... 32768
    checking command to parse /usr/bin/i686-pc-linux-gnu-nm -B output from i686-pc-linux-gnu-gcc object... ok
    checking for objdir... .libs
    checking for i686-pc-linux-gnu-ar... i686-pc-linux-gnu-ar
    checking for i686-pc-linux-gnu-ranlib... i686-pc-linux-gnu-ranlib
    checking for i686-pc-linux-gnu-strip... i686-pc-linux-gnu-strip
    checking for correct ltmain.sh version... no
    
    *** [Gentoo] sanity check failed! ***
    *** libtool.m4 and ltmain.sh have a version mismatch! ***
    *** (libtool.m4 = 1.5.20, ltmain.sh = 1.5) ***
    
    Please run:
    
      libtoolize --copy --force
    
    if appropriate, please contact the maintainer of this
    package (or your distribution) for help.
    
    make: *** [config.status] Error 1
    
    tak bych se chtěl zeptat jak jí předejít. Chyb je tam více: 1. Nejde podpora pro speex
    2. Nejde podpora pro ilbc
    3. Nejde zkompilovat
    Předem děkuji za jakoukoli odpověď.

    V tomto formuláři můžete formulovat svou stížnost ohledně příspěvku. Nejprve vyberte typ akce, kterou navrhujete provést s diskusí či příspěvkem. Potom do textového pole napište důvody, proč by měli admini provést vaši žádost, problém nemusí být patrný na první pohled. Odkaz na příspěvek bude přidán automaticky.

    Vaše jméno
    Váš email
    Typ požadavku
    Slovní popis
    ISSN 1214-1267   www.czech-server.cz
    © 1999-2015 Nitemedia s. r. o. Všechna práva vyhrazena.