diff options
author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-04-29 01:56:34 +0000 |
---|---|---|
committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-04-29 01:56:34 +0000 |
commit | 9f5d656f99c9cba9c4a9ccef2bae822b8110bfb4 (patch) | |
tree | 9eb9f62cab10d634b55354ee5b53ffa64266c3fc /python/setup.py | |
parent | e10d97282f31c10f292b5c4d10c89cebf616df58 (diff) | |
download | lasso-9f5d656f99c9cba9c4a9ccef2bae822b8110bfb4.tar.gz lasso-9f5d656f99c9cba9c4a9ccef2bae822b8110bfb4.tar.xz lasso-9f5d656f99c9cba9c4a9ccef2bae822b8110bfb4.zip |
AuthnRequest added
Diffstat (limited to 'python/setup.py')
-rwxr-xr-x | python/setup.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/python/setup.py b/python/setup.py index e8b426e1..255da0b3 100755 --- a/python/setup.py +++ b/python/setup.py @@ -180,14 +180,15 @@ extract_cflags(xmlsec1_cflags) extract_libs(xmlsec1_libs) # FIXME : cflags & libs for lasso -#include_dirs.append('..') -#library_dirs.append('../lasso/.libs') -include_dirs.append('/usr/local/include') -library_dirs.append('/usr/local/lib') +include_dirs.append('..') +library_dirs.append('../lasso/.libs') +#include_dirs.append('/usr/local/include') +#library_dirs.append('/usr/local/lib') libraries.append('lasso') em = Extension("lassomod", sources = ["py_lasso.c", "xml/py_xml.c", + "protocols/py_authn_request.c", "protocols/py_logout_request.c", "protocols/py_logout_response.c", "protocols/py_register_name_identifier_request.c", |