aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-12-01 01:32:41 +0000
committersaturneric <[email protected]>2024-12-01 01:32:41 +0000
commitfd0b5f7a215ab0942ca0061be83d79269f820445 (patch)
tree844be92a06c9fc271483a4d9d0114aca85b10aeb
parentfeat: remember boundary from parsing (diff)
downloadvmime-fd0b5f7a215ab0942ca0061be83d79269f820445.tar.gz
vmime-fd0b5f7a215ab0942ca0061be83d79269f820445.zip
fix: should not use mlang in such a way in mingw
-rw-r--r--CMakeLists.txt32
1 files changed, 16 insertions, 16 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 89fb980c..34e37648 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -820,22 +820,22 @@ IF(WIN32)
ENDIF()
# MLang
- CHECK_INCLUDE_FILES(Mlang.h VMIME_HAVE_MLANG_H)
- CHECK_LIBRARY_EXISTS("mlang" ConvertINetString "${CMAKE_LIBRARY_PATH}" VMIME_HAVE_MLANG_LIB)
-
- IF(VMIME_HAVE_MLANG_H)
- IF(VMIME_HAVE_MLANG_LIB)
- SET(VMIME_HAVE_MLANG ON)
-
- IF(VMIME_BUILD_SHARED_LIBRARY)
- TARGET_LINK_LIBRARIES(
- ${VMIME_LIBRARY_NAME}
- ${TARGET_LINK_LIBRARIES}
- "mlang"
- )
- ENDIF()
- ENDIF()
- ENDIF()
+ # CHECK_INCLUDE_FILES(Mlang.h VMIME_HAVE_MLANG_H)
+ # CHECK_LIBRARY_EXISTS("mlang" ConvertINetString "${CMAKE_LIBRARY_PATH}" VMIME_HAVE_MLANG_LIB)
+
+ # IF(VMIME_HAVE_MLANG_H)
+ # IF(VMIME_HAVE_MLANG_LIB)
+ # SET(VMIME_HAVE_MLANG ON)
+
+ # IF(VMIME_BUILD_SHARED_LIBRARY)
+ # TARGET_LINK_LIBRARIES(
+ # ${VMIME_LIBRARY_NAME}
+ # ${TARGET_LINK_LIBRARIES}
+ # "mlang"
+ # )
+ # ENDIF()
+ # ENDIF()
+ # ENDIF()
ENDIF()