Description of problem: mecab-config --libs returns bogus return values # mecab-config --libs -L/usr/lib -lmecab -lstdc++ This is broken twice: 1. /usr/lib is being searched by default Explictly passing -L/usr/lib interferes with implicit library search paths and therefore must not be used. (c.f. how pkg-config handles -L/usr/lib - It strips it out) 2. -lstdc++ is an internal implementation detail of g++ and must not be explictly used during linkage. Version-Release number of selected component (if applicable): mecab-devel-0.95-1.fc6
should be fixed in -2. Thanks.