summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
authordrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-07-17 14:13:27 +0000
committerdrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-07-17 14:13:27 +0000
commit82d2633b5f550115e9e7c7d0520babb6680aa38f (patch)
treefa9895a6117d4a238be1b76293edcc7de11a88c2 /src/openocd.c
parent1960973baf8022b4525e3ac94aed8dace7f9b478 (diff)
downloadopenocd_libswd-82d2633b5f550115e9e7c7d0520babb6680aa38f.tar.gz
openocd_libswd-82d2633b5f550115e9e7c7d0520babb6680aa38f.tar.bz2
openocd_libswd-82d2633b5f550115e9e7c7d0520babb6680aa38f.tar.xz
openocd_libswd-82d2633b5f550115e9e7c7d0520babb6680aa38f.zip
- Added support for native MinGW builds (thanks to Spencer Oliver and Michael Fischer) - you still need to install GiveIO (not part of OpenOCD)
- Added state-move support to ftd2xx and bitbang JTAG drivers (required for XScale, possibly useful for other targets, too) - various fixes git-svn-id: svn://svn.berlios.de/openocd/trunk@78 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/openocd.c b/src/openocd.c
index 9e71dbeb..e52afd34 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -18,10 +18,10 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
-#define OPENOCD_VERSION "Open On-Chip Debugger (2006-06-25 23:00 CEST)"
+#define OPENOCD_VERSION "Open On-Chip Debugger (2006-07-15 12:00 CEST)"
#ifdef HAVE_CONFIG_H
-#include <config.h>
+#include "config.h"
#endif
#include "log.h"
@@ -40,13 +40,9 @@
#include <sys/time.h>
#include <sys/types.h>
-#include <sys/socket.h>
-#include <sys/poll.h>
#include <strings.h>
-#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
-#include <signal.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>