]> git.sesse.net Git - vlc/log
vlc
12 years agoMacOS: do not try to have KDE-solid
Jean-Baptiste Kempf [Wed, 30 Nov 2011 17:39:16 +0000 (18:39 +0100)]
MacOS: do not try to have KDE-solid

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoMacOS: always specify a minimum-sdk
Jean-Baptiste Kempf [Wed, 30 Nov 2011 17:38:34 +0000 (18:38 +0100)]
MacOS: always specify a minimum-sdk

This fixes issues on X.6 and X.7 when compiled with SDK10.5
The configure would fail to see -crt10.6 library and die on poll()

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoMacOS: workaround bug in SDK10.5
Jean-Baptiste Kempf [Wed, 30 Nov 2011 17:37:06 +0000 (18:37 +0100)]
MacOS: workaround bug in SDK10.5

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoFix libvlc_video_get_(height|width) inversion
Rémi Denis-Courmont [Wed, 30 Nov 2011 17:58:26 +0000 (19:58 +0200)]
Fix libvlc_video_get_(height|width) inversion

Both functions remain broken regardless.

Reported-by: Yann Le Hir <yann.lehir@gmail.com>
12 years agoWe don't patch pkg-config (anymore), don't run autoconf
Rafaël Carré [Wed, 30 Nov 2011 15:42:34 +0000 (10:42 -0500)]
We don't patch pkg-config (anymore), don't run autoconf

12 years agoContribs: add headers for CrystalHD for win32
Jean-Baptiste Kempf [Wed, 30 Nov 2011 02:31:28 +0000 (03:31 +0100)]
Contribs: add headers for CrystalHD for win32

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoRevert "extra/tools: make sure autoconf can access pkg-config macros"
Rafaël Carré [Wed, 30 Nov 2011 06:44:35 +0000 (01:44 -0500)]
Revert "extra/tools: make sure autoconf can access pkg-config macros"

This reverts commit b590a13f930a14040047ac2203ca64afb1c0c38d.

12 years agocontrib: growl: build with clang
Rafaël Carré [Wed, 30 Nov 2011 06:31:02 +0000 (01:31 -0500)]
contrib: growl: build with clang

12 years agoContribs: fix fluid compilation on Win32
Jean-Baptiste Kempf [Wed, 30 Nov 2011 02:43:35 +0000 (03:43 +0100)]
Contribs: fix fluid compilation on Win32

Should close #5571

12 years agoContrib: better documentation for bootstrap
Jean-Baptiste Kempf [Wed, 30 Nov 2011 00:38:55 +0000 (01:38 +0100)]
Contrib: better documentation for bootstrap

12 years agoextra/tools: make sure autoconf can access pkg-config macros
Rafaël Carré [Tue, 29 Nov 2011 19:49:44 +0000 (14:49 -0500)]
extra/tools: make sure autoconf can access pkg-config macros

