Browse Source

Prefix all source files with node_

v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
a5df0f6a65
  1. 21
      src/node.cc
  2. 2
      src/node.h
  3. 2
      src/node_child_process.cc
  4. 2
      src/node_child_process.h
  5. 2
      src/node_constants.cc
  6. 0
      src/node_constants.h
  7. 4
      src/node_dns.cc
  8. 0
      src/node_dns.h
  9. 2
      src/node_events.cc
  10. 2
      src/node_events.h
  11. 2
      src/node_file.cc
  12. 2
      src/node_file.h
  13. 4
      src/node_http.cc
  14. 2
      src/node_http.h
  15. 2
      src/node_net.cc
  16. 2
      src/node_net.h
  17. 0
      src/node_object_wrap.h
  18. 2
      src/node_signal_handler.cc
  19. 2
      src/node_signal_handler.h
  20. 6
      src/node_stdio.cc
  21. 2
      src/node_stdio.h
  22. 4
      src/node_timer.cc
  23. 4
      src/node_timer.h
  24. 18
      wscript

21
src/node.cc

@ -10,20 +10,21 @@
#include <errno.h> #include <errno.h>
#include <dlfcn.h> /* dlopen(), dlsym() */ #include <dlfcn.h> /* dlopen(), dlsym() */
#include <events.h> #include <node_events.h>
#include <dns.h> #include <node_dns.h>
#include <net.h> #include <node_net.h>
#include <file.h> #include <node_file.h>
#include <http.h> #include <node_http.h>
#include <signal_handler.h> #include <node_signal_handler.h>
#include <timer.h> #include <node_timer.h>
#include <child_process.h> #include <node_child_process.h>
#include <constants.h> #include <node_constants.h>
#include <node_stdio.h> #include <node_stdio.h>
#include <node_natives.h> #include <node_natives.h>
#include <v8-debug.h>
#include <node_version.h> #include <node_version.h>
#include <v8-debug.h>
using namespace v8; using namespace v8;
extern char **environ; extern char **environ;

2
src/node.h

