summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Sutherland <git@ksuther.com>2016-12-18 15:12:13 -0600
committerKent Sutherland <git@ksuther.com>2016-12-18 15:12:13 -0600
commit97047687fc02eee65c1aab9686e7da952e35c55b (patch)
treecff45431dd80df0f198002e2958fb09f4934a739
parentfe7502356057b5f4379b4912ed633b162539d728 (diff)
downloadlibical-git-97047687fc02eee65c1aab9686e7da952e35c55b.tar.gz
Removed NO_WARN_DEPRECATED build flag
-rw-r--r--CMakeLists.txt11
-rw-r--r--Install.txt4
-rw-r--r--config.h.cmake3
3 files changed, 0 insertions, 18 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4fc2dbbd..101f6d22 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,10 +19,6 @@
# Change the behavior at runtime using the icalerror_set_errors_are_fatal() function.
# Query the behavior at runtime using the icalerror_get_errors_are_fatal() function.
#
-# -DNO_WARN_DEPRECATED=[true|false]
-# Set if you DO NOT WANT to see deprecated messages.
-# Default=true
-#
# -DICAL_ALLOW_EMPTY_PROPERTIES=[true|false]
# Set to prevent empty properties from being replaced with X-LIC-ERROR properties.
# Default=false
@@ -207,13 +203,6 @@ else()
set(ICAL_ALLOW_EMPTY_PROPERTIES 0)
endif()
-option(NO_WARN_DEPRECATED "DO NOT print deprecated messages." True)
-if(NO_WARN_DEPRECATED)
- set(NO_WARN_DEPRECATED 1)
-else()
- set(NO_WARN_DEPRECATED 0)
-endif()
-
option(USE_BUILTIN_TZDATA "build using our own timezone data, else use the system timezone data on non-Windows systems. ALWAYS true on Windows.")
if(USE_BUILTIN_TZDATA)
set(USE_BUILTIN_TZDATA 1)
diff --git a/Install.txt b/Install.txt
index c8c8ccad..37e78e9f 100644
--- a/Install.txt
+++ b/Install.txt
@@ -118,10 +118,6 @@ Use these CMake options to adjust the library behavior as follows:
Set to make icalerror_* calls abort instead of internally signaling an error.
Default=false
- * NO_WARN_DEPRECATED=[true|false]
- Set if you DO NOT WANT to see deprecated messages.
- Default=true
-
* ICAL_ALLOW_EMPTY_PROPERTIES=[true|false]
Set to prevent empty properties from being replaced with X-LIC-ERROR properties.
Default=false
diff --git a/config.h.cmake b/config.h.cmake
index d0976534..36ddbdc2 100644
--- a/config.h.cmake
+++ b/config.h.cmake
@@ -172,9 +172,6 @@
/* Define to prevent empty properties from being replaced with X-LIC-ERROR properties */
#define ICAL_ALLOW_EMPTY_PROPERTIES ${ICAL_ALLOW_EMPTY_PROPERTIES}
-/* Define to 1 if you DO NOT WANT to see deprecated messages */
-#define NO_WARN_DEPRECATED ${NO_WARN_DEPRECATED}
-
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "${PROJECT_URL}"