Make config.h.in fit between other source files.
This commit is contained in:
parent
616c49a505
commit
9c5ade156a
13
config.h.in
13
config.h.in
|
@ -1,11 +1,12 @@
|
||||||
/**
|
/*
|
||||||
* @file configure.h.in
|
* config.h.in
|
||||||
* @brief Tries to fix various differences in compilers and libraries.
|
*
|
||||||
|
* Tries to fix various differences in compilers and libraries.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CONFIGURE_H_INCLUDED
|
#ifndef __CONFIG_H__
|
||||||
#define CONFIGURE_H_INCLUDED
|
#define __CONFIG_H__
|
||||||
|
|
||||||
#define PROJECT_NAME "${PROJECT_NAME}"
|
#define PROJECT_NAME "${PROJECT_NAME}"
|
||||||
#define PROJECT_VERSION "${project_VERSION}"
|
#define PROJECT_VERSION "${project_VERSION}"
|
||||||
|
@ -59,5 +60,5 @@
|
||||||
#endif
|
#endif
|
||||||
#endif /* ! HAVE_STRTOK_R */
|
#endif /* ! HAVE_STRTOK_R */
|
||||||
|
|
||||||
#endif /* CONFIGURE_H_INCLUDED */
|
#endif /* __CONFIG_H__ */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue