Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Remove dns_legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Oct 11, 2011
1 parent 96e423a commit 58e892d
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 1,186 deletions.
File renamed without changes.
324 changes: 0 additions & 324 deletions lib/dns_legacy.js

This file was deleted.

4 changes: 1 addition & 3 deletions node.gyp
Expand Up @@ -21,8 +21,7 @@
'lib/crypto.js',
'lib/dgram_legacy.js',
'lib/dgram_uv.js',
'lib/dns_legacy.js',
'lib/dns_uv.js',
'lib/dns.js',
'lib/events.js',
'lib/freelist.js',
'lib/fs.js',
Expand Down Expand Up @@ -168,7 +167,6 @@
},{ # POSIX
'defines': [ '__POSIX__' ],
'sources': [
'src/node_cares.cc',
'src/node_signal_watcher.cc',
'src/node_stat_watcher.cc',
'src/node_io_watcher.cc',
Expand Down
1 change: 0 additions & 1 deletion src/node.cc
Expand Up @@ -77,7 +77,6 @@ extern "C" {
#ifdef __POSIX__
# include <node_io_watcher.h>
#endif
#include <node_cares.h>
#include <node_file.h>
#include <node_http_parser.h>
#ifdef __POSIX__
Expand Down
3 changes: 0 additions & 3 deletions src/node.js
Expand Up @@ -464,9 +464,6 @@
case 'dgram':
return process.features.uv ? 'dgram_uv' : 'dgram_legacy';

case 'dns':
return process.features.uv ? 'dns_uv' : 'dns_legacy';

default:
return id;
}
Expand Down

0 comments on commit 58e892d

Please sign in to comment.