[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r4276: I hear this fixes the build on OS X 10.5, though it doesn't (vidalia/trunk/src/common)
Author: edmanm
Date: 2010-04-29 00:54:29 -0400 (Thu, 29 Apr 2010)
New Revision: 4276
Modified:
vidalia/trunk/src/common/CMakeLists.txt
Log:
I hear this fixes the build on OS X 10.5, though it doesn't appear to be
broken currently on 10.4 or 10.6. How about 10.3? Who knows...
Modified: vidalia/trunk/src/common/CMakeLists.txt
===================================================================
--- vidalia/trunk/src/common/CMakeLists.txt 2010-04-29 04:15:40 UTC (rev 4275)
+++ vidalia/trunk/src/common/CMakeLists.txt 2010-04-29 04:54:29 UTC (rev 4276)
@@ -46,4 +46,8 @@
if(OPENSSL_LIBRARIES)
target_link_libraries(common ${OPENSSL_LIBRARIES})
endif(OPENSSL_LIBRARIES)
+if (APPLE)
+ include(FindZLIB)
+ target_link_libraries(common ${ZLIB_LIBRARIES})
+endif(APPLE)