diff options
author | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 |
commit | 3faf8d6bffc5d0fb2525ba37bb504c53366caf9d (patch) | |
tree | 7e47911263e75034b767fe34b2f8d3d17e91f66d /subversion/libsvn_subr/win32_xlate.c | |
parent | a55fb3c0d5eca7d887798125d5b95942b1f01d4b (diff) |
Diffstat (limited to 'subversion/libsvn_subr/win32_xlate.c')
-rw-r--r-- | subversion/libsvn_subr/win32_xlate.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/subversion/libsvn_subr/win32_xlate.c b/subversion/libsvn_subr/win32_xlate.c index d95d62ea07ca1..2f508c930af6c 100644 --- a/subversion/libsvn_subr/win32_xlate.c +++ b/subversion/libsvn_subr/win32_xlate.c @@ -248,4 +248,11 @@ svn_subr__win32_xlate_to_stringbuf(svn_subr__win32_xlate_t *handle, return APR_SUCCESS; } +#else /* !WIN32 */ + +/* Silence OSX ranlib warnings about object files with no symbols. */ +#include <apr.h> +extern const apr_uint32_t svn__fake__win32_xlate; +const apr_uint32_t svn__fake__win32_xlate = 0xdeadbeef; + #endif /* WIN32 */ |