saitoha / libsixel

A SIXEL encoder/decoder implementation derived from kmiya's sixel (https://github.com/saitoha/sixel).
MIT License
2.49k stars 83 forks source link

fix include path priority. #20

Closed ttdoda closed 9 years ago

ttdoda commented 9 years ago

configure時にCFLAGS/CPPFLAGSに-I/usr/local/includeをセットしていた場合、それらはビルド時に -I$(top_builddir)/include/ より前に来る。 もし/usr/local/includeに(古い)sixel.hが有った場合、リポジトリに含まれる(最新の)sixel.hではなくそちらのsixel.hが使われるため、ビルドに失敗する事が有る。

この修正は -I$(top_builddir)/include/ が CPPFLAGS より前に来るようにして、常にリポジトリに含まれる sixel.h が使われるようにする。

coveralls commented 9 years ago

Coverage Status

Coverage remained the same when pulling 5a88a86e87db45c84f1356654ded71663cc7ea25 on ttdoda into 4bb00eba20f8856171e24bf907627135ee61c321 on master.

saitoha commented 9 years ago

@ttdoda ありがとうございます。micro version上げたリリースを作ります。