diff options
author | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2007-08-13 12:51:31 +0000 |
---|---|---|
committer | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2007-08-13 12:51:31 +0000 |
commit | abbd2b62ad445d4056567e2573416498a55da9af (patch) | |
tree | 0b622fcb58b6b4955fbb4818f0bc649ea0ac881c /src | |
parent | 54b76e98afce8622e1da1be8025e5b653658dcaa (diff) | |
download | riscv-openocd-abbd2b62ad445d4056567e2573416498a55da9af.zip riscv-openocd-abbd2b62ad445d4056567e2573416498a55da9af.tar.gz riscv-openocd-abbd2b62ad445d4056567e2573416498a55da9af.tar.bz2 |
- fix build issues when not using autoconf/automake to build
git-svn-id: svn://svn.berlios.de/openocd/trunk@193 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-rw-r--r-- | src/helper/types.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/helper/types.h b/src/helper/types.h index a68c301..027615e 100644 --- a/src/helper/types.h +++ b/src/helper/types.h @@ -19,8 +19,10 @@ ***************************************************************************/ #ifndef TYPES_H #define TYPES_H - +
+#ifdef HAVE_CONFIG_H #include "config.h" +#endif
#ifndef u8 typedef unsigned char u8; |