This website works better with JavaScript.
Home
Help
Register
Sign In
jim
/
openocd
Watch
0
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
26
Wiki
Activity
Browse Source
Add configure check for sys/types.h; include in our types.h.
git-svn-id: svn://svn.berlios.de/openocd/trunk@1699 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
zwelch
13 years ago
parent
55342151a3
commit
eb6da244cb
2 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
configure.in
+4
-0
src/helper/types.h
+ 1
- 0
configure.in
View File
@@ -17,6 +17,7 @@ AC_CHECK_HEADERS(strings.h)
AC_CHECK_HEADERS(sys/param.h)
AC_CHECK_HEADERS(sys/time.h)
AC_CHECK_HEADERS(sys/select.h)
AC_CHECK_HEADERS(sys/types.h)
AC_HEADER_ASSERT
AC_HEADER_STDBOOL
+ 4
- 0
src/helper/types.h
View File
@@ -27,6 +27,10 @@
#include "config.h"
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifndef u8
typedef unsigned char u8;
#endif
Write
Preview
Loading…
Cancel
Save