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

Commit

Permalink
Fix tabs in changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Oct 10, 2009
1 parent d79b6e9 commit 8b62e86
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

* Feature: Improved addon builds with node-waf

* Feature: node.SignalHandler (Brandon Beacher)
* Feature: node.SignalHandler (Brandon Beacher)

* Feature: Enable V8 debugging (but still need to make a debugger)
* Feature: Enable V8 debugging (but still need to make a debugger)

* API: Rename library /utils.js to /sys.js
* API: Rename library /utils.js to /sys.js

* Clean up Node's build system

Expand All @@ -20,7 +20,7 @@

* API: Remove include() add node.mixin()

* Normalize http headers; "Content-Length" becomes "content-length"
* Normalize http headers; "Content-Length" becomes "content-length"

* Upgrade V8 to 1.3.15

Expand Down
6 changes: 4 additions & 2 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ def configure(conf):
#if Options.options.efence:
# conf.check(lib='efence', libpath=['/usr/lib', '/usr/local/lib'], uselib_store='EFENCE')

if sys.platform.startswith("freebsd"):
if not conf.check(lib="execinfo", libpath=['/usr/lib', '/usr/local/lib'], uselib_store="EXECINFO"):
if not conf.check(lib="execinfo", libpath=['/usr/lib', '/usr/local/lib'], uselib_store="EXECINFO"):
if sys.platform.startswith("freebsd"):
fatal("Install the libexecinfo port from /usr/ports/devel/libexecinfo.")

conf.sub_config('deps/libeio')
Expand Down Expand Up @@ -235,6 +235,7 @@ def build_v8(bld):
before = "cxx",
install_path = None
)
v8.uselib = "EXECINFO"
bld.env["CPPPATH_V8"] = "deps/v8/include"
bld.env_of_name('default')["STATICLIB_V8"] = "v8"
bld.env_of_name('default')["LINKFLAGS_V8"] = ["-pthread"]
Expand All @@ -244,6 +245,7 @@ def build_v8(bld):
v8_debug = v8.clone("debug")
v8_debug.rule = v8_cmd(bld, "debug")
v8_debug.target = bld.env["staticlib_PATTERN"] % "v8_g"
v8_debug.uselib = "EXECINFO"
bld.env_of_name('debug')["STATICLIB_V8"] = "v8_g"
bld.env_of_name('debug')["LINKFLAGS_V8"] = ["-pthread"]

Expand Down

0 comments on commit 8b62e86

Please sign in to comment.