markcox / snappy

Automatically exported from code.google.com/p/snappy
Other
0 stars 0 forks source link

how i compiled snappy without errors in mingw... #65

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Months ago I was not able to install snappy without some form of error (i made 
a "manual" install). Today I was determined to understand the issue and I found 
out the solution.

(mingw-32 out of the box on windows 7)

1) installing from tarball snappy-1.0.5
I changed the makefile
line 801 becomes:  "install_: install-am"
$ make;  make install_
Seriously I don't know why it works.

2) SVN
The problem is that mingw-32 do not contain pkg-config out of the box.
So an error related to PKG_CHECK_MODULES was reported by running autogen.sh.
I completely uncommented the configure.ac from line 37 to 45 and I was able to 
compile and install correctly.
I done the #1 also.

Original issue reported on code.google.com by dmo...@gmail.com on 4 Aug 2012 at 12:00

GoogleCodeExporter commented 9 years ago
Hi,

Thanks for the report, but this is not a bug report. :-) If there are problems 
in MinGW or autotools, please report them to the appropriate projects. I'm 
closing this as it does not describe a bug in Snappy to the best of my 
knowledge.

Original comment by se...@google.com on 10 Aug 2012 at 1:27