writeisofs build fix (missing NAME_MAX define).

Building writeisofs on OS X led to a failure due to the NAME_MAX define
being missing.
This commit is contained in:
Ryan Sheridan 2014-03-17 13:06:32 -07:00 committed by Lionel Sambuc
parent 8df22d598f
commit 29dca95386

View file

@ -1,6 +1,10 @@
/* writeisofs - simple ISO9660-format-image writing utility */
#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
#include <errno.h>
#include <stdio.h>
#include <time.h>