Fixed the terminal not fully functional error
[utio.git] / config.h.in
blob97fd9960038c45781fe47a123af456657f07a0da
1 // This file is part of the utio library, a terminal I/O library.
2 //
3 // Copyright (C) 2004 by Mike Sharov <msharov@users.sourceforge.net>
4 // This file is free software, distributed under the MIT License.
5 //
6 // config.h
7 //
9 #ifndef CONFIG_H_5A201634177A84A83E2E0B7C2674857D
10 #define CONFIG_H_5A201634177A84A83E2E0B7C2674857D
12 // Define to the one symbol short name of this package.
13 #define UTIO_NAME "@PACKAGE_NAME@"
14 // Define to the full name and version of this package.
15 #define UTIO_STRING "@PACKAGE_NAME@ @PACKAGE_VERSION@"
16 // Define to the version of this package.
17 #define UTIO_VERSION 0x@LIB_MAJOR@@LIB_MINOR@@LIB_BUILD@
18 // Define to the address where bug reports for this package should be sent.
19 #define UTIO_BUGREPORT "@PACKAGE_BUGREPORT@"
21 /// Define to 1 if you have the uSTL library
22 #undef HAVE_USTL_H
24 // Error messages for descriptive failure on missing components.
25 #ifndef HAVE_USTL_H
26 #error "You need the uSTL library to compile this project. http://sourceforge.net/projects/ustl"
27 #else
28 #include <ustl.h>
29 #endif
30 #if USTL_VERSION < 0x110
31 #error "You need uSTL version 1.1.0 or above. http://sourceforge.net/projects/ustl"
32 #endif
34 #endif