~ubuntu-branches/debian/sid/subversion/sid

« back to all changes in this revision

Viewing changes to subversion/bindings/swig/perl/native/Makefile.PL.in

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2014-02-20 20:38:10 UTC
  • mfrom: (0.2.11)
  • Revision ID: package-import@ubuntu.com-20140220203810-w61omsda8fs70pta
Tags: 1.8.8-1
* New upstream release.  Refresh patches.
  - Remove backported patches sqlite_3.8.x_workaround & swig-pl_build_fix
  - Fix integer overflows with 32-bit svnserv, which could cause an infinite
    loop (Closes: #738840) or inaccurate statistics (Closes: #738841)
  - Work around SQLite not honoring umask when creating rep-cache.db.
    (Closes: #735446)
  - Includes security fix:
    + CVE-2014-0032: mod_dav_svn crash when handling certain requests with
      SVNListParentPath on  (Closes: #737815)
* Add a subversion-dbg package.  (Closes: #508147)
* Bump libdb5.1-dev → libdb5.3-dev  (Closes: #738650)

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
my @ldmodules = map {"-lsvn_$_-1"} (@modules, qw/diff subr/);
46
46
 
47
47
my $apr_shlib_path_var = '@SVN_APR_SHLIB_PATH_VAR@';
48
 
my $cppflags = '@CPPFLAGS@';
49
 
my $cflags = '@CFLAGS@';
 
48
my $cppflags = <<'EOT';
 
49
@CPPFLAGS@
 
50
EOT
 
51
my $cflags = <<'EOT';
 
52
@CFLAGS@
 
53
EOT
50
54
my $includes = '@SVN_APR_INCLUDES@ @SVN_APRUTIL_INCLUDES@';
51
55
 
 
56
chomp($cppflags);
 
57
chomp($cflags);
 
58
 
52
59
# Avoid this bug in SWIG:
53
60
# https://sourceforge.net/tracker/?func=detail&aid=3571361&group_id=1645&atid=101645
54
61
# SWIG is using C++ style comments in an extern "C" code.