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

« back to all changes in this revision

Viewing changes to subversion/svn_private_config.h.in

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2015-08-07 21:32:47 UTC
  • mfrom: (0.2.15) (4.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20150807213247-ozyewtmgsr6tkewl
Tags: 1.9.0-1
* Upload to unstable
* New upstream release.
  + Security fixes
    - CVE-2015-3184: Mixed anonymous/authenticated path-based authz with
      httpd 2.4
    - CVE-2015-3187: svn_repos_trace_node_locations() reveals paths hidden
      by authz
* Add >= 2.7 requirement for python-all-dev Build-Depends, needed to run
  tests.
* Remove Build-Conflicts against ruby-test-unit.  (Closes: #791844)
* Remove patches/apache_module_dependency in favor of expressing the
  dependencies in authz_svn.load/dav_svn.load.
* Build-Depend on apache2-dev (>= 2.4.16) to ensure ap_some_authn_required()
  is available when building mod_authz_svn and Depend on apache2-bin (>=
  2.4.16) for runtime support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
23
23
#undef HAVE_DOPRNT
24
24
 
 
25
/* Define to 1 if you have the `getpid' function. */
 
26
#undef HAVE_GETPID
 
27
 
25
28
/* Define to 1 if you have the <inttypes.h> header file. */
26
29
#undef HAVE_INTTYPES_H
27
30
 
46
49
/* Define to 1 if you have the <serf.h> header file. */
47
50
#undef HAVE_SERF_H
48
51
 
 
52
/* Define to 1 if you have the <stdbool.h> header file. */
 
53
#undef HAVE_STDBOOL_H
 
54
 
49
55
/* Define to 1 if you have the <stdint.h> header file. */
50
56
#undef HAVE_STDINT_H
51
57
 
115
121
/* Define to 1 if you have the ANSI C header files. */
116
122
#undef STDC_HEADERS
117
123
 
 
124
/* Defined to allow building against httpd 2.4 with broken auth */
 
125
#undef SVN_ALLOW_BROKEN_HTTPD_AUTH
 
126
 
118
127
/* Define to the Python/C API format character suitable for apr_int64_t */
119
128
#undef SVN_APR_INT64_T_PYCFMT
120
129
 
121
 
/* Define if circular linkage is not possible on this platform. */
122
 
#undef SVN_AVOID_CIRCULAR_LINKAGE_AT_ALL_COSTS_HACK
123
 
 
124
130
/* Defined to be the path to the installed binaries */
125
131
#undef SVN_BINDIR
126
132
 
199
205
/* Defined if libsvn_fs should link against libsvn_fs_fs */
200
206
#undef SVN_LIBSVN_FS_LINKS_FS_FS
201
207
 
 
208
/* Defined if libsvn_fs should link against libsvn_fs_x */
 
209
#undef SVN_LIBSVN_FS_LINKS_FS_X
 
210
 
202
211
/* Defined to be the path to the installed locale dirs */
203
212
#undef SVN_LOCALE_DIR
204
213
 
254
263
#define dgettext(domain, x) (x)
255
264
#endif
256
265
 
 
266
/* compiler hints */
 
267
#if defined(__GNUC__) && (__GNUC__ >= 3)
 
268
# define SVN__PREDICT_FALSE(x) (__builtin_expect(x, 0))
 
269
# define SVN__PREDICT_TRUE(x) (__builtin_expect(!!(x), 1))
 
270
#else
 
271
# define SVN__PREDICT_FALSE(x) (x)
 
272
# define SVN__PREDICT_TRUE(x) (x)
 
273
#endif
 
274
 
 
275
#if defined(SVN_DEBUG)
 
276
# define SVN__FORCE_INLINE
 
277
# define SVN__PREVENT_INLINE
 
278
#elif defined(__GNUC__)
 
279
# define SVN__FORCE_INLINE APR_INLINE __attribute__ ((always_inline))
 
280
# define SVN__PREVENT_INLINE __attribute__ ((noinline))
 
281
#else
 
282
# define SVN__FORCE_INLINE APR_INLINE
 
283
# define SVN__PREVENT_INLINE
 
284
#endif
 
285
 
 
286
/* Macro used to specify that a variable is intentionally left unused.
 
287
   Supresses compiler warnings about the variable being unused.  */
 
288
#define SVN_UNUSED(v) ( (void)(v) )
 
289