在github上下載的google protobuf 2.5.0分支編譯問題 git
因爲沒有configure文件,須要使用autogen生成,autogen依賴gtest因此 github
wget https://codeload.github.com/google/protobuf/zip/v2.5.0
mv v2.5.0 protobuf_2.5.0.zip
unzip protobuf_2.5.0.zip
cd protobuf-2.5.0
修改autogen.sh,註釋curl http://googletest.googlecode.com/files/gtest-1.5.0.tar.bz2 | tar jx
改成:
wget https://codeload.github.com/google/googletest/zip/release-1.5.0
unzip release-1.5.0
mv googletest-release-1.5.0 gtest
./autogen.sh
./configure
make
curl