diff options
author | Clint Adams <clint@users.sourceforge.net> | 2007-07-12 02:33:19 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2007-07-12 02:33:19 +0000 |
commit | a5187bb6ac96cc43f68367c5dc9332854c250713 (patch) | |
tree | 3331c1ecc813776ee666494e873cb847e719fb2b /Src/Modules/tcp.mdd | |
parent | 25ded6226c4922ccded0432552689ac95ae574b5 (diff) | |
download | zsh-a5187bb6ac96cc43f68367c5dc9332854c250713.tar.gz zsh-a5187bb6ac96cc43f68367c5dc9332854c250713.tar.xz zsh-a5187bb6ac96cc43f68367c5dc9332854c250713.zip |
23670: use getaddrinfo() and getnameinfo() instead of get*by* functions.
Diffstat (limited to 'Src/Modules/tcp.mdd')
-rw-r--r-- | Src/Modules/tcp.mdd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/Modules/tcp.mdd b/Src/Modules/tcp.mdd index 69fd4d6bf..d2bac21b5 100644 --- a/Src/Modules/tcp.mdd +++ b/Src/Modules/tcp.mdd @@ -1,6 +1,7 @@ name=zsh/net/tcp -link=dynamic +link=`if test x$ac_cv_func_getaddrinfo; then echo dynamic; else echo no; fi` load=no + functions='Functions/TCP/*' objects="tcp.o" |