mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-12-13 01:14:56 +00:00
Disable parport support by default; bump version date
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1507 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2021-12-05 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* configure.ac (AC_INIT): Bump version date
|
||||||
|
* configure.ac (enabled_parport): Default to "no"
|
||||||
|
|
||||||
2021-12-03 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2021-12-03 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
Submitted by Alex Sverdlin:
|
Submitted by Alex Sverdlin:
|
||||||
|
|||||||
2
NEWS
2
NEWS
@@ -24,6 +24,8 @@ Current:
|
|||||||
- some improvements in linuxspi driver
|
- some improvements in linuxspi driver
|
||||||
- Use -B <bitclock> rather than -b <baudrate> for linuxspi driver
|
- Use -B <bitclock> rather than -b <baudrate> for linuxspi driver
|
||||||
- unused lock byte bits are not masked on read anymore
|
- unused lock byte bits are not masked on read anymore
|
||||||
|
- parport support disabled by default; configure with
|
||||||
|
--enable-parport to explicitly enable it
|
||||||
|
|
||||||
* New devices supported:
|
* New devices supported:
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
# Process this file with autoconf to produce a configure script.
|
# Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
AC_PREREQ(2.60)
|
AC_PREREQ(2.60)
|
||||||
AC_INIT(avrdude, 6.3-20171130, avrdude-dev@nongnu.org)
|
AC_INIT(avrdude, 6.3-20211205, avrdude-dev@nongnu.org)
|
||||||
|
|
||||||
AC_CANONICAL_BUILD
|
AC_CANONICAL_BUILD
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
@@ -322,7 +322,7 @@ AC_ARG_ENABLE(
|
|||||||
no) enabled_parport=no ;;
|
no) enabled_parport=no ;;
|
||||||
*) AC_MSG_ERROR(bad value ${enableval} for enable-parport option) ;;
|
*) AC_MSG_ERROR(bad value ${enableval} for enable-parport option) ;;
|
||||||
esac],
|
esac],
|
||||||
[enabled_parport=yes])
|
[enabled_parport=no])
|
||||||
|
|
||||||
AC_ARG_ENABLE(
|
AC_ARG_ENABLE(
|
||||||
[linuxgpio],
|
[linuxgpio],
|
||||||
|
|||||||
Reference in New Issue
Block a user