repo.or.cz
/
wine-gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 458861. Validate TrueType headers before activating downloaded font. r=roc, sr...
[wine-gecko.git]
/
config
/
build_header.pl
blob
30ebc2c3a0ac39c73c7bea918887a50ef9ec9120
1
open
INFILE
,
"<
$ARGV
[1]"
;
2
$build
= <
INFILE
>;
3
close
INFILE
;
4
chop
$build
;
5
open
OUTFILE
,
">
$ARGV
[0]"
||
die
;
6
7
print
OUTFILE
"/* THIS IS A GENERATED FILE!
\n
*
\n
"
;
8
print
OUTFILE
"* See mozilla/config/build_header.pl */
\n
*
\n
*/"
;
9
print
OUTFILE
"
\n
\#define NS_BUILD_ID "
.
$build
.
"
\n
"
;
10
11
close
OUTFILE
;
12