aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorkenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2008-09-30 22:11:21 +0000
committerkenton@google.com <kenton@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2008-09-30 22:11:21 +0000
commitc76caaccb8385a4474e674a2aed9be4c3e1be785 (patch)
tree242af4cb4ada78402f732eb52b1e8a381ffe6a56 /configure.ac
parentcf3f638c926ec348752aa1f832df3c761343346e (diff)
downloadprotobuf-c76caaccb8385a4474e674a2aed9be4c3e1be785.tar.gz
protobuf-c76caaccb8385a4474e674a2aed9be4c3e1be785.tar.bz2
protobuf-c76caaccb8385a4474e674a2aed9be4c3e1be785.zip
Improvements to configure.ac from Jeff Bailey.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 203a2ff9..4543e47d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,10 +7,10 @@ AC_PREREQ(2.59)
# * 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 @@ AC_CHECK_FUNCS([ftruncate memset mkdir strchr strerror strtol])
ACX_PTHREAD
AC_CXX_STL_HASH
-AC_OUTPUT( Makefile src/Makefile )
+AC_CONFIG_FILES([Makefile src/Makefile ])
+AC_OUTPUT