Build fix for getopt.h on Apple. (Thanks to Adam Vandenberg for the fix)

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@978 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2013-11-28 11:11:26 +00:00
parent 752555ed88
commit c2388105c4

View File

@@ -20,6 +20,9 @@ OPENMESHDLLEXPORT extern int getopt(int nargc, char * const *nargv, const char *
}
#endif
#elif defined __APPLE__
#include <unistd.h>
#else
#include <getopt.h>
#endif