sm00th / bitlbee-discord

Bitlbee plugin for Discord (http://discordapp.com)
GNU General Public License v2.0
290 stars 27 forks source link

Change bitlbee includes from <bitlbee/*.h> to <*.h> #80

Closed dequis closed 7 years ago

dequis commented 7 years ago

This is unfortunate (given the somewhat generic header names) but that's how it should be used to support non-system-wide installs.

With the previous include set up, building this plugin only worked when bitlbee's headers were in /usr/include/bitlbee, because /usr/include is in the default include path and the -I/usr/include/bitlbee is unused (because /usr/include/bitlbee/bitlbee does not exist)

Likely related to #77

sm00th commented 7 years ago

I am still a bit concerned about json.h, but according to the docs paths from -I should have precedence, so we should be fine.