diff options
author | paul <paul@FreeBSD.org> | 1997-04-19 18:29:20 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1997-04-19 18:29:20 +0000 |
commit | 512f711c7c870708f8db8d55e0e6ea961fba0b1b (patch) | |
tree | 01bd04a609a8e2512862c06ffa9c356265b1cbf8 /www | |
parent | 78077f74f49f92dbb706db1933972f0f094677f7 (diff) | |
download | FreeBSD-ports-512f711c7c870708f8db8d55e0e6ea961fba0b1b.zip FreeBSD-ports-512f711c7c870708f8db8d55e0e6ea961fba0b1b.tar.gz |
Move the <dirent.h> include to after <sys/types.h> or it won't compile.
PR:
Reviewed by:
Submitted by:
Obtained from:
Diffstat (limited to 'www')
-rw-r--r-- | www/analog/files/patch-ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/www/analog/files/patch-ac b/www/analog/files/patch-ac new file mode 100644 index 0000000..6b8da45 --- /dev/null +++ b/www/analog/files/patch-ac @@ -0,0 +1,13 @@ +--- analhea2.h.orig Sat Apr 19 18:47:26 1997 ++++ analhea2.h Sat Apr 19 18:47:36 1997 +@@ -59,9 +59,9 @@ + #include <ctype.h> + #ifndef NODIRENT + #ifndef VMSDIRENT +-#include <dirent.h> + #include <sys/types.h> + #include <sys/stat.h> ++#include <dirent.h> + #else + #define VMS_FSPEC_MAX 256 + #include <descrip.h> |