blob: 86c6a241559196fab3f4eb37b4481dd0ab117d77 (
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
|
/* SPDX-License-Identifier: GPL-3.0-only */
#ifndef _CONFIG_H_
#define _CONFIG_H_
#define MSCP_VERSION "@MSCP_VERSION@"
#define MSCP_BUILD_VERSION "@MSCP_BUILD_VERSION@"
/* Define to 1 if you have the strlcat function. */
#cmakedefine HAVE_STRLCAT 1
/* Define to 1 if you have the htonll function. */
#cmakedefine HAVE_HTONLL 1
/* Define to 1 if you have the ntohll function. */
#cmakedefine HAVE_NTOHLL 1
/* Define to 1 if you have the bswap_64 function. */
#cmakedefine HAVE_BSWAP_64 1
/* Define to 1 if you have the bswap64 function. */
#cmakedefine HAVE_BSWAP64 1
#endif /* _CONFIG_H_ */
|