Skip to content
This repository has been archived by the owner on Nov 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request tj#12 from miksago/master
Browse files Browse the repository at this point in the history
Fixed wscript to have discount/markdown as a mandatory dependency.
  • Loading branch information
tj committed Aug 11, 2011
2 parents da7114b + 29ed938 commit 6fa77c6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wscript
Expand Up @@ -8,10 +8,13 @@ def set_options(opt):
def configure(conf):
conf.check_tool('compiler_cxx')
conf.check_tool('node_addon')
conf.check_cfg(atleast_pkgconfig_version='0.0.0', mandatory=True, errmsg='pkg-config was not found')
conf.check(
lib = 'markdown',
libpath = ['/usr/lib', '/usr/local/lib'],
uselib_store = 'DISCOUNT'
uselib_store = 'DISCOUNT',
mandatory = True,
errmsg='markdown was not found (on homebrew this is "discount")'
)

def build(bld):
Expand Down

0 comments on commit 6fa77c6

Please sign in to comment.