Package Details: vlc-git 4.0.0.r31756.g76cd807c24-2

Git Clone URL: https://aur.archlinux.org/vlc-git.git (read-only, click to copy)
Package Base: vlc-git
Description: Multi-platform MPEG, VCD/DVD, and DivX player
Upstream URL: https://code.videolan.org/videolan/vlc
Licenses: GPL-2.0-or-later, LGPL-2.1-or-later
Conflicts: libvlc, vlc
Provides: libvlc, vlc
Submitter: None
Maintainer: xiota (knoelli)
Last Packager: xiota
Votes: 210
Popularity: 1.11
First Submitted: 2008-04-01 12:14 (UTC)
Last Updated: 2024-11-16 22:21 (UTC)

Required by (154)

Sources (3)

Latest Comments

« First ‹ Previous 1 .. 33 34 35 36 37 38 39 40 41 42 43 .. 45 Next › Last »

FredBezies commented on 2013-01-02 20:30 (UTC)

Fixed upstream. Anyway, this PKGBUILD needs a little cleaning / sync with the official one.

sl1pkn07 commented on 2013-01-01 18:28 (UTC)

or [ "$(LANG=C pacman -Qi automake |grep Version | cut -d ' ' -f10 | sed 's|.[0-9]-[0-9]||g')" = "1.13" ] && sed 's|AM_CONFIG_HEADER(config.h)|AC_CONFIG_HEADERS([config.h])|g' -i configure.ac for detect autoconf is installed from testing

FredBezies commented on 2013-01-01 15:34 (UTC)

Well, with automake 1.13.x, it won't build anymore. You have to add this in PKGBUILD : sed 's|AM_CONFIG_HEADER(config.h)|AC_CONFIG_HEADERS([config.h])|g' -i configure.ac And bug reported upstream : https://trac.videolan.org/vlc/ticket/7975

gmurray commented on 2012-12-22 17:13 (UTC)

Just reporting my linking error: CCLD libx264_plugin.la /usr/bin/ld: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.7.2/../../../../lib/libx264.a(common.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC /usr/lib/gcc/x86_64-unknown-linux-gnu/4.7.2/../../../../lib/libx264.a: could not read symbols: Bad value collect2: error: ld returned 1 exit status make[4]: *** [libx264_plugin.la] Error 1 make[4]: Leaving directory `/home/grant/Downloads/vlc-git/src/vlc-build/modules/codec' make[3]: *** [all] Error 2 earlier in the stream... libvlc configuration -------------------- version : 2.1.0-git system : linux architecture : x86_64 mmx sse sse2 optimizations : yes looking at the git log for vlc the most recent commit cloned was ... commit 28d465e81563ca495d1466a60451c743e3f69791 Author: Francois Cartegnie <fcvlcdev@free.fr> Date: Sat Dec 22 17:17:13 2012 +0100 Qt: hotkeys: allow filtering by field (fix #7931)

xyproto commented on 2012-10-15 18:42 (UTC)

Looks like a bug in the code. That happens with development versions. But, since it's only libcaca, you can probably just disable caca somehow. (--disable-caca?)

FredBezies commented on 2012-10-08 18:48 (UTC)

Since 2 days, got this error while trying to get it build. Any idea ? CC libcaca_plugin_la-caca.lo opengl.c:179:5: erreur: unknown type name ‘PFNGLCLIENTACTIVETEXTUREPROC’ opengl.c: In function ‘vout_display_opengl_New’: opengl.c:330:33: erreur: ‘PFNGLCLIENTACTIVETEXTUREPROC’ undeclared (first use in this function) opengl.c:330:33: note: each undeclared identifier is reported only once for each function it appears in opengl.c:330:62: erreur: expected ‘;’ before ‘vlc_gl_GetProcAddress’ opengl.c: In function ‘vout_display_opengl_GetPool’: opengl.c:603:41: erreur: called object ‘vgl->ClientActiveTexture’ is not a function opengl.c: In function ‘vout_display_opengl_Prepare’: opengl.c:662:37: erreur: called object ‘vgl->ClientActiveTexture’ is not a function opengl.c:691:37: erreur: called object ‘vgl->ClientActiveTexture’ is not a function opengl.c: In function ‘draw_without_shaders’: opengl.c:782:32: erreur: called object ‘vgl->ClientActiveTexture’ is not a function opengl.c:793:29: erreur: called object ‘vgl->ClientActiveTexture’ is not a function opengl.c:801:32: erreur: called object ‘vgl->ClientActiveTexture’ is not a function opengl.c:807:29: erreur: called object ‘vgl->ClientActiveTexture’ is not a function opengl.c: In function ‘draw_with_shaders’: opengl.c:830:33: erreur: called object ‘vgl->ClientActiveTexture’ is not a function opengl.c:842:29: erreur: called object ‘vgl->ClientActiveTexture’ is not a function opengl.c: In function ‘vout_display_opengl_Display’: opengl.c:901:29: erreur: called object ‘vgl->ClientActiveTexture’ is not a function make[4]: *** [libxcb_glx_plugin_la-opengl.lo] Error 1

heaven commented on 2012-08-08 06:52 (UTC)

@endre If you'll use tool like yaourt it will download the entire repository only once and all next builds will pull updates only. Also this cause troubles with "git clone" because git can't fetch or clone from a shallow repository (there is workarounds but they looks more like hacks). In case we will remove cached git copy before each build and do clone with --depth=1 it will be much worse because it requires to load about 17Mb instead of the few kilobytes of recent changes when we have complete git copy.

endre commented on 2012-08-06 20:29 (UTC)

Consider git cloning with '--depth=1' option. Thus it will clone only the last revision, not the entrie repository that is 200+ MB.