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:
@@ -5,23 +5,26 @@
|
|||||||
#include <OpenMesh/Core/System/OpenMeshDLLMacros.hh>
|
#include <OpenMesh/Core/System/OpenMeshDLLMacros.hh>
|
||||||
|
|
||||||
#if defined(WIN32)
|
#if defined(WIN32)
|
||||||
#if defined(__cplusplus)
|
#if defined(__cplusplus)
|
||||||
|
|
||||||
|
extern "C" {
|
||||||
|
|
||||||
|
extern OPENMESHDLLEXPORT int opterr;
|
||||||
|
extern OPENMESHDLLEXPORT int optind;
|
||||||
|
extern OPENMESHDLLEXPORT int optopt;
|
||||||
|
extern OPENMESHDLLEXPORT int optreset;
|
||||||
|
extern OPENMESHDLLEXPORT char *optarg;
|
||||||
|
|
||||||
extern "C" {
|
OPENMESHDLLEXPORT extern int getopt(int nargc, char * const *nargv, const char *ostr);
|
||||||
|
|
||||||
extern OPENMESHDLLEXPORT int opterr;
|
}
|
||||||
extern OPENMESHDLLEXPORT int optind;
|
|
||||||
extern OPENMESHDLLEXPORT int optopt;
|
|
||||||
extern OPENMESHDLLEXPORT int optreset;
|
|
||||||
extern OPENMESHDLLEXPORT char *optarg;
|
|
||||||
|
|
||||||
OPENMESHDLLEXPORT extern int getopt(int nargc, char * const *nargv, const char *ostr);
|
#endif
|
||||||
|
|
||||||
}
|
#elif defined __APPLE__
|
||||||
|
#include <unistd.h>
|
||||||
# endif
|
|
||||||
#else
|
#else
|
||||||
# include <getopt.h>
|
#include <getopt.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* _GETOPT_H_ */
|
#endif /* _GETOPT_H_ */
|
||||||
|
|||||||
Reference in New Issue
Block a user