Improvements to configure.ac from Jeff Bailey.

diff --git a/configure.ac b/configure.ac
index 203a2ff..4543e47 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,10 +7,10 @@
 # * java/pom.xml
 # * python/setup.py
 # * src/google/protobuf/stubs/common.h
-AC_INIT(protobuf, 2.0.2-SNAPSHOT, protobuf@googlegroups.com)
+AC_INIT([protobuf],[2.0.2-SNAPSHOT],[protobuf@googlegroups.com])
 
 AC_CONFIG_SRCDIR(src/google/protobuf/message.cc)
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS([config.h])
 AM_INIT_AUTOMAKE
 
 # Checks for programs.
@@ -31,4 +31,5 @@
 ACX_PTHREAD
 AC_CXX_STL_HASH
 
-AC_OUTPUT( Makefile src/Makefile )
+AC_CONFIG_FILES([Makefile src/Makefile ])
+AC_OUTPUT