Plethora777 / mcpe_viz

Minecraft Pocket Edition (MCPE) World Visualization & Reporting Tool with Web App
GNU General Public License v2.0
167 stars 39 forks source link

Add NetBSD Support #53

Closed cvsync closed 7 months ago

cvsync commented 6 years ago

I fixed to build on NetBSD platform.

Detail:

  1. NetBSD doesn't have getopt_long_only(3), so use getopt_long(3).
  2. NetBSD doesn't have sendfile(2), so replace it with mmap(2)/write(2) combination.

These changes are wrapped by defined(NetBSD) compile-time option. I hope that these are conflicted in any other OSes.

Plethora777 commented 6 years ago

Does fcopyfile work on NetBSD? (See the existing ifdef above the sendfile)

cvsync commented 6 years ago

NetBSD doesn't have fcopyfile too.