aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Font.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/Font.hh')
-rw-r--r--src/FbTk/Font.hh10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/FbTk/Font.hh b/src/FbTk/Font.hh
index d994acf..71d560c 100644
--- a/src/FbTk/Font.hh
+++ b/src/FbTk/Font.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22//$Id: Font.hh,v 1.10 2004/08/18 16:30:33 rathnor Exp $ 22//$Id: Font.hh,v 1.11 2004/08/31 20:27:08 fluxgen Exp $
23 23
24#ifndef FBTK_FONT_HH 24#ifndef FBTK_FONT_HH
25#define FBTK_FONT_HH 25#define FBTK_FONT_HH
@@ -30,7 +30,13 @@
30#include <string> 30#include <string>
31#include <memory> 31#include <memory>
32 32
33#ifdef HAVE_CONFIG_H
34#include "config.h"
35#endif // HAVE_CONFIG_H
36
37#ifdef HAVE_ICONV
33#include <iconv.h> 38#include <iconv.h>
39#endif // HAVE_ICONV
34 40
35namespace FbTk { 41namespace FbTk {
36 42
@@ -111,7 +117,9 @@ private:
111 int m_shadow_offy; ///< offset x for shadow 117 int m_shadow_offy; ///< offset x for shadow
112 bool m_halo; ///< halo text 118 bool m_halo; ///< halo text
113 std::string m_halo_color; ///< halo color 119 std::string m_halo_color; ///< halo color
120#ifdef HAVE_ICONV
114 iconv_t m_iconv; 121 iconv_t m_iconv;
122#endif // HAVE_ICONV
115}; 123};
116 124
117} //end namespace FbTk 125} //end namespace FbTk