summaryrefslogtreecommitdiff
path: root/libpkgconf/libpkgconf/config.h.in
blob: d0ff14e2b219ac0bb347a2efeeb5ce95b2fe67b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* file      : libpkgconf/config.h.in -*- C -*-
 * license   : ISC; see accompanying COPYING file
 */
#ifndef LIBPKGCONF_CONFIG_H
#define LIBPKGCONF_CONFIG_H

/*
 * For the semantics of the following macros refer to config.h.meson.orig
 * and upstream's meson.build.
 *
 * Note that we will explicitly undefine macros that are present in the
 * libpkgconf source code but should not be defined. While this is not
 * technically required, it simplifies the change tracking (see README-DEV).
 * As a bonus we also make sure that they are not get eventually defined by
 * some system headers.
 */

#define PACKAGE_VERSION "$PACKAGE_VERSION$"

/*
 * strndup() is not present on Windows while strl*() are only present on
 * FreeBSD and MacOS.
 *
 */
#if !defined(_WIN32)
#  define HAVE_STRNDUP 1
#endif

#if defined(__FreeBSD__) || defined(__APPLE__)
#  define HAVE_STRLCPY 1
#  define HAVE_STRLCAT 1
#endif

/*
 * Let's assume cygwin_conv_path() is always available if compile with MSYS
 * gcc.
 */
#if defined(__MSYS__)
# define HAVE_CYGWIN_CONV_PATH 1
#endif

/*
 * We don't consider such an outdated environments.
 */
#define HAVE_SYS_STAT_H 1

#define PACKAGE_BUGREPORT "https://todo.sr.ht/~kaniini/pkgconf"

#define PKG_DEFAULT_PATH  "$PKG_DEFAULT_PATH$"
#define PERSONALITY_PATH  "$PERSONALITY_PATH$"
#define SYSTEM_INCLUDEDIR "$SYSTEM_INCLUDEDIR$"
#define SYSTEM_LIBDIR     "$SYSTEM_LIBDIR$"

#endif /* LIBPKGCONF_CONFIG_H */