SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,17 @@
Fix for ports gcc as feof() is a macro
neon.cc:968:16: error: expected unqualified-id before '(' token
bool NeonFile::feof ()
Index: src/neon/neon.cc
--- src/neon/neon.cc.orig
+++ src/neon/neon.cc
@@ -45,6 +45,8 @@
#define NEON_ICY_BUFSIZE (4096)
#define NEON_RETRY_COUNT 6
+#undef feof
+
enum FillBufferResult {
FILL_BUFFER_SUCCESS,
FILL_BUFFER_ERROR,