jtsiomb / libdrawtext

Simple library for fast anti-aliased text rendering in OpenGL
GNU Lesser General Public License v3.0
86 stars 13 forks source link

Ubuntu cannot find libdrawtext.so.0 #10

Closed FilipeChagasDev closed 5 years ago

FilipeChagasDev commented 5 years ago

Even after make install, ubuntu can not find the libdrawtext.so.0 file. I was able to fix this with the command: sudo cp libdrawtext/ libdrawtext.so.0 /usr/lib

jtsiomb commented 5 years ago

This is not a libdrawtext bug. It's not a bug at all. The default prefix is /usr/local as it should. If ubuntu doesn't have /usr/local/lib in its search paths then you need to add it. Alternatively you can install libdrawtext in /usr if you prefer. Just run ./configure --prefix=/usr before running make install.

I'm closing this bug report. If I misunderstood and that's not what you meant, please re-open.