https://bugs.webkit.org/show_bug.cgi?id=131464
Reviewed by Mark Rowe.
../bmalloc:
* Configurations/bmalloc.xcconfig: Set PRIVATE_HEADERS_FOLDER_PATH to
specify that we don't just want to dump all of our generically-named
headers into /usr/local/include.
../WTF:
* wtf/FastMalloc.cpp: Use "<bmalloc/...>" syntax so we can find our
headers in <header-root>/usr/local/include/bmalloc/.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@167048
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-04-09 Geoffrey Garen <ggaren@apple.com>
+
+ Put bmalloc headers in the right place
+ https://bugs.webkit.org/show_bug.cgi?id=131464
+
+ Reviewed by Mark Rowe.
+
+ * wtf/FastMalloc.cpp: Use "<bmalloc/...>" syntax so we can find our
+ headers in <header-root>/usr/local/include/bmalloc/.
+
2014-04-09 Geoffrey Garen <ggaren@apple.com>
Rolled back out r166972.
#elif defined(USE_BMALLOC) && USE_BMALLOC // FORCE_SYSTEM_MALLOC
-#include "bmalloc.h"
+#include <bmalloc/bmalloc.h>
namespace WTF {
+2014-04-09 Geoffrey Garen <ggaren@apple.com>
+
+ Put bmalloc headers in the right place
+ https://bugs.webkit.org/show_bug.cgi?id=131464
+
+ Reviewed by Mark Rowe.
+
+ * Configurations/bmalloc.xcconfig: Set PRIVATE_HEADERS_FOLDER_PATH to
+ specify that we don't just want to dump all of our generically-named
+ headers into /usr/local/include.
+
2014-04-08 Geoffrey Garen <ggaren@apple.com>
Made bmalloc more #include friendly
EXECUTABLE_PREFIX = lib;
INSTALL_PATH_ACTUAL = /usr/local/lib;
+PRIVATE_HEADERS_FOLDER_PATH = /usr/local/include/bmalloc;
PRODUCT_NAME = bmalloc;
GCC_SYMBOLS_PRIVATE_EXTERN = YES;