OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.8 KiB

  1. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # T2 SDE: package/.../subversion/libtool-fix.patch
  5. # Copyright (C) 2006 The T2 SDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  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. # --- T2-COPYRIGHT-NOTE-END ---
  16. I know it's hardcoded but it doesn't compile without it - Aldas (Baldzius)
  17. 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
  18. --- subversion-1.3.0-orig/subversion/bindings/swig/perl/native/Makefile.PL.in 2005-10-14 20:45:33.000000000 +0000
  19. +++ subversion-1.3.0/subversion/bindings/swig/perl/native/Makefile.PL.in 2006-01-20 11:50:31.225901500 +0000
  20. @@ -28,6 +28,8 @@
  21. my $apr_shlib_path_var = '@SVN_APR_SHLIB_PATH_VAR@';
  22. my $apr_cflags = '@SVN_APR_INCLUDES@';
  23. my $apu_cflags = '@SVN_APRUTIL_INCLUDES@';
  24. +my $apr_apache_flags = `apr-1-config --cppflags`;
  25. +chomp ($apr_apache_flags);
  26. # According to the log of r7937, the flags guarded by the conditional break
  27. # the build on FreeBSD if not conditionalized.
  28. @@ -38,7 +40,7 @@
  29. my %config = (
  30. ABSTRACT => 'Perl bindings for Subversion',
  31. - INC => join(' ',$apr_cflags, $apu_cflags,
  32. + INC => join(' ',$apr_cflags, $apu_cflags, $apr_apache_flags,
  33. " -I$swig_srcdir/perl/libsvn_swig_perl",
  34. " -I$svnlib_srcdir/include",
  35. " -I$swig_srcdir -g"),