Git Product home page Git Product logo

Comments (10)

comotion avatar comotion commented on August 15, 2024

From doc/INSTALL:

## dependencies
libpcap0.8 (>= 0.9.8), libpcre3 (>= 8.10), libresolv

from prads.

comotion avatar comotion commented on August 15, 2024

first occurance is ** dump_dns.o:dump_dns.c:(.text+0xa8): undefined reference to "__ns_parserr", indicates you are missing libresolv

from prads.

Anandir avatar Anandir commented on August 15, 2024

All the libraries are present.
The libpcap0.8 (>= 0.9.8) is provided by NPcap (as said) so it's like the latest libpcap, but for Windows.
The libpcre3 (>= 8.10) is provided by this https://cygwin.com/cgi-bin2/package-cat.cgi?file=x86%2Flibpcre1%2Flibpcre1-8.40-1&grep=libpcre, but I don't think it's the problem because the errors are related to the resolv lib.
The resolv lib it's bundled within the Cygwin environment.

from prads.

Anandir avatar Anandir commented on August 15, 2024

That's what I've thought too. That's why I've modified the make file to the proper location, but it doesn't work, and I didn't understand why.
I'm not sure of this, but if gcc link the libraries in the order of which are provided, the libresolv it's the last one, so the linking is ok for the other two.
The file libresolv.a it's present in the modified LIBDIR path.

I've check the pasts issues, and used the issue #40 as source for ideas, but with no luck.

from prads.

comotion avatar comotion commented on August 15, 2024

The symbols you are missing are definitely provided by libresolv.so on my system.

Look, I am not sure anyone has ever tried prads in cygwin before. The environment might prove insufficient. You can try nm -D /path/to/libresolv.so | grep ns_parserr - maybe you have an old version, or a quirky path to your libresolv?

from prads.

Anandir avatar Anandir commented on August 15, 2024

The .so it's not present, because, if I've understood correctly from previous search over it, it's bundled inside the cygwin1.dll or, anyway, inside the cygwin framework.
The only thing present it's the .a library and that's what I've with the nm -D output:

$ nm -D /usr/lib/libresolv.a

d000000.o:
nm: d000000.o: no symbol

t-d000031.o:
nm: t-d000031.o: no symbol

t-d000032.o:
nm: t-d000032.o: no symbol

t-d000033.o:
nm: t-d000033.o: no symbol

t-d000093.o:
nm: t-d000093.o: no symbol

t-d000094.o:
nm: t-d000094.o: no symbol

t-d000095.o:
nm: t-d000095.o: no symbol

t-d000096.o:
nm: t-d000096.o: no symbol

t-d000097.o:
nm: t-d000097.o: no symbol

t-d000098.o:
nm: t-d000098.o: no symbol

t-d000099.o:
nm: t-d000099.o: no symbol

t-d000100.o:
nm: t-d000100.o: no symbol

t-d000101.o:
nm: t-d000101.o: no symbol

t-d000102.o:
nm: t-d000102.o: no symbol

t-d000103.o:
nm: t-d000103.o: no symbol

t-d000104.o:
nm: t-d000104.o: no symbol

t-d000105.o:
nm: t-d000105.o: no symbol

t-d000106.o:
nm: t-d000106.o: no symbol

t-d000107.o:
nm: t-d000107.o: no symbol

The output of the nm command (without -D) is:

$ nm /usr/lib/libresolv.a

d000000.o:
00000000 i .idata$7
00000000 I _libresolv_dll_iname

t-d000031.o:
00000000 t .text
00000000 T ___dn_comp
         U __imp____dn_comp

t-d000032.o:
00000000 t .text
00000000 T ___dn_expand
         U __imp____dn_expand

t-d000033.o:
00000000 t .text
00000000 T ___dn_skipname
         U __imp____dn_skipname

t-d000093.o:
00000000 t .text
00000000 T ___res_close
         U __imp____res_close

t-d000094.o:
00000000 t .text
00000000 T ___res_init
         U __imp____res_init

t-d000095.o:
00000000 t .text
00000000 T ___res_mkquery
         U __imp____res_mkquery

t-d000096.o:
00000000 t .text
00000000 T ___res_nclose
         U __imp____res_nclose

t-d000097.o:
00000000 t .text
00000000 T ___res_ninit
         U __imp____res_ninit

t-d000098.o:
00000000 t .text
00000000 T ___res_nmkquery
         U __imp____res_nmkquery

t-d000099.o:
00000000 t .text
00000000 T ___res_nquery
         U __imp____res_nquery

t-d000100.o:
00000000 t .text
00000000 T ___res_nquerydomain
         U __imp____res_nquerydomain

t-d000101.o:
00000000 t .text
00000000 T ___res_nsearch
         U __imp____res_nsearch

t-d000102.o:
00000000 t .text
00000000 T ___res_nsend
         U __imp____res_nsend

t-d000103.o:
00000000 t .text
00000000 T ___res_query
         U __imp____res_query

t-d000104.o:
00000000 t .text
00000000 T ___res_querydomain
         U __imp____res_querydomain

t-d000105.o:
00000000 t .text
00000000 T ___res_search
         U __imp____res_search

t-d000106.o:
00000000 t .text
00000000 T ___res_send
         U __imp____res_send

t-d000107.o:
00000000 t .text
00000000 T ___res_state
         U __imp____res_state

from prads.

comotion avatar comotion commented on August 15, 2024

Well, maybe the symbols are in the cygwin dll, but the makefile expects there to be a working -lresolv to link with, and that this library provides the required symbols.
If you are convinced the symbols should be provided in cygwin1.dll or some other file, try nm -D on that library to see if it contains the required symbols. prads would then need to be linked with that library.

My bet is that cygwin libresolv is broken or too old. You can try with MSYS2, which is a more up-to-date posix compatibility layer. You'll be the first one that gets this working, so be sure to report back 😅

from prads.

Anandir avatar Anandir commented on August 15, 2024

Ok :-). I'll continue the investigations/works over it. I'll keep you posted :-)!
Thanks a lot so far ;-)!

from prads.

comotion avatar comotion commented on August 15, 2024

a quick look into my crystal ball yeilded this gem from 2004:
https://cygwin.com/ml/cygwin/2004-11/msg00024.html

You can try to install minires-devel in cygwin and see if that provides the needed resolver symbols.

from prads.

Anandir avatar Anandir commented on August 15, 2024

It seems that the minires-devel is now obsolete and no more available.

https://cygwin.com/cgi-bin2/package-grep.cgi?grep=minires&arch=x86

I'm installing MSYS2 at the moment.

from prads.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.