summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLloyd Hilaiel <lloyd@hilaiel.com>2010-07-20 10:50:10 -0600
committerLloyd Hilaiel <lloyd@hilaiel.com>2010-07-20 10:50:10 -0600
commit62b29b1c5fa292b79b53d5e60a47db1cd8be70ed (patch)
treebba92195dc16fc8ff3aa6d0ec4fa6c5e5727dfb6
parent4048a6bd3994d11fc3c9e0c0217a51018df1909f (diff)
downloadyajl-62b29b1c5fa292b79b53d5e60a47db1cd8be70ed.tar.gz
changes in 1.0.101.0.10
-rw-r--r--CMakeLists.txt11
-rw-r--r--ChangeLog9
2 files changed, 12 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b749d32..3ed0308 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,14 +38,9 @@ SET (YAJL_MICRO 10)
SET (YAJL_DIST_NAME "yajl-${YAJL_MAJOR}.${YAJL_MINOR}.${YAJL_MICRO}")
-# RPATH handling. When YAJL_RPATH_PREFIX cmake var is set, we'll use that
-# base for rpath instead of CMAKE_INSTALL_PREFIX
-IF (YAJL_RPATH_PREFIX)
- SET(CMAKE_SKIP_BUILD_RPATH TRUE)
- SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
- SET(CMAKE_INSTALL_RPATH "${YAJL_RPATH_PREFIX}/lib")
- SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
-ENDIF (YAJL_RPATH_PREFIX)
+# RPATH handling -- given we statically link, we'll turn off
+# unnec. rpath embedding
+SET(CMAKE_SKIP_RPATH TRUE)
IF (NOT CMAKE_BUILD_TYPE)
SET(CMAKE_BUILD_TYPE "Release")
diff --git a/ChangeLog b/ChangeLog
index 788837b..a2797b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+1.0.10
+ * Brian Maher - yajl is now buildable without a c++ compiler present
+ * Brian Maher - fix header installation on OSX with cmake 2.8.0 installed
+ * lth & vitali - allow builder to specify alternate lib directory
+ for installation (i.e. lib64)
+ * Vitali Lovich - yajl version number now programatically accessible
+ * lth - prevent cmake from embedding rpaths in binaries. Static linking
+ makes this unneccesary.
+
1.0.9
* lth - fix inverted logic causing yajl_gen_double() to always fail on
win32 (thanks to Fredrik Kihlander for the report)