Bug 983971 - Do not use gralloc for small size on ICS gonk. r=nical, a=1.4+
[gecko.git] / netwerk / srtp / update_srtp.sh
blob74d6b59558e1c2edfdd2dc49edf044e80c42c3c5
1 #!/bin/bash
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 # assume $1 is the directory with a SVN checkout of the libsrtp source
9 # srtp source is available (via cvs) at:
10 # cvs -d:pserver:anonymous@srtp.cvs.sourceforge.net:/cvsroot/srtp login
11 # cvs -z3 -d:pserver:anonymous@srtp.cvs.sourceforge.net:/cvsroot/srtp co -P srtp
13 # also assumes we've made *NO* changes to the SRTP sources! If we do, we have to merge by
14 # hand after this process, or use a more complex one.
16 # For example, one could update an srtp library import head, and merge back to default. Or keep a
17 # separate repo with this in it, and pull from there to m-c and merge.
18 if [ "$1" ] ; then
19 export date=`date`
20 # export revision=`(cd $1; svnversion -n)`
21 export CVSREAD=0
22 cp -rf $1/srtp $1/crypto $1/include $1/VERSION $1/LICENSE $1/README $1/configure.in netwerk/srtp/src
24 hg addremove netwerk/srtp/src --include "netwerk/srtp/src/VERSION" --include "netwerk/srtp/src/LICENSE" --include "netwerk/srtp/src/configure.in" --include "netwerk/srtp/src/README" --include "**.c" --include "**.h" --similarity 90
26 echo "srtp updated from CVS on $date" >> netwerk/srtp/srtp_update.log
27 echo "srtp updated from CVS on $date"
28 echo "WARNING: reapply any local patches!"
29 else
30 echo "usage: $0 path_to_srtp_directory"
31 echo "run from the root of your m-c clone"