Skip to content

Commit

Permalink
Corrected the LDDL_FLAGS setting for Mac OS, which is to replace
Browse files Browse the repository at this point in the history
"-flat_namespace -undefined suppress -noprebind" to "-undefined
dynamic_lookup" which is what was done in magic, which has a
similar structure to netgen.
  • Loading branch information
RTimothyEdwards committed Dec 4, 2023
1 parent a7e859f commit 1817f4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.263
1.5.264
2 changes: 1 addition & 1 deletion scripts/configure
Original file line number Diff line number Diff line change
Expand Up @@ -6302,7 +6302,7 @@ fi

*darwin*)
SHDLIB_EXT=".dylib"
LDDL_FLAGS="-dynamiclib -flat_namespace -undefined suppress -noprebind"
LDDL_FLAGS="-dynamiclib -undefined dynamic_lookup"
LDFLAGS="${LDFLAGS} ${LIB_SPECS}"
CFLAGS="${CFLAGS} ${X_CFLAGS} ${INC_SPECS} -I/sw/include -fno-common"
;;
Expand Down
2 changes: 1 addition & 1 deletion scripts/configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ fi

*darwin*)
SHDLIB_EXT=".dylib"
LDDL_FLAGS="-dynamiclib -flat_namespace -undefined suppress -noprebind"
LDDL_FLAGS="-dynamiclib -undefined dynamic_lookup"
LDFLAGS="${LDFLAGS} ${LIB_SPECS}"
CFLAGS="${CFLAGS} ${X_CFLAGS} ${INC_SPECS} -I/sw/include -fno-common"
;;
Expand Down

0 comments on commit 1817f4d

Please sign in to comment.