mirror of
https://github.com/upa/mscp.git
synced 2026-02-04 03:24:58 +08:00
19 lines
437 B
C
19 lines
437 B
C
/* 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
|
|
|
|
#endif /* _CONFIG_H_ */
|