netbee icon indicating copy to clipboard operation
netbee copied to clipboard

Ubuntu 18.04

Open maskojan opened this issue 5 years ago • 1 comments

'libnbee.so' is located in netbee/bin even that it cannot to find it. And Ubuntu 18.04 is not supported operating system.

Error initializing the NetBee Library; Cannot locate the 'libnbee.so' shared library; this Operating System is not supported.

maskojan avatar Mar 07 '19 14:03 maskojan

I came across same problem on Ubuntu 18.04

My hotfix for this:

in file src/nbee/misc/os_utils.cpp: line 69

#elif defined(linux)

changed to

#elif defined(__linux__)

and recompiled. It works for me. Going to make pull request.

aleasims avatar May 15 '19 10:05 aleasims