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

Commit bbb556c

Browse files
author
R. Tyler Ballance
committedJul 12, 2009
Allow for building in yajl with the module instead of linking a 'system' one
1 parent 2ed7c49 commit bbb556c

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed
 

‎includes/yajl

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../yajl/src/api

‎setup.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,18 @@
66
'yajl.c',
77
'encoder.c',
88
'decoder.c',
9+
'yajl/src/yajl_alloc.c',
10+
'yajl/src/yajl_buf.c',
11+
'yajl/src/yajl.c',
12+
'yajl/src/yajl_encode.c',
13+
'yajl/src/yajl_gen.c',
14+
'yajl/src/yajl_lex.c',
15+
'yajl/src/yajl_parser.c',
916
],
10-
libraries=['yajl'],
11-
extra_compile_args=['-Wall', '-Werror', '-I../src/api']),
12-
]
17+
include_dirs=['includes/'],
18+
extra_compile_args=['-Wall', '-Werror']),
19+
]
20+
1321

1422
packages = ['yajl']
1523

0 commit comments

Comments
 (0)
This repository has been archived.