@ -7,7 +7,7 @@
#include <v8.h> #include <v8.h>
#include <evcom.h> #include <evcom.h>
#include <object_wrap.h> #include <node_object_wrap.h>
namespace node { namespace node {

2
src/child_process.cc → src/node_child_process.cc

@ -1,5 +1,5 @@
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org> // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
#include <child_process.h> #include <node_child_process.h>
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>

2
src/child_process.h → src/node_child_process.h

@ -3,7 +3,7 @@
#define SRC_CHILD_PROCESS_H_ #define SRC_CHILD_PROCESS_H_
#include <node.h> #include <node.h>
#include <events.h> #include <node_events.h>
#include <v8.h> #include <v8.h>
#include <ev.h> #include <ev.h>

2
src/constants.cc → src/node_constants.cc

@ -1,5 +1,5 @@
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org> // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
#include <constants.h> #include <node_constants.h>
#include <errno.h> #include <errno.h>
#include <unistd.h> #include <unistd.h>

0
src/constants.h → src/node_constants.h

4
src/dns.cc → src/node_dns.cc

@ -1,5 +1,5 @@
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org> // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
#include <dns.h> #include <node_dns.h>
#include <stdlib.h> /* exit() */ #include <stdlib.h> /* exit() */
#include <sys/types.h> #include <sys/types.h>
@ -8,7 +8,7 @@
#include <arpa/inet.h> #include <arpa/inet.h>
#include <assert.h> #include <assert.h>
#include <events.h> #include <node_events.h>
#include <v8.h> #include <v8.h>
#include <ev.h> #include <ev.h>

0
src/dns.h → src/node_dns.h

2
src/events.cc → src/node_events.cc

@ -1,5 +1,5 @@
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org> // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
#include <events.h> #include <node_events.h>
#include <assert.h> #include <assert.h>
#include <stdlib.h> #include <stdlib.h>

2
src/events.h → src/node_events.h

@ -2,7 +2,7 @@
#ifndef SRC_EVENTS_H_ #ifndef SRC_EVENTS_H_
#define SRC_EVENTS_H_ #define SRC_EVENTS_H_
#include <object_wrap.h> #include <node_object_wrap.h>
#include <v8.h> #include <v8.h>
namespace node { namespace node {

2
src/file.cc → src/node_file.cc

@ -1,5 +1,5 @@
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org> // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
#include <file.h> #include <node_file.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>

2
src/file.h → src/node_file.h

@ -3,7 +3,7 @@
#define SRC_FILE_H_ #define SRC_FILE_H_
#include <node.h> #include <node.h>
#include <events.h> #include <node_events.h>
#include <v8.h> #include <v8.h>
namespace node { namespace node {

4
src/http.cc → src/node_http.cc

@ -1,6 +1,4 @@
#include "node.h" #include <node_http.h>
#include "http.h"
#include <http_parser.h>
#include <assert.h> #include <assert.h>
#include <stdio.h> #include <stdio.h>

2
src/http.h → src/node_http.h

@ -1,8 +1,8 @@
#ifndef node_http_h #ifndef node_http_h
#define node_http_h #define node_http_h
#include <node_net.h>
#include <v8.h> #include <v8.h>
#include "net.h"
#include <http_parser.h> #include <http_parser.h>
namespace node { namespace node {

2
src/net.cc → src/node_net.cc

@ -1,5 +1,5 @@
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org> // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
#include <net.h> #include <node_net.h>
#include <assert.h> #include <assert.h>
#include <stdlib.h> #include <stdlib.h>

2
src/net.h → src/node_net.h

@ -3,7 +3,7 @@
#define SRC_NET_H_ #define SRC_NET_H_
#include <node.h> #include <node.h>
#include <events.h> #include <node_events.h>
#include <v8.h> #include <v8.h>
#include <evcom.h> #include <evcom.h>

0
src/object_wrap.h → src/node_object_wrap.h

2
src/signal_handler.cc → src/node_signal_handler.cc

@ -1,5 +1,5 @@
// Copyright 2009 Ryan Dahl <ry@tinyclouds.org> // Copyright 2009 Ryan Dahl <ry@tinyclouds.org>
#include <signal_handler.h> #include <node_signal_handler.h>
#include <assert.h> #include <assert.h>
namespace node { namespace node {

2
src/signal_handler.h → src/node_signal_handler.h

@ -3,7 +3,7 @@
#define SRC_SIGNAL_HANDLER_H_ #define SRC_SIGNAL_HANDLER_H_
#include <node.h> #include <node.h>
#include <events.h> #include <node_events.h>
#include <v8.h> #include <v8.h>
#include <ev.h> #include <ev.h>

6
src/node_stdio.cc

@ -1,6 +1,6 @@
#include "node_stdio.h" #include <node_stdio.h>
#include "events.h" #include <node_events.h>
#include "coupling.h" #include <coupling.h>
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>

2
src/node_stdio.h

@ -1,7 +1,7 @@
#ifndef node_stdio_h #ifndef node_stdio_h
#define node_stdio_h #define node_stdio_h
#include "node.h" #include <node.h>
#include <v8.h> #include <v8.h>
#include <evcom.h> #include <evcom.h>

4
src/timer.cc → src/node_timer.cc

@ -1,5 +1,5 @@
#include "node.h" #include <node.h>
#include "timer.h" #include <node_timer.h>
#include <assert.h> #include <assert.h>
using namespace v8; using namespace v8;

4
src/timer.h → src/node_timer.h

@ -1,8 +1,8 @@
#ifndef node_timer_h #ifndef node_timer_h
#define node_timer_h #define node_timer_h
#include "node.h" #include <node.h>
#include "events.h" #include <node_events.h>
#include <v8.h> #include <v8.h>
#include <ev.h> #include <ev.h>

18
wscript

@ -310,16 +310,16 @@ def build(bld):
node.target = "node" node.target = "node"
node.source = """ node.source = """
src/node.cc src/node.cc
src/events.cc src/node_child_process.cc
src/http.cc src/node_constants.cc
src/net.cc src/node_dns.cc
src/node_events.cc
src/node_file.cc
src/node_http.cc
src/node_net.cc
src/node_signal_handler.cc
src/node_stdio.cc src/node_stdio.cc
src/dns.cc src/node_timer.cc
src/file.cc
src/signal_handler.cc
src/timer.cc
src/child_process.cc
src/constants.cc
""" """
node.includes = """ node.includes = """
src/ src/

Loading…
Cancel
Save