Skip to content

Commit 6f69ddb

Browse files
committed
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
1 parent 1214f99 commit 6f69ddb

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2021-12-05 Joerg Wunsch <[email protected]>
2+
3+
* configure.ac (AC_INIT): Bump version date
4+
* configure.ac (enabled_parport): Default to "no"
5+
16
2021-12-03 Joerg Wunsch <[email protected]>
27

38
Submitted by Alex Sverdlin:

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ Current:
2424
- some improvements in linuxspi driver
2525
- Use -B <bitclock> rather than -b <baudrate> for linuxspi driver
2626
- unused lock byte bits are not masked on read anymore
27+
- parport support disabled by default; configure with
28+
--enable-parport to explicitly enable it
2729

2830
* New devices supported:
2931

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Process this file with autoconf to produce a configure script.
2424

2525
AC_PREREQ(2.60)
26-
AC_INIT(avrdude, 6.3-20171130, [email protected])
26+
AC_INIT(avrdude, 6.3-20211205, [email protected])
2727

2828
AC_CANONICAL_BUILD
2929
AC_CANONICAL_HOST
@@ -322,7 +322,7 @@ AC_ARG_ENABLE(
322322
no) enabled_parport=no ;;
323323
*) AC_MSG_ERROR(bad value ${enableval} for enable-parport option) ;;
324324
esac],
325-
[enabled_parport=yes])
325+
[enabled_parport=no])
326326

327327
AC_ARG_ENABLE(
328328
[linuxgpio],

0 commit comments

Comments
 (0)