Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Commit

Permalink
Allow for building in yajl with the module instead of linking a 'syst…
Browse files Browse the repository at this point in the history
…em' one
  • Loading branch information
R. Tyler Ballance committed Jul 12, 2009
1 parent 2ed7c49 commit bbb556c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions includes/yajl
14 changes: 11 additions & 3 deletions setup.py
Expand Up @@ -6,10 +6,18 @@
'yajl.c',
'encoder.c',
'decoder.c',
'yajl/src/yajl_alloc.c',
'yajl/src/yajl_buf.c',
'yajl/src/yajl.c',
'yajl/src/yajl_encode.c',
'yajl/src/yajl_gen.c',
'yajl/src/yajl_lex.c',
'yajl/src/yajl_parser.c',
],
libraries=['yajl'],
extra_compile_args=['-Wall', '-Werror', '-I../src/api']),
]
include_dirs=['includes/'],
extra_compile_args=['-Wall', '-Werror']),
]


packages = ['yajl']

Expand Down

0 comments on commit bbb556c

Please sign in to comment.