Submitted. Note: Google groups word-wraps input, which can break patches. On Tue, Sep 30, 2008 at 2:58 PM, Jeff Bailey <[EMAIL PROTECTED]> wrote:
> > The following patch fixes one obsolete construct in configure.ac and > neurotically adds quoting. Because I <3 m4. > > Tested with automake-1.9/autoconf2.59 and automake-1.10/autoconf2.61 > > index 203a2ff..4543e47 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, [email protected]) > +AC_INIT([protobuf],[2.0.2-SNAPSHOT],[EMAIL PROTECTED]) > > 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 > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/protobuf?hl=en -~----------~----~----~----~------~----~------~--~---
