modification for "make pe-make" command in OSX
Status: Beta
Brought to you by:
worden
In order to compile "make pe-make" command for ProjectEngine, I would propose to add the following lines to the code of pe-make.c
/ OSX lacks HOST_NAME_MAX, has _POSIX_HOST_NAME_MAX /
ifndef HOST_NAME_MAX
# if defined(_POSIX_HOST_NAME_MAX)
# define HOST_NAME_MAX _POSIX_HOST_NAME_MAX
# elif defined(MAXHOSTNAMELEN)
# define HOST_NAME_MAX MAXHOSTNAMELEN
# endif
endif / HOST_NAME_MAX /
Anonymous
Sounds good to me!