Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rofl0r/proxychains-ng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrofl0r <rofl0r@users.noreply.github.com>2021-12-12 20:51:25 +0300
committerrofl0r <rofl0r@users.noreply.github.com>2021-12-12 20:51:25 +0300
commit063ac681da84fd6e21c131e9fbf0407a2dcf822b (patch)
treea054d2602c78a7b47777c4f9f200a0f8868d31e8 /Makefile
parentb83e90dcaf338ec08b30cd018e3a3542886686d9 (diff)
remove 10 year old workaround for wrong glibc getnameinfo signature
in ce655fdac82ed843b94a1f1a176475e9dbe432c1 the getnameinfo function was factored into a separate TU to prevent its POSIX signature from colliding with GLIBC's wrong prototype. since this has been fixed in GLIBC 10 years ago, it should be safe by now. undoing the workaround has the advantage that all hooked functions are now available in the same place, which is a prerequisite for a change i'm about to commit. if it turns out there's still systems in use that use the old GLIBC version with the wrong prototype, we can add a configure check dealing with it.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7f3f4fa..7483ffe 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ DOBJS = src/daemon/hsearch.o \
src/daemon/sblist.o src/daemon/sblist_delete.o \
src/daemon/daemon.o src/daemon/udpserver.o
-LOBJS = src/nameinfo.o src/version.o \
+LOBJS = src/version.o \
src/core.o src/common.o src/libproxychains.o \
src/allocator_thread.o src/rdns.o \
src/hostsreader.o src/hash.o src/debug.o