Fix Apple libsvn include for isysroot (SDK) builds.
This commit is contained in:
parent
45b239fe26
commit
0ad9ac4f3d
2 changed files with 9 additions and 4 deletions
|
@ -1,7 +1,4 @@
|
|||
|
||||
if(LIBSVN_FOUND)
|
||||
include_directories(${LIBSVN_INCLUDE_DIR})
|
||||
endif(LIBSVN_FOUND)
|
||||
|
||||
add_executable(terrasync terrasync.cxx)
|
||||
|
||||
|
@ -12,7 +9,13 @@ target_link_libraries(terrasync
|
|||
|
||||
if(LIBSVN_FOUND)
|
||||
target_link_libraries(terrasync ${LIBSVN_LIBRARIES})
|
||||
set_property(TARGET terrasync APPEND PROPERTY COMPILE_FLAGS ${APR_CFLAGS})
|
||||
set_property(TARGET terrasync APPEND PROPERTY COMPILE_FLAGS "${APR_CFLAGS}")
|
||||
|
||||
IF(APPLE)
|
||||
set_property(SOURCE terrasync.cxx PROPERTY COMPILE_FLAGS "-iwithsysroot ${LIBSVN_INCLUDE_DIR}")
|
||||
ELSE()
|
||||
include_directories(${LIBSVN_INCLUDE_DIR})
|
||||
ENDIF(APPLE)
|
||||
endif()
|
||||
|
||||
|
||||
|
|
|
@ -183,8 +183,10 @@ int mysvn_setup(void) {
|
|||
if (err)
|
||||
return svn_cmdline_handle_exit_error(err, pool, "terrasync: ");
|
||||
mysvn_ctx->auth_baton = ab;
|
||||
#if (SVN_VER_MINOR >= 5)
|
||||
mysvn_ctx->conflict_func = NULL;
|
||||
mysvn_ctx->conflict_baton = NULL;
|
||||
#endif
|
||||
// Now our magic revisions
|
||||
mysvn_rev = (svn_opt_revision_t*) apr_palloc(pool,
|
||||
sizeof(svn_opt_revision_t));
|
||||
|
|
Loading…
Reference in a new issue