~ubuntu-branches/ubuntu/trusty/protobuf/trusty-proposed

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-05-31 14:41:47 UTC
  • mfrom: (2.2.8 sid)
  • Revision ID: james.westby@ubuntu.com-20110531144147-s41g5fozgvyo462l
Tags: 2.4.0a-2ubuntu1
* Merge with Debian; remaining changes:
  - Fix linking with -lpthread.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
# In the SVN trunk, the version should always be the next anticipated release
13
13
# version with the "-pre" suffix.  (We used to use "-SNAPSHOT" but this pushed
14
14
# the size of one file name in the dist tarfile over the 99-char limit.)
15
 
AC_INIT([Protocol Buffers],[2.3.0],[protobuf@googlegroups.com],[protobuf])
 
15
AC_INIT([Protocol Buffers],[2.4.0a],[protobuf@googlegroups.com],[protobuf])
16
16
 
17
17
 
18
18
AC_CONFIG_SRCDIR(src/google/protobuf/message.cc)
118
118
 
119
119
AS_IF([test "$with_protoc" != "no"], [
120
120
  PROTOC=$with_protoc
121
 
  AS_IF([test "$with_protoc" == "yes"], [
 
121
  AS_IF([test "$with_protoc" = "yes"], [
122
122
    # No argument given.  Use system protoc.
123
123
    PROTOC=protoc
124
124
  ])