Skip to content

Commit b50c68a

Browse files
authored
Fix #8705 - UDF not working on macOS (#8712)
1 parent 91708df commit b50c68a

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/jrd/flu.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
#include <string.h>
6666

67-
#if (defined SOLARIS || defined LINUX || defined AIX_PPC || defined FREEBSD || defined NETBSD || defined HPUX)
67+
#if (defined SOLARIS || defined LINUX || defined DARWIN || defined AIX_PPC || defined FREEBSD || defined NETBSD || defined HPUX)
6868
#define DYNAMIC_SHARED_LIBRARIES
6969
#endif
7070

@@ -113,11 +113,6 @@ namespace {
113113
{MOD_SUFFIX, "." SHRLIB_EXT, true},
114114
{MOD_PREFIX, "lib", true},
115115
#endif
116-
/*
117-
#ifdef DARWIN
118-
{MOD_SUFFIX, ".dylib", true},
119-
#endif
120-
*/
121116
};
122117

123118
// UDF/BLOB filter verifier

0 commit comments

Comments
 (0)