diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-02-18 18:12:28 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-02-18 18:12:38 +0100 |
| commit | 611ac3933c655690b09f14cc7b25fa48af54f64a (patch) | |
| tree | 0124e6014082aa4c02f62e5db7324b9261be5754 /src | |
| parent | fdd1509ee5392f28a0c6d1021269a5d22c34933b (diff) | |
| download | box64-611ac3933c655690b09f14cc7b25fa48af54f64a.tar.gz box64-611ac3933c655690b09f14cc7b25fa48af54f64a.zip | |
[LA64][WRAPPING][BOX32] Added alt name for libnsl
Diffstat (limited to 'src')
| -rw-r--r-- | src/wrapped32/wrappednsl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wrapped32/wrappednsl.c b/src/wrapped32/wrappednsl.c index b53cc84a..0065d0c9 100644 --- a/src/wrapped32/wrappednsl.c +++ b/src/wrapped32/wrappednsl.c @@ -11,7 +11,11 @@ #include "librarian/library_private.h" #include "x64emu.h" +#ifdef LA64 +static const char* nslName = "libnsl.so.2"; +#else static const char* nslName = "libnsl.so.1"; +#endif #define LIBNAME nsl #include "wrappedlib_init32.h" |