
Recherche avancée
Autres articles (67)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (5817)
-
Don’t include common.h from avutil.h
6 août 2012, par Martin StorsjöDon’t include common.h from avutil.h
-
Revision 2117d4ee96 : Move get_sb_index to vp9_blockd.h Use common function to fetch/assign sb_index
11 mai 2013, par Jingning HanChanged Paths :
Modify /vp9/common/vp9_blockd.h
Modify /vp9/decoder/vp9_decodframe.c
Modify /vp9/encoder/vp9_bitstream.c
Modify /vp9/encoder/vp9_encodeframe.c
Move get_sb_index to vp9_blockd.hUse common function to fetch/assign sb_index in rd loop, bit-stream
writing and reading.Change-Id : I1d8a214a57ed9cbcd026040436ef33e5e39d65b7
-
configure : Enable -fno-common for Darwin targets, avoid linker warnings
29 avril, par Martin Storsjöconfigure : Enable -fno-common for Darwin targets, avoid linker warnings
Since GCC 10 and llvm.org Clang 11, -fno-common is the default.
However Apple's Xcode Clang hasn't followed suit yet, and still
defaults to -fcommon.Compiling with -fcommon causes uninitialized global variables to
be treated as "common" (which allows multiple object files to have
similar definitions).Common variables seem to have the issue that their intended alignment
isn't signaled, so the linker assumes that they may need alignment
according to their full size.With large global tables, this can lead to linker warnings like
this, with Xcode 16.3 :ld : warning : reducing alignment of section __DATA,__common from 0x8000 to 0x4000 because it exceeds segment maximum alignment
This can be reproduced with a small snippet like this :
char table[16385] ;
int main(int argc, char* argv[]) return 0 ;Compiling with -fno-common avoids this issue and warning, and
matches the default behaviour of other compilers. (Compiling withfno-common also avoids the risk of accidentally accepting
duplicate definitions of global variables, as long as they are
uninitialized.)Signed-off-by : Martin Storsjö <martin@martin.st>