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-07-28 17:05:20 +02:00
committed by sambuc
parent 8df22d598f
commit 29dca95386
+4
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>