pediapress / pyfribidi

simple python wrapper around the fribidi library
GNU General Public License v2.0
12 stars 10 forks source link

Fix build with clang #12

Open maxxk opened 4 years ago

maxxk commented 4 years ago

Clang rejects "return value" from void function when building for Python 2:

error: void function 'init_pyfribidi' should not return a value [-Wreturn-type]

Patched in NixOS: https://github.com/NixOS/nixpkgs/pull/80838

worldofpeace commented 4 years ago

Thanks @maxxk