diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
commit | c853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch) | |
tree | 7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /config.h.cmake | |
parent | Initial commit. (diff) | |
download | inkscape-upstream.tar.xz inkscape-upstream.zip |
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/config.h.cmake b/config.h.cmake new file mode 100644 index 0000000..5035015 --- /dev/null +++ b/config.h.cmake @@ -0,0 +1,105 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +#ifndef _CONFIG_H_ +#define _CONFIG_H_ + + +/* Name of package */ +#define PACKAGE "${PROJECT_NAME}" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "${PROJECT_NAME}" + +/* Translation domain used */ +#define GETTEXT_PACKAGE "${PROJECT_NAME}" + +/* Localization directory */ +#define PACKAGE_LOCALE_DIR "${PACKAGE_LOCALE_DIR}" +#define PACKAGE_LOCALE_DIR_ABSOLUTE "${CMAKE_INSTALL_PREFIX}/${PACKAGE_LOCALE_DIR}" + +/* Base data directory -- only path-prefix.h should use it! */ +#define INKSCAPE_DATADIR "${INKSCAPE_DATADIR}" + + +/* Use AutoPackage? */ +#cmakedefine ENABLE_BINRELOC 1 + +/* always defined to indicate that i18n is enabled */ +#cmakedefine ENABLE_NLS 1 + +/* Whether the Cairo PDF backend is available */ +#cmakedefine PANGO_ENABLE_ENGINE 1 + +/* Define to 1 if you have the <ieeefp.h> header file. */ +#cmakedefine HAVE_IEEEFP_H 1 + +/* Define to 1 if you have the `mallinfo2' function. */ +#cmakedefine HAVE_MALLINFO2 1 + +/* Define to 1 if you have the `mallinfo' function. */ +#cmakedefine HAVE_MALLINFO 1 + +/* Define to 1 if you have the <malloc.h> header file. */ +#cmakedefine HAVE_MALLOC_H 1 + +/* Use OpenMP (via cmake) */ +#cmakedefine HAVE_OPENMP 1 + +/* Use libpoppler for direct PDF import */ +#cmakedefine HAVE_POPPLER 1 + +/* Use libpoppler-cairo for rendering PDF preview */ +#cmakedefine HAVE_POPPLER_CAIRO 1 + +/* Define to 1 if you have the <stdint.h> header file. */ +#cmakedefine HAVE_STDINT_H 1 + +/* Define to 1 if `fordblks' is member of `struct mallinfo'. */ +#cmakedefine HAVE_STRUCT_MALLINFO_FORDBLKS 1 + +/* Define to 1 if `fsmblks' is member of `struct mallinfo'. */ +#cmakedefine HAVE_STRUCT_MALLINFO_FSMBLKS 1 + +/* Define to 1 if `hblkhd' is member of `struct mallinfo'. */ +#cmakedefine HAVE_STRUCT_MALLINFO_HBLKHD 1 + +/* Define to 1 if `uordblks' is member of `struct mallinfo'. */ +#cmakedefine HAVE_STRUCT_MALLINFO_UORDBLKS + +/* Define to 1 if `usmblks' is member of `struct mallinfo'. */ +#cmakedefine HAVE_STRUCT_MALLINFO_USMBLKS 1 + +/* enable gtk spelling widget and built-in spellchecker */ +#cmakedefine WITH_GSPELL 1 + +/* enable gtk syntax coloring text view widget */ +#cmakedefine WITH_GSOURCEVIEW 1 + +/* Image/Graphics Magick++ support for bitmap effects */ +#cmakedefine WITH_MAGICK 1 + +/* Use libjpeg */ +#cmakedefine HAVE_JPEG 1 + +/* Build in libcdr */ +#cmakedefine WITH_LIBCDR 1 + +/* Build in libvisio */ +#cmakedefine WITH_LIBVISIO 1 + +/* Build in libwpg */ +#cmakedefine WITH_LIBWPG 1 + +/* Build in libreadline */ +#cmakedefine WITH_GNU_READLINE 1 + +/* Define to 1 if your processor stores words with the most significant byte + first (like Motorola and SPARC, unlike Intel and VAX). */ +#cmakedefine WORDS_BIGENDIAN 1 + +/* Enable LPE Tool? */ +#cmakedefine WITH_LPETOOL 0 + +/* Do we want experimental, unsupported, unguaranteed, etc., LivePathEffects enabled? */ +#cmakedefine LPE_ENABLE_TEST_EFFECTS 0 + +#endif /* _CONFIG_H_ */ |