null+****@clear*****
null+****@clear*****
2012年 5月 17日 (木) 11:00:02 JST
Kouhei Sutou 2012-05-17 11:00:02 +0900 (Thu, 17 May 2012)
New Revision: 48c6f63c464283dc2e628fc7093282316e858066
Log:
cmake: remove a needless space between 'if' and '('
Modified files:
CMakeLists.txt
Modified: CMakeLists.txt (+2 -2)
===================================================================
--- CMakeLists.txt 2012-05-17 10:36:12 +0900 (760c3b4)
+++ CMakeLists.txt 2012-05-17 11:00:02 +0900 (8856999)
@@ -166,7 +166,7 @@ endif()
option(WITH_ZLIB "use zlib for data compression." OFF)
if(WITH_ZLIB)
ac_check_lib(z compress)
- if (NOT HAVE_LIBZ)
+ if(NOT HAVE_LIBZ)
message(FATAL_ERROR "No libz found")
endif()
endif()
@@ -174,7 +174,7 @@ endif()
option(WITH_LZO "use LZO for data compression." OFF)
if(WITH_LZO)
ac_check_lib(lzo2 lzo1_compress)
- if (NOT HAVE_LIBLZO2)
+ if(NOT HAVE_LIBLZO2)
message(FATAL_ERROR "No liblzo2 found")
endif()
endif()