1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2025-01-06 21:02:55 +08:00

Dl_info is undeclared with uclibc-ng without __USE_GNU

- like https://github.com/rofl0r/proxychains-ng/issues/338
 - refs https://github.com/wbx-github/uclibc-ng/blob/v1.0.44/include/dlfcn.h#L90
 - used 3336514d8c
This commit is contained in:
cuma 2023-10-06 13:35:45 +02:00 committed by GitHub
parent 0c795085fa
commit b0f8a2c20b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,9 @@
#ifdef IS_MAC
#define _DARWIN_C_SOURCE
#endif
#ifdef __UCLIBC__
#define __USE_GNU
#endif
#include <dlfcn.h>
#include "common.h"