cgit: Added cgit 0.7.3-c502865 - A CGI for git written in C
[opensde-package-nopast.git] / develop / subversion / libtool-fix.patch
blobaf9bf52929caa028804e8e904475c89eb3c80551
1 # --- SDE-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
4 # Filename: package/.../subversion/libtool-fix.patch
5 # Copyright (C) 2006 The T2 SDE Project
7 # More information can be found in the files COPYING and README.
9 # This patch file is dual-licensed. It is available under the license the
10 # patched project is licensed under, as long as it is an OpenSource license
11 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
12 # of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 # --- SDE-COPYRIGHT-NOTE-END ---
17 I know it's hardcoded but it doesn't compile without it - Aldas (Baldzius)
19 diff -Nur subversion-1.3.0-orig/subversion/bindings/swig/perl/native/Makefile.PL.in subversion-1.3.0/subversion/bindings/swig/perl/native/Makefile.PL.in
20 --- subversion-1.3.0-orig/subversion/bindings/swig/perl/native/Makefile.PL.in 2005-10-14 20:45:33.000000000 +0000
21 +++ subversion-1.3.0/subversion/bindings/swig/perl/native/Makefile.PL.in 2006-01-20 11:50:31.225901500 +0000
22 @@ -28,6 +28,8 @@
23 my $apr_shlib_path_var = '@SVN_APR_SHLIB_PATH_VAR@';
24 my $apr_cflags = '@SVN_APR_INCLUDES@';
25 my $apu_cflags = '@SVN_APRUTIL_INCLUDES@';
26 +my $apr_apache_flags = `apr-1-config --cppflags`;
27 +chomp ($apr_apache_flags);
29 # According to the log of r7937, the flags guarded by the conditional break
30 # the build on FreeBSD if not conditionalized.
31 @@ -38,7 +40,7 @@
33 my %config = (
34 ABSTRACT => 'Perl bindings for Subversion',
35 - INC => join(' ',$apr_cflags, $apu_cflags,
36 + INC => join(' ',$apr_cflags, $apu_cflags, $apr_apache_flags,
37 " -I$swig_srcdir/perl/libsvn_swig_perl",
38 " -I$svnlib_srcdir/include",
39 " -I$swig_srcdir -g"),