diff options
| author | Christophe Nowicki <cnowicki@easter-eggs.com> | 2004-08-05 15:26:38 +0000 |
|---|---|---|
| committer | Christophe Nowicki <cnowicki@easter-eggs.com> | 2004-08-05 15:26:38 +0000 |
| commit | b12193e68f822203ac01ea81055aebfb45b82544 (patch) | |
| tree | 01568422b1bc06ebe66eee489611fc2794e380f5 /php/xml | |
| parent | 8ecc49afbd5a6d860d5de1b170ef8e81e6a58fea (diff) | |
| download | lasso-b12193e68f822203ac01ea81055aebfb45b82544.tar.gz lasso-b12193e68f822203ac01ea81055aebfb45b82544.tar.xz lasso-b12193e68f822203ac01ea81055aebfb45b82544.zip | |
automake/autoconf support for the php binding
Diffstat (limited to 'php/xml')
| -rw-r--r-- | php/xml/Makefile.am | 15 | ||||
| -rw-r--r-- | php/xml/lasso_lib_authn_request.c | 4 |
2 files changed, 17 insertions, 2 deletions
diff --git a/php/xml/Makefile.am b/php/xml/Makefile.am new file mode 100644 index 00000000..ff3def57 --- /dev/null +++ b/php/xml/Makefile.am @@ -0,0 +1,15 @@ +INCLUDES = \ + -DPACKAGE=\"@PACKAGE@\" \ + -I$(top_srcdir) \ + -I$(top_srcdir)/lasso \ + $(LASSO_DEFINES) \ + $(LASSO_CFLAGS) \ + $(PHP_INCLUDES) + + +XMLSOURCES = lasso_lib_authn_request.c + +noinst_LIBRARIES = libxml.a +libxml_a_SOURCES = $(XMLSOURCES) + +EXTRA_DIST = diff --git a/php/xml/lasso_lib_authn_request.c b/php/xml/lasso_lib_authn_request.c index 64810e40..69a8a856 100644 --- a/php/xml/lasso_lib_authn_request.c +++ b/php/xml/lasso_lib_authn_request.c @@ -23,13 +23,13 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include "lasso_config.h" #endif #include "php.h" #include "php_ini.h" #include "ext/standard/info.h" -#include "php_lasso.h" +#include "../php_lasso.h" #include "lasso.h" |
