Skip to content
Snippets Groups Projects
Commit 960abd71 authored by Luigi Scarso's avatar Luigi Scarso
Browse files

(tags/1.07.0) better patch for __NetBSD__ (thanks to Marc Baudoin)

parent ef24d0ec
No related branches found
No related tags found
No related merge requests found
$ diff -u gfile.h.orig gfile.h
--- gfile.h.orig 2018-03-22 15:08:01.913911597 +0100
+++ gfile.h 2018-03-22 15:00:59.106829862 +0100
@@ -51,6 +51,8 @@
#elif defined(ACORN)
--- gfile.h.orig 2018-03-26 11:43:40.479917632 +0200
+++ gfile.h 2018-03-26 11:41:51.965590455 +0200
@@ -52,6 +52,9 @@
#elif defined(MACOS)
# include <ctime.h>
+#elif defined(__NetBSD__)
+#include <time.h>
#else
+# if defined(__NetBSD__)
+# include <time.h>
+# endif
# include <unistd.h>
# include <sys/types.h>
# if defined(VMS)
......@@ -51,9 +51,10 @@ extern "C" {
#elif defined(ACORN)
#elif defined(MACOS)
# include <ctime.h>
#elif defined(__NetBSD__)
#include <time.h>
#else
# if defined(__NetBSD__)
# include <time.h>
# endif
# include <unistd.h>
# include <sys/types.h>
# if defined(VMS)
......
#define luatex_svn_revision 6675
#define luatex_svn_revision 6678
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment