summaryrefslogtreecommitdiff
path: root/zlib
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-06-27 13:34:43 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-06-27 13:34:43 +0000
commit84e80b367e3067fedc7ba60686a70fbbcb0b1e77 (patch)
tree6166cd62bd7b439cf00af33812f60ff75c9275e7 /zlib
parenteff5657503f9a65fc1f2aac2969f6073f5e0b283 (diff)
INTEGRATION: CWS vgbugs07 (1.1.2); FILE ADDED
2007/06/15 10:53:18 vg 1.1.2.3: #i78084# changed access rights to 775 2007/06/06 10:18:52 vg 1.1.2.2: #i78084# universal path notation 2007/06/04 14:24:27 vg 1.1.2.1: #i78084# remove last use of the hedabu procedure in zlib module
Diffstat (limited to 'zlib')
-rwxr-xr-xzlib/make_patched_header.pl74
1 files changed, 74 insertions, 0 deletions
diff --git a/zlib/make_patched_header.pl b/zlib/make_patched_header.pl
new file mode 100755
index 000000000000..640d9079f631
--- /dev/null
+++ b/zlib/make_patched_header.pl
@@ -0,0 +1,74 @@
+:
+eval 'exec perl -S $0 ${1+"$@"}'
+ if 0;
+#*************************************************************************
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# $RCSfile: make_patched_header.pl,v $
+#
+# $Revision: 1.2 $
+#
+# last change: $Author: hr $ $Date: 2007-06-27 14:34:43 $
+#
+# The Contents of this file are made available subject to
+# the terms of GNU Lesser General Public License Version 2.1.
+#
+#
+# GNU Lesser General Public License Version 2.1
+# =============================================
+# Copyright 2005 by Sun Microsystems, Inc.
+# 901 San Antonio Road, Palo Alto, CA 94303, USA
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License version 2.1, as published by the Free Software Foundation.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+#*************************************************************************
+#
+# make_patched_header - make patched header
+#
+
+use strict;
+use File::Basename;
+use File::Path;
+use Carp;
+
+my $patched_file = shift @ARGV;
+$patched_file =~ s/\\/\//g;
+my $module = shift @ARGV;
+my $patch_dir = dirname($patched_file);
+my $orig_file = $patched_file;
+$orig_file =~ s/\/patched\//\//;
+
+if (!-f $orig_file) { carp("Cannot find file $orig_file\n"); };
+if (!-d $patch_dir) {
+ mkpath($patch_dir, 0, 0775);
+ if (!-d $patch_dir) {("mkdir: could not create directory $patch_dir\n"); };
+};
+
+open(PATCHED_FILE, ">$patched_file") or carp("Cannot open file $patched_file\n");
+open(ORIG_FILE, "<$orig_file") or carp("Cannot open file $orig_file\n");
+foreach (<ORIG_FILE>) {
+ if (/#include\s*"(\w+\.h\w*)"/) {
+ my $include = $1;
+ s/#include "$include"/#include <$module\/$include>/g;
+ };
+ print PATCHED_FILE $_;
+};
+close PATCHED_FILE;
+close ORIG_FILE;
+
+exit(0);
+
+