Adapt build to updated libc++

This commit is contained in:
Lubos Dolezel 2017-03-27 20:48:26 +02:00
parent 4929db6f7b
commit 0aa29e3906
2 changed files with 2 additions and 2 deletions

View File

@ -10,6 +10,7 @@ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -nostdinc -nostdinc++ -std=c++11")
add_definitions(-DRECEIPTS_DIR="/private/var/db/receipts")
include_directories(BEFORE ${CMAKE_SOURCE_DIR}/src/external/libcxx/include)
include_directories(
${CMAKE_SOURCE_DIR}/src/external/libxml2/include
${CMAKE_BINARY_DIR}/src/external/libxml2/include
@ -18,7 +19,6 @@ include_directories(
${CMAKE_SOURCE_DIR}/src/libc/fbsdcompat
${CMAKE_SOURCE_DIR}/src/libc/include/FreeBSD
${CMAKE_SOURCE_DIR}/src/external/liblzma/src/liblzma/api
${CMAKE_SOURCE_DIR}/src/external/libcxx/include
${CMAKE_SOURCE_DIR}/src/external/icu/icuSources/common
${CMAKE_SOURCE_DIR}/src/external/corefoundation
${CMAKE_SOURCE_DIR}/src/external/foundation/include

View File

@ -410,7 +410,7 @@ const char* Installer::getPackageName()
return m_subdir;
else
{
char* p;
const char* p;
p = strrchr(m_pkg, '/');
if (p != nullptr)