Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2009-09-16 04:59:55 +0400
committerMatt Ebb <matt@mke3.net>2009-09-16 04:59:55 +0400
commitbe613fd9ddf02aca2d619b6aaa615fff5a02661b (patch)
tree04925a1e9edc335dd3a0d6dd828c03761018d261
parent0befb9b01d354b66403c1606c7533a3ec0da64d4 (diff)
OSX should use libsndfile in /lib, not /usr
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7196049f964..c881dec03db 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -409,7 +409,7 @@ IF(APPLE)
ENDIF(WITH_JACK)
IF(WITH_SNDFILE)
- SET(SNDFILE /usr)
+ SET(SNDFILE ${LIBDIR}/sndfile)
SET(SNDFILE_INC ${SNDFILE}/include)
SET(SNDFILE_LIB sndfile)
SET(SNDFILE_LIBPATH ${SNDFILE}/lib)