
Recherche avancée
Autres articles (64)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (8344)
-
avutil/tablegen : add tablegen libm compatibility shims
26 novembre 2015, par Ganesh Ajjanagaddeavutil/tablegen : add tablegen libm compatibility shims
This is useful for build-time table generation (—enable-hardcoded-tables),
by providing compat shims for hosts that have broken libms.This file is deliberately kept minimal ; functions can always be added on
an as-needed basis.Reviewed-by : Clément Bœsch <u@pkh.me>
Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com> -
libavformat/asfdec : Fix regression bug when reading image attachments
19 avril, par softworkzlibavformat/asfdec : Fix regression bug when reading image attachments
Commit c8140fe7324f264faacf7395b27e12531d1f13f7 had introduced
a check for value_len > UINT16_MAX.
As a consequence, attached images of sizes larger than UINT16_MAX
could no longer be read.This is a minimal fix of the regression, avoiding the controversies
of my earlier submission regarding int type handling in asfdec.Signed-off-by : softworkz <softworkz@hotmail.com>
-
configure : fix linking with MSVC when using —disable-optimizations
15 décembre 2016, par Steve Lhommeconfigure : fix linking with MSVC when using —disable-optimizations
Without any optimization flags, MSVC does no dead code elimination (DCE) at
all, even for the most trivial cases. DCE is a prerequisite for building libav
correctly, otherwise there are undefined references to functions for other
architectures and disabled components.O1 is the minimal optimization flag for MSVC that does include DCE.