Kaydet (Commit) d1794ab1 authored tarafından Yuri Dario's avatar Yuri Dario

i118923 - OS/2 port: use system libraries for apr, apr-util, serf.

üst 40f1a2c4
......@@ -1998,6 +1998,8 @@ End
#endif
#endif
#if !defined(OS2) // using system libs
File gid_File_Lib_Apr
#ifdef WNT
Name = SPECIAL_NAME(libapr-1);
......@@ -2043,3 +2045,4 @@ File gid_File_Lib_Serf
PACKED_LIB_FILE_BODY;
End
#endif // !defined(OS2)
......@@ -23,7 +23,11 @@
#ifndef INCLUDED_APRENV_HXX
#define INCLUDED_APRENV_HXX
#ifdef OS2 // use system apr headers
#include <apr_pools.h>
#else
#include <apr/apr_pools.h>
#endif
namespace apr_environment
{
......
......@@ -23,7 +23,11 @@
#ifndef INCLUDED_SERFURI_HXX
#define INCLUDED_SERFURI_HXX
#ifdef OS2 // use system apr headers
#include <apr_uri.h>
#else
#include <apr-util/apr_uri.h>
#endif
#include <rtl/ustring.hxx>
#include <DAVException.hxx>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment