From bfa45404705508751553f9f65505608f15797ee5 Mon Sep 17 00:00:00 2001
From: joerg_wunsch <joerg_wunsch@81a1dc3b-b13d-400b-aceb-764788c761c2>
Date: Tue, 10 May 2005 21:04:55 +0000
Subject: [PATCH] I missed to commit the allowfullpagebitstream attributes.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@456 81a1dc3b-b13d-400b-aceb-764788c761c2
---
 avrdude.conf.in | 5 +++++
 bootstrap       | 6 ++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/avrdude.conf.in b/avrdude.conf.in
index ec4c820f..824cc675 100644
--- a/avrdude.conf.in
+++ b/avrdude.conf.in
@@ -1750,6 +1750,7 @@ part
 
     idr                 = 0x22;
     spmcr               = 0x68;
+    allowfullpagebitstream = yes;
 
     memory "eeprom"
         paged           = no; /* leave this "no" */
@@ -1901,6 +1902,7 @@ part
     idr                 = 0x22;
     spmcr               = 0x68;
     rampz               = 0x3b;
+    allowfullpagebitstream = yes;
 
     memory "eeprom"
         paged           = no; /* leave this "no" */
@@ -2196,6 +2198,7 @@ part
 
     idr                 = 0x31;
     spmcr               = 0x57;
+    allowfullpagebitstream = yes;
 
     memory "eeprom"
         paged           = no; /* leave this "no" */
@@ -2308,6 +2311,7 @@ part
 
     idr              = 0x04;
     spmcr            = 0x57;
+    allowfullpagebitstream = yes;
 
     pgm_enable       = "1 0 1 0  1 1 0 0    0 1 0 1  0 0 1 1",
                        "x x x x  x x x x    x x x x  x x x x";
@@ -2752,6 +2756,7 @@ part
 
     idr                 = 0x31;
     spmcr               = 0x57;
+    allowfullpagebitstream = yes;
 
    memory "eeprom"
         paged           = no;   /* leave this "no" */
diff --git a/bootstrap b/bootstrap
index e1f76105..c7e94815 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,4 +1,6 @@
 #! /bin/sh
+AC_VER=259
+AM_VER=19
 
 # autoconf-2.57 is required
 
@@ -14,7 +16,7 @@
 
 AUTOCONF_VER=`(${AUTOCONF} --version 2>/dev/null | head -n 1 | \
               cut -d ' ' -f 4) 2>/dev/null`
-if [ "$AUTOCONF_VER" != "2.57" ]
+if [ "$AUTOCONF_VER" != "2.59" ]
 then
 	echo "You need to use autoconf version 2.57."
 	echo "You are using `${AUTOCONF} --version | head -n 1`."
@@ -25,7 +27,7 @@ fi
 
 AUTOMAKE_VER=`(${AUTOMAKE} --version | head -n 1 | \
               cut -d ' ' -f 4 | cut -d '.' -f -2) 2>/dev/null`
-if [ "$AUTOMAKE_VER" != "1.7" ]
+if [ "$AUTOMAKE_VER" != "1.9" ]
 then
 	echo "You need to use automake version 1.7 (preferrably 1.7.3)."
 	echo "You are using `${AUTOMAKE} --version | head -n 1`."