aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Compat/Locale.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/Compat/Locale.hs')
-rw-r--r--src/Text/Pandoc/Compat/Locale.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Compat/Locale.hs b/src/Text/Pandoc/Compat/Locale.hs
new file mode 100644
index 000000000..ac791136c
--- /dev/null
+++ b/src/Text/Pandoc/Compat/Locale.hs
@@ -0,0 +1,9 @@
+{-# LANGUAGE CPP #-}
+module Text.Pandoc.Compat.Locale ( defaultTimeLocale )
+where
+
+#if MIN_VERSION_time(1,5,0)
+import Data.Time.Format ( defaultTimeLocale )
+#else
+import System.Locale ( defaultTimeLocale )
+#endif