summaryrefslogtreecommitdiff
path: root/config.cmake.h.in
diff options
context:
space:
mode:
authorVitaliy Kirsanov <krokoziabla@yandex-team.ru>2019-04-29 12:48:24 +0300
committerErik de Castro Lopo <erikd@mega-nerd.com>2019-05-04 11:41:48 +1000
commit573dbc12ae3fc68e8edea08842f5864c553cd311 (patch)
treeb5d350a00d8b8b19dd10befe550fe5f86777416f /config.cmake.h.in
parent1cb968a7d45eea5f45451981c32df79e5b798739 (diff)
downloadflac-573dbc12ae3fc68e8edea08842f5864c553cd311.tar.gz
Use of BUILD_SHARED_LIBS added
Diffstat (limited to 'config.cmake.h.in')
-rw-r--r--config.cmake.h.in17
1 files changed, 6 insertions, 11 deletions
diff --git a/config.cmake.h.in b/config.cmake.h.in
index b6c18774..1d96f426 100644
--- a/config.cmake.h.in
+++ b/config.cmake.h.in
@@ -199,9 +199,6 @@
#endif
-/* Version number of package */
-#cmakedefine VERSION
-
/* Target processor is big endian. */
#define WORDS_BIGENDIAN CPU_IS_BIG_ENDIAN
@@ -211,10 +208,14 @@
#endif
/* Number of bits in a file offset, on hosts where this is settable. */
-#cmakedefine _FILE_OFFSET_BITS
+#ifndef _FILE_OFFSET_BITS
+# define _FILE_OFFSET_BITS 64
+#endif
/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
-#cmakedefine _LARGEFILE_SOURCE
+#ifndef _LARGEFILE_SOURCE
+# define _LARGEFILE_SOURCE
+#endif
/* Define for large files, on AIX-style hosts. */
#cmakedefine _LARGE_FILES
@@ -229,11 +230,5 @@
/* Define to 1 if you need to in order for `stat' and other things to work. */
#cmakedefine _POSIX_SOURCE
-/* Define to `__inline__' or `__inline' if that's what the C compiler
- calls it, or to nothing if 'inline' is not supported under any name. */
-#ifndef __cplusplus
-#cmakedefine inline
-#endif
-
/* Define to __typeof__ if your compiler spells it that way. */
#cmakedefine typeof