4 Commits

Author SHA1 Message Date
Joerg Wunsch
e076170551 This commit was manufactured by cvs2svn to create tag
'RELEASE_5_3_1'.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/tags/RELEASE_5_3_1@714 81a1dc3b-b13d-400b-aceb-764788c761c2
2006-12-22 22:55:34 +00:00
Joerg Wunsch
1fc0d26959 Actually bump version to 5.3.1 now.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@713 81a1dc3b-b13d-400b-aceb-764788c761c2
2006-12-22 22:55:33 +00:00
Joerg Wunsch
c59ed7097e * configure.ac (AC_INIT): Bump version to 5.3.1.
* avrdude.conf.in (frank-stk200): Fix syntax error.
* ser_avrdoper.c: Make #ifdef for Win32/libhid
consistent with the initial check: use the HID driver
only iff found, otherwise use libusb.


git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@712 81a1dc3b-b13d-400b-aceb-764788c761c2
2006-12-22 22:52:34 +00:00
Joerg Wunsch
ba82e4bb01 We are now post release 5.3.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@711 81a1dc3b-b13d-400b-aceb-764788c761c2
2006-12-21 22:48:14 +00:00
5 changed files with 17 additions and 4 deletions

View File

@@ -1,3 +1,15 @@
2006-12-22 Joerg Wunsch <j@uriah.heep.sax.de>
* configure.ac (AC_INIT): Bump version to 5.3.1.
* avrdude.conf.in (frank-stk200): Fix syntax error.
* ser_avrdoper.c: Make #ifdef for Win32/libhid
consistent with the initial check: use the HID driver
only iff found, otherwise use libusb.
2006-12-21 Joerg Wunsch <j@uriah.heep.sax.de>
* configure.ac (AC_INIT): Bump version to 5.3cvs.
2006-12-21 Joerg Wunsch <j@uriah.heep.sax.de>
Released AVRDUDE 5.3.

View File

@@ -5,7 +5,7 @@ Approximate change log for AVRDUDE by version.
(For more detailed changes, see the ChangeLog file.)
----------------------------------------------------------------------
Version 5.3:
Version 5.3.1:
* Add support for the AVR Dragon (all modes: ISP, JTAG, HVSP, PP,
debugWire).

View File

@@ -691,6 +691,7 @@ programmer
reset = 9;
miso = 10;
pgmled = 8;
;
@HAVE_PARPORT_END@

View File

@@ -24,7 +24,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
AC_INIT(avrdude, 5.3, avrdude-dev@nongnu.org)
AC_INIT(avrdude, 5.3.1, avrdude-dev@nongnu.org)
AC_CANONICAL_BUILD
AC_CANONICAL_HOST

View File

@@ -66,7 +66,7 @@ static int avrdoperRxPosition = 0; /* amount of bytes already consu
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
#ifdef WIN32NATIVE
#if defined(WIN32NATIVE) && defined(HAVE_LIBHID)
#include <windows.h>
#include <setupapi.h>
@@ -242,7 +242,7 @@ static int usbGetReport(union filedescriptor *fdp, int reportType, int reportNum
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
#else /* !WIN32NATIVE */
#else /* !(WIN32NATIVE && HAVE_LIBHID) */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */