12345678910111213141516171819202122232425262728293031 |
- /*!
- * \file include/config.h.in
- * \brief Global config file template
- *
- * \author xythobuz
- */
-
- #ifndef _CONFIG_H_
- #define _CONFIG_H_
-
- extern const char *VERSION;
- extern const char *BUILD_HOST;
-
- #cmakedefine USING_AL
- #cmakedefine USING_PNG
-
- #cmakedefine HAVE_EXECINFO_H
- #cmakedefine HAVE_BACKTRACE
- #cmakedefine HAVE_BACKTRACE_SYMBOLS
-
- #cmakedefine HAVE_DIRENT_H
- #cmakedefine HAVE_OPENDIR
- #cmakedefine HAVE_READDIR_R
- #cmakedefine HAVE_CLOSEDIR
- #cmakedefine HAVE_DT_DIR
-
- #cmakedefine HAVE_SYS_TIME_H
- #cmakedefine HAVE_GETTIMEOFDAY
-
- #endif
|