62 lines
1.4 KiB
C
62 lines
1.4 KiB
C
/*
|
|
* config.h.in
|
|
*
|
|
* Tries to fix various differences in compilers and libraries.
|
|
*
|
|
*/
|
|
|
|
#ifndef __CONFIG_H__
|
|
#define __CONFIG_H__
|
|
|
|
#define PROJECT_NAME "${PROJECT_NAME}"
|
|
#define PROJECT_VERSION "${project_VERSION}"
|
|
|
|
#if ${OPTION_NOINSTALL}
|
|
/* For developers. */
|
|
#define PROJECT_SHARE_DIR "${CMAKE_SOURCE_DIR}/share/"
|
|
#elif defined (_WIN32)
|
|
#define PROJECT_SHARE_DIR "share/${PROJECT_NAME}/"
|
|
#else
|
|
#define PROJECT_SHARE_DIR "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}/"
|
|
#endif
|
|
|
|
|
|
#cmakedefine HAVE_SANE___RESTRICT
|
|
#cmakedefine HAVE_RESTRICT
|
|
|
|
#cmakedefine HAVE_GETTEXT
|
|
|
|
|
|
#define Q_(s) (s)
|
|
#ifdef HAVE_GETTEXT
|
|
#include <locale.h>
|
|
#include <libintl.h>
|
|
#define _(s) gettext(s)
|
|
#define N_(s1, s2, n) ngettext(s1, s2, n)
|
|
|
|
#define GETTEXT_DOMAIN "${PROJECT_NAME}"
|
|
#define GETTEXT_DIRNAME "${CMAKE_INSTALL_PREFIX}/share/locale"
|
|
#else /* ! HAVE_GETTEXT */
|
|
#define _(s) (s)
|
|
#define N_(s1, s2, n) ((n) == 1 ? (s1) : (s2))
|
|
#endif /* ! HAVE_GETTEXT */
|
|
|
|
|
|
#ifndef HAVE_SANE___RESTRICT
|
|
#ifdef HAVE_RESTRICT
|
|
#define __restrict restrict
|
|
#else
|
|
#define __restrict
|
|
#endif
|
|
#endif /* ! HAVE_SANE___RESTRICT */
|
|
|
|
/* We have to remove nodes first due to a bug in json-glib. */
|
|
#define json_object_set_member(object, name, node) \
|
|
G_STMT_START { \
|
|
json_object_remove_member ((object), (name)); \
|
|
json_object_set_member ((object), (name), (node)); \
|
|
} G_STMT_END
|
|
|
|
#endif /* __CONFIG_H__ */
|
|
|