If we don't build pkg-config (because a previous installation exists
somewhere else), autoconf won't find PKG_* m4 macros and fail to
run on packages using them (if they don't ship the macros either)

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoMove stats.c to input/
Rémi Denis-Courmont [Tue, 29 Nov 2011 20:08:07 +0000 (22:08 +0200)]
Move stats.c to input/

12 years agoConvert rate stats to integer and remove useless float support
Rémi Denis-Courmont [Tue, 29 Nov 2011 19:20:29 +0000 (21:20 +0200)]
Convert rate stats to integer and remove useless float support

This saves a whole lot of float conversion and simplifies the code.

12 years agoHard-code stats update interval
Rémi Denis-Courmont [Tue, 29 Nov 2011 18:44:20 +0000 (20:44 +0200)]
Hard-code stats update interval

Only 1 second interval has ever been used.

12 years agoMove stats counter declaration to core
Rémi Denis-Courmont [Tue, 29 Nov 2011 18:40:18 +0000 (20:40 +0200)]
Move stats counter declaration to core

One last full rebuild for this!

12 years agoRemove write-only HTTPd statistics
Rémi Denis-Courmont [Tue, 29 Nov 2011 18:09:52 +0000 (20:09 +0200)]
Remove write-only HTTPd statistics

12 years agoRemove redundant object parameter to stats functions
Rémi Denis-Courmont [Tue, 29 Nov 2011 18:00:02 +0000 (20:00 +0200)]
Remove redundant object parameter to stats functions

12 years agoRepack libvlc internal data
Rémi Denis-Courmont [Tue, 29 Nov 2011 17:46:24 +0000 (19:46 +0200)]
Repack libvlc internal data

12 years agoRemove unused timer instance data
Rémi Denis-Courmont [Tue, 29 Nov 2011 17:46:06 +0000 (19:46 +0200)]
Remove unused timer instance data

12 years agoextra/tools: use gcc-4.2 on Darwin
Rafaël Carré [Tue, 29 Nov 2011 17:20:55 +0000 (12:20 -0500)]
extra/tools: use gcc-4.2 on Darwin

12 years agoRemove unused counter_t members
Rémi Denis-Courmont [Tue, 29 Nov 2011 17:22:18 +0000 (19:22 +0200)]
Remove unused counter_t members

12 years agoRemove dead stats_DumpInputStats() function
Rémi Denis-Courmont [Tue, 29 Nov 2011 17:12:43 +0000 (19:12 +0200)]
Remove dead stats_DumpInputStats() function

12 years agoRemove unused min, max and last stats
Rémi Denis-Courmont [Tue, 29 Nov 2011 17:09:50 +0000 (19:09 +0200)]
Remove unused min, max and last stats

12 years agoRemove write-only timer statistics
Rémi Denis-Courmont [Tue, 29 Nov 2011 16:59:18 +0000 (18:59 +0200)]
Remove write-only timer statistics

The implementation was slow/inefficient. This is really silly for
_performance_ counters. And contrary to the other statistics, nothing
actually reads them, except for debug logs.

If you really want debug-only performance timers, use this:

    mtime_t start, end;

    start = mdate();
    compute_decimals_of_Pi(100);
    end = mdate();
    msg_Dbg(obj, "spent %"PRIu64" us computing", end - start);

12 years agoDistribute (but do not build) modules/access/dvb
Rafaël Carré [Tue, 29 Nov 2011 08:19:17 +0000 (03:19 -0500)]
Distribute (but do not build) modules/access/dvb

12 years agoMacOS: explicitely force --macosx values
Jean-Baptiste Kempf [Tue, 29 Nov 2011 09:10:18 +0000 (10:10 +0100)]
MacOS: explicitely force --macosx values

So that the user notices it when it doesn't work
Ref #5569

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agodemux/mp4: add parsing of some atoms
Frédéric Yhuel [Tue, 29 Nov 2011 09:14:41 +0000 (10:14 +0100)]
demux/mp4: add parsing of some atoms

Atoms mvex, mehd, trex and sdtp are found at least in PIFF (isml) files.
This a first step towards Smooth Streaming support in VLC.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agoAccess makefile: don't add twice the folders
Jean-Baptiste Kempf [Tue, 29 Nov 2011 08:39:43 +0000 (09:39 +0100)]
Access makefile: don't add twice the folders

And reorder alphabetically, so such mistakes don't happen again

12 years agomodules/access: only add to DIST_SUBDIRS the subdirs with Makefile.am in them
Rafaël Carré [Tue, 29 Nov 2011 07:37:47 +0000 (02:37 -0500)]
modules/access: only add to DIST_SUBDIRS the subdirs with Makefile.am in them

12 years agomodules/access: add missing directories to DIST_SUBDIRS
Rafaël Carré [Tue, 29 Nov 2011 07:17:49 +0000 (02:17 -0500)]
modules/access: add missing directories to DIST_SUBDIRS

12 years agofix OSX architecture detection for i386
Rafaël Carré [Tue, 29 Nov 2011 06:11:22 +0000 (01:11 -0500)]
fix OSX architecture detection for i386

12 years agoncurses: simplify check
Rafaël Carré [Tue, 29 Nov 2011 05:41:41 +0000 (00:41 -0500)]
ncurses: simplify check

Do not leak -lncursesw in LIBS

12 years agoskins2: disable if qt4 is not available
Rafaël Carré [Tue, 29 Nov 2011 04:40:25 +0000 (23:40 -0500)]
skins2: disable if qt4 is not available

only error out if asked with --enable-skins2

12 years agoMove skins2 test after qt4 so it can be disabled
Rafaël Carré [Tue, 29 Nov 2011 04:41:25 +0000 (23:41 -0500)]
Move skins2 test after qt4 so it can be disabled

12 years agoncurses: update french translation
Rafaël Carré [Tue, 29 Nov 2011 04:09:46 +0000 (23:09 -0500)]
ncurses: update french translation

12 years agoncurses: sync statistics strings with rc.c
Rafaël Carré [Tue, 29 Nov 2011 04:09:28 +0000 (23:09 -0500)]
ncurses: sync statistics strings with rc.c

12 years agoncurses: add ';' shortcut to search next item
Rafaël Carré [Tue, 29 Nov 2011 03:43:34 +0000 (22:43 -0500)]
ncurses: add ';' shortcut to search next item

12 years agoncurses: don't erase search box content
Rafaël Carré [Tue, 29 Nov 2011 03:23:40 +0000 (22:23 -0500)]
ncurses: don't erase search box content

split out open box function

12 years ago(v)asprintf: define HAVE_(V)ASPRINTF if found
Rafaël Carré [Tue, 29 Nov 2011 02:59:12 +0000 (21:59 -0500)]
(v)asprintf: define HAVE_(V)ASPRINTF if found

12 years agofix access_smb libraries
Rafaël Carré [Tue, 29 Nov 2011 02:55:35 +0000 (21:55 -0500)]
fix access_smb libraries

12 years ago(v)asprintf : don't use AC_REPLACE_FUNCS
Rafaël Carré [Tue, 29 Nov 2011 02:34:47 +0000 (21:34 -0500)]
(v)asprintf : don't use AC_REPLACE_FUNCS

Use our own check which also recognizes static inline functions

12 years agoFix thread library check
Rafaël Carré [Tue, 29 Nov 2011 00:12:10 +0000 (19:12 -0500)]
Fix thread library check

Don't use ac_cv_search cached value because it could contain
"no" or "none required" which aren't valid link flags

AC_CHECK_LIB(main, xxx) did not exactly search for main symbol, it
searched for the presence of the library.
Instead we look for a required symbol.

We don't use e.g. pthread_mutex_lock because some pthread symbols
are available in glibc, but not all.

Not finding pthread library is not an error, because at least OS/2 and
symbian don't need it. (We skip the check on Windows already)

12 years agosimplify thread library check
Rafaël Carré [Mon, 28 Nov 2011 22:55:41 +0000 (17:55 -0500)]
simplify thread library check

12 years agoFix doc for distcheck
Jean-Baptiste Kempf [Mon, 28 Nov 2011 22:33:49 +0000 (23:33 +0100)]
Fix doc for distcheck

12 years agoFix fvisibility=hidden check on windows
Rafaël Carré [Mon, 28 Nov 2011 22:12:26 +0000 (17:12 -0500)]
Fix fvisibility=hidden check on windows

12 years agoMore VIM syntax fixes
Rafaël Carré [Mon, 28 Nov 2011 21:11:11 +0000 (16:11 -0500)]
More VIM syntax fixes

12 years agoFix VIM syntax highlight
Rafaël Carré [Mon, 28 Nov 2011 21:05:44 +0000 (16:05 -0500)]
Fix VIM syntax highlight

12 years agodetect libintl static library correctly in configure
Naohiro KORIYAMA [Mon, 28 Nov 2011 16:34:00 +0000 (01:34 +0900)]
detect libintl static library correctly in configure

Signed-off-by: Rafaël Carré <funman@videolan.org>
12 years agocontrib: do not build regex
Rémi Denis-Courmont [Mon, 28 Nov 2011 19:16:36 +0000 (21:16 +0200)]
contrib: do not build regex

12 years agodash: Let the parser handle the root node cleaning.
Hugo Beauzée-Luyssen [Mon, 28 Nov 2011 14:47:22 +0000 (15:47 +0100)]
dash: Let the parser handle the root node cleaning.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agodash: Fixing a crash with invalid XML documents.
Hugo Beauzée-Luyssen [Mon, 28 Nov 2011 13:10:20 +0000 (14:10 +0100)]
dash: Fixing a crash with invalid XML documents.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agodash: Segments: Avoid copies + cosmetic.
Hugo Beauzée-Luyssen [Mon, 28 Nov 2011 13:55:44 +0000 (14:55 +0100)]
dash: Segments: Avoid copies + cosmetic.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agodash: Ignore representations without valid segments.
Hugo Beauzée-Luyssen [Mon, 28 Nov 2011 13:53:11 +0000 (14:53 +0100)]
dash: Ignore representations without valid segments.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agodash: Avoid some copies.
Hugo Beauzée-Luyssen [Mon, 28 Nov 2011 12:19:04 +0000 (13:19 +0100)]
dash: Avoid some copies.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agodash: Chunk: Avoiding copies + cosmetics
Hugo Beauzée-Luyssen [Fri, 25 Nov 2011 16:00:25 +0000 (17:00 +0100)]
dash: Chunk: Avoiding copies + cosmetics

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agodash: Avoid crashing when there's no SegmentInfo node.
Hugo Beauzée-Luyssen [Mon, 28 Nov 2011 12:29:03 +0000 (13:29 +0100)]
dash: Avoid crashing when there's no SegmentInfo node.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
12 years agocontrib: fix regex target
Rafaël Carré [Mon, 28 Nov 2011 02:19:34 +0000 (21:19 -0500)]
contrib: fix regex target

don't assume the system has it (and thus skip building it)

12 years agocontrib: caca: add --disable-java , factorize
Rafaël Carré [Mon, 28 Nov 2011 00:47:54 +0000 (19:47 -0500)]
contrib: caca: add --disable-java , factorize

12 years agoconfigure.ac: fix use of *FLAGS_save and VLC_{SAVE, RESTORE}_FLAGS
Rafaël Carré [Sat, 19 Nov 2011 13:51:05 +0000 (08:51 -0500)]
configure.ac: fix use of *FLAGS_save and VLC_{SAVE, RESTORE}_FLAGS

You should use them like this:
- modify *FLAGS and LIBS globally
- use VLC_SAVE_FLAGS to push the variables
- modify the variables for the tests
- use VLC_RESTORE_FLAGS when you're done to pop the variables

12 years agoOn the road of 1.3.0 1.3.0-git
Jean-Baptiste Kempf [Mon, 28 Nov 2011 00:13:20 +0000 (01:13 +0100)]
On the road of 1.3.0

12 years agoLGPL
Jean-Baptiste Kempf [Sun, 27 Nov 2011 20:44:15 +0000 (21:44 +0100)]
LGPL

Re-license almost all of libVLC and libVLCcore to LGPLv2.1+

This move was authorized by the developers, either:
 - by e-mail,
 - by vote at the VideoLAN Dev Days 2011,
 - on the license website,
 - in a contract, oral or written.
No objection was raised, so far.

The developers agreeing are:
  Justus Piater
  Alexis Ballier
  Alexander Bethke
  Mohammed Adnène Trojette
  Alex Converse
  Alexey Sokolov
  Alexis de Lattre
  Andre Pang
  Anthony Loiseau
  Cyril Deguet
  André Weber
  Boris Dorès
  Brieuc Jeunhomme
  Benjamin Drung
  Hugo Beauzée-Luyssen
  Benoit Steiner
  Benjamin Pracht
  Bernie Purcell
  Przemyslaw Fiala
  Arnaud de Bossoreille de Ribou
  Brad Smith
  Nick Briggs
  Christopher Rath
  Christophe Courtaut
  Christopher Mueller
  Clement Chesnin
  Andres Krapf
  Damien Fouilleul
  David Flynn
  Sebastien Zwickert
  Antoine Cellerier
  Jérôme Decoodt
  Jérome Decoodt
  Dylan Yudaken
  Eduard Babayan
  Eugenio Jarosiewicz
  Elliot Murphy
  Eric Petit
  Erwan Tulou
  Etienne Membrives
  Ludovic Fauvet
  Fabio Ritrovato
  Tobias Güntner
  Jakub Wieczorek
  Frédéric Crozat
  Francois Cartegnie
  Laurent Aimar
  Florian G. Pflug
  Felix Paul Kühne
  Frank Enderle
  Rafaël Carré
  Simon Latapie
  Gildas Bazin
  Geoffroy Couprie
  Julien / Gellule
  Gildas Bazin
  Arnaud Schauly
  Toralf Niebuhr
  Vicente Jimenez Aguilar
  Derk-Jan Hartman
  Henri Fallon
  Ilkka Ollakka
  Olivier Teulière
  Rémi Duraffort
  Jakob Leben
  Jean-Baptiste Kempf
  Jean-Paul Saman
  Jean-Philippe Grimaldi
  Jean-François Massol
  Gaël Hendryckx
  Jakob Leben
  Jean-Marc Dressler
  Jai Menon
  Johan Bilien
  Johann Ransay
  Joris van Rooij
  JP Dinger
  Jean-Philippe André
  Adrien Grand
  Juha Jeronen
  Juho Vähä-Herttua
  Kaarlo Raiha
  Kaarlo Raiha
  Kamil Baldyga
  Keary Griffin
  Ken Self
  KO Myung-Hun
  Pierre Ynard
  Filippo Carone
  Loïc Minier
  Luca Barbato
  Lucas C. Villa Real
  Lukas Durfina
  Adrien Maglo
  Marc Ariberti
  Mark Lee
  Mark Moriarty
  Martin Storsjö
  Christophe Massiot
  Michel Kaempf
  Marian Ďurkovič
  Mirsal Ennaime
  Carlo Calabrò
  Damien Lucas
  Naohiro Koriyama
  Basos G
  Pierre Baillet
  Vincent Penquerc'h
  Olivier Aubert
  Pankaj Yadav
  Paul Corke
  Pierre d'Herbemont
  Philippe Morin
  Antoine Lejeune
  Michael Ploujnikov
  Jean-Marc Dressler
  Michael Hanselmann
  Rafaël Carré
  Ramiro Polla
  Rémi Denis-Courmont
  Renaud Dartus
  Richard Shepherd
  Faustino Osuna
  Arnaud Vallat
  Rob Jonson
  Robert Jedrzejczyk
  Steve Lhomme
  Rocky Bernstein
  Romain Goyet
  Rov Juvano
  Sam Hocevar
  Martin T. H. Sandsmark
  Sebastian Birk
  Sébastien Escudier
  Vincent Seguin
  Fabio Ritrovato
  Sigmund Augdal Helberg
  Casian Andrei
  Srikanth Raju
  Hannes Domani
  Stéphane Borel
  Stephan Krempel
  Stephan Assmus
  Tony Castley
  Pavlov Konstantin
  Eric Petit
  Tanguy Krotoff
  Dennis van Amerongen
  Michel Lespinasse
  Can Wu
  Xavier Marchesini
  Sébastien Toque
  Christophe Mutricy
  Yoann Peronneau
  Yohann Martineau
  Yuval Tze
  Scott Caudle
  Clément Stenac

It is possible, that some minor piece of code was badly tracked, for
some reasons (SVN, mainly) or that some small developers did not answer.
However, as an "œuvre collective", defined as in "CPI 113-2 alinéa 3",
and seeing "Cour. Cass. 17 Mai 1978", and seeing that the editor and
the very vast majority of developers have agreed (> 99.99% of the code,
> 99% of developers), we are fine here.

12 years agoQt: web intf: Ease mobile intf url access with QR-Code
Francois Cartegnie [Sun, 27 Nov 2011 20:32:32 +0000 (21:32 +0100)]
Qt: web intf: Ease mobile intf url access with QR-Code

12 years agoRemove useless config.h #define
Rémi Denis-Courmont [Sun, 27 Nov 2011 19:58:17 +0000 (21:58 +0200)]
Remove useless config.h #define

12 years agoReplace MD5 implementation with FSF LGPL'd one
Rémi Denis-Courmont [Sun, 27 Nov 2011 13:27:47 +0000 (15:27 +0200)]
Replace MD5 implementation with FSF LGPL'd one

This was originally written by Ulrich Drepper for glibc. However, this
particular version is copied from libgcrypt (simpler to adapt).

12 years agoCorrect debug message
Rémi Denis-Courmont [Sun, 27 Nov 2011 12:25:23 +0000 (14:25 +0200)]
Correct debug message

12 years agoMove MD5 test to src/
Rémi Denis-Courmont [Sun, 27 Nov 2011 11:55:34 +0000 (13:55 +0200)]
Move MD5 test to src/

12 years agocontrib: run $(RECONF) in an arbitrary list of packages
Rafaël Carré [Sun, 27 Nov 2011 11:14:26 +0000 (06:14 -0500)]
contrib: run $(RECONF) in an arbitrary list of packages

Now they recognize arm-linux-androideabi toolchain

12 years agocontrib: Don't change HOST when building for android
Rafaël Carré [Sun, 27 Nov 2011 09:46:39 +0000 (04:46 -0500)]
contrib: Don't change HOST when building for android

12 years agoMD5: improve test coverage
Rémi Denis-Courmont [Sun, 27 Nov 2011 11:11:22 +0000 (13:11 +0200)]
MD5: improve test coverage

12 years agoGnuTLS needs Winsock
Rémi Denis-Courmont [Sun, 27 Nov 2011 10:46:30 +0000 (12:46 +0200)]
GnuTLS needs Winsock

12 years agoRemove Linux distros from old contrib
Rémi Denis-Courmont [Sun, 27 Nov 2011 10:04:40 +0000 (12:04 +0200)]
Remove Linux distros from old contrib

12 years agoSRTP: mark internal library static, fix linking
Rémi Denis-Courmont [Sun, 27 Nov 2011 09:44:29 +0000 (11:44 +0200)]
SRTP: mark internal library static, fix linking

12 years agocontrib: fix static linking of libbluray
Rémi Denis-Courmont [Sun, 27 Nov 2011 09:30:27 +0000 (11:30 +0200)]
contrib: fix static linking of libbluray

Upstream should set Libs.private, but we want Libs.

12 years agocontrib: ffmpeg: add some cflags for arm/neon
Rafaël Carré [Sun, 27 Nov 2011 09:07:19 +0000 (04:07 -0500)]
contrib: ffmpeg: add some cflags for arm/neon

12 years agocontrib: set android specifics
Rafaël Carré [Sun, 27 Nov 2011 08:56:20 +0000 (03:56 -0500)]
contrib: set android specifics

12 years agocontrib: shout: skip if not building encoders
Rafaël Carré [Sun, 27 Nov 2011 08:13:03 +0000 (03:13 -0500)]
contrib: shout: skip if not building encoders

12 years agocontrib: ffmpeg: only use libvpx when building encoders
Rafaël Carré [Sun, 27 Nov 2011 07:51:02 +0000 (02:51 -0500)]
contrib: ffmpeg: only use libvpx when building encoders

12 years agocontrib: fix cddb dependency
Rémi Denis-Courmont [Sun, 27 Nov 2011 08:55:44 +0000 (10:55 +0200)]
contrib: fix cddb dependency

12 years agoRevert "contrib: make AUTOPOINT point to the script installed by gettext"
Rémi Denis-Courmont [Sun, 27 Nov 2011 08:54:08 +0000 (10:54 +0200)]
Revert "contrib: make AUTOPOINT point to the script installed by gettext"

This reverts commit 878d5212b7d531f2791ed230297857b0a94131fc.
This fixes the build with installed autopoint.

12 years agoCleanup contrib warning
Rémi Denis-Courmont [Sun, 27 Nov 2011 08:36:13 +0000 (10:36 +0200)]
Cleanup contrib warning

12 years agoGnuTLS: plugin needs crypt32 on Windows to use the certificate store
Rémi Denis-Courmont [Sun, 27 Nov 2011 08:35:36 +0000 (10:35 +0200)]
GnuTLS: plugin needs crypt32 on Windows to use the certificate store

12 years agoAdd a md5 computation test
Jean-Baptiste Kempf [Sun, 27 Nov 2011 03:01:02 +0000 (04:01 +0100)]
Add a md5 computation test

12 years agocontrib: libxml2: disable tests
Rafaël Carré [Sun, 27 Nov 2011 01:54:44 +0000 (20:54 -0500)]
contrib: libxml2: disable tests

12 years agoContribs: fix xml2 installation on OSX
Jean-Baptiste Kempf [Sun, 27 Nov 2011 01:46:30 +0000 (02:46 +0100)]
Contribs: fix xml2 installation on OSX

12 years agoRemove broken message
Rafaël Carré [Sun, 27 Nov 2011 01:25:44 +0000 (20:25 -0500)]
Remove broken message

12 years agoWarn people about depreciation, do not block them.
Jean-Baptiste Kempf [Sun, 27 Nov 2011 00:03:03 +0000 (01:03 +0100)]
Warn people about depreciation, do not block them.

12 years agoextras/tools: check for tar -J properly
Rafaël Carré [Sat, 26 Nov 2011 21:39:44 +0000 (16:39 -0500)]
extras/tools: check for tar -J properly

we don't use 'xz' binary directly

12 years agocosmetics
Rafaël Carré [Sat, 26 Nov 2011 20:46:21 +0000 (15:46 -0500)]
cosmetics

12 years agoraop: handle VLC_ADD_LIBS
Rafaël Carré [Sat, 26 Nov 2011 20:29:09 +0000 (15:29 -0500)]
raop: handle VLC_ADD_LIBS

12 years agoDeprecate extras/contrib
Rafaël Carré [Sat, 26 Nov 2011 20:04:09 +0000 (15:04 -0500)]
Deprecate extras/contrib

12 years agoremoteosd: handle VLC_ADD_LIBS
Rafaël Carré [Sat, 26 Nov 2011 20:00:43 +0000 (15:00 -0500)]
remoteosd: handle VLC_ADD_LIBS

12 years agocontrib: fix gnutls.pc on win32
Rafaël Carré [Sat, 26 Nov 2011 19:51:32 +0000 (14:51 -0500)]
contrib: fix gnutls.pc on win32

12 years agoextras/tools: set AUTOCONF variable so automake can find it
Rafaël Carré [Sat, 26 Nov 2011 19:11:27 +0000 (14:11 -0500)]
extras/tools: set AUTOCONF variable so automake can find it

use $(AUTOCONF) to make pkg-config, add dependancy on autoconf

12 years agoextras/tools: fix make clean
Diego Fernando Nieto [Sat, 26 Nov 2011 19:10:09 +0000 (14:10 -0500)]
extras/tools: fix make clean

Signed-off-by: Rafaël Carré <funman@videolan.org>
12 years agoextra/tools: tar and xz can be built independantly
Rafaël Carré [Sat, 26 Nov 2011 18:59:16 +0000 (13:59 -0500)]
extra/tools: tar and xz can be built independantly

12 years agocontrib: prepend extras/tools/build/bin to PATH
Rafaël Carré [Sat, 26 Nov 2011 18:54:24 +0000 (13:54 -0500)]
contrib: prepend extras/tools/build/bin to PATH

This makes sure our build of tar (if it exists) is used before system tar

12 years agocontrib: error out early if MacOSX SDK doesn't exist
Rafaël Carré [Sat, 26 Nov 2011 18:38:16 +0000 (13:38 -0500)]
contrib: error out early if MacOSX SDK doesn't exist

12 years agoI422_YUY2: clobber lists for MMX and SSE2
Rémi Denis-Courmont [Sat, 26 Nov 2011 18:22:41 +0000 (20:22 +0200)]
I422_YUY2: clobber lists for MMX and SSE2

12 years agoi420_rgb: clobber lists for MMX and SSE2
Rémi Denis-Courmont [Sat, 26 Nov 2011 18:12:12 +0000 (20:12 +0200)]
i420_rgb: clobber lists for MMX and SSE2

12 years agoncurses: parallel build is broken, force make -j1
Rafaël Carré [Sat, 26 Nov 2011 18:01:41 +0000 (13:01 -0500)]
ncurses: parallel build is broken, force make -j1