summaryrefslogtreecommitdiffstats
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* configure: generate version number from git revision between tagged releaseBenjamin Dauvergne2013-05-151-1/+7
| | | | The script git-version-gen is copied from the autoconf project.
* [dist] create Changelog directly from gitBenjamin Dauvergne2011-01-051-2/+12
|
* [Core] add logos to EXTRA_DISTBenjamin Dauvergne2010-07-211-1/+1
|
* [Core] add HACKING to EXTRA_DISTBenjamin Dauvergne2010-07-211-1/+1
|
* [Core] add README.JAVA and README.WIN32 files to EXTRA_DISTBenjamin Dauvergne2010-07-211-1/+2
|
* [Core] add lasso.doap to EXTRA_DISTBenjamin Dauvergne2010-07-211-1/+1
|
* [Makefile] add abi to EXTRA_DISTBenjamin Dauvergne2010-07-211-1/+1
|
* Add a dist-hook to remove .svn directories before taring the distBenjamin Dauvergne2010-02-011-0/+3
|
* Bindings: remove all SWIG bindings and SWIG related filesBenjamin Dauvergne2010-01-251-11/+0
|
* Add autogen.sh and tools to EXTRA_DIST in top Makefile.amBenjamin Dauvergne2010-01-181-1/+1
|
* Docs: change the doc production and lot of other fixesBenjamin Dauvergne2009-08-261-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lasso/Makefile.am: distribute extract_sections.py * docs/references/lasso/lasso.types.in: add missing class (mainly SAML2 and ID-WSF 1.0/2.0) from docs/references/lasso.types.in * lasso/xml/strings.h: add lots of documentation, or at least documentation template to strings constants. * id-ff/login.h: * saml-2.0/assertion_query.h: * xml/xml.h: document undocumented enumerations. * lasso/errors.h: add proper documentation about error codes. * lasso/errors.c: new version of the lasso_strerror function * lasso/build_strerror.py: update the script that generater lasso_strerror from the documentation comments. Remove usage of OFTYPE * lasso/id-ff/session.c: * lasso/id-ff/session.h: remove usage of oftype, prefer gtk-introspection annotations instead. * lasso/id-wsf/data_service.h: * lasso/id-wsf/data_service.c: do the same. Add a script to build lasso-sections.txt * lasso/extract_sections.py: this script parses header files and generated lasso-sections.txt content for GObject class descriptions. Add a template file for the lasso-section.txt file * docs/references/lasso-sections.txt.in: this file serves as a base for the generation of lasso-sections.txt Update docs/references/Makefile.am for generating lasso-sections.txt * docs/references/Makefile.am: always rebuild template, using out of source build directory is too weird without it. call new script extract_sections.py to regenerate lasso-sections.txt if header files changed. Update lasso.sgml file with all missing sections * docs/reference/lasso.sgml: add all missing sections, mainly objects from XML schemas. * docs/reference/lasso-sections.txt: update it * *.c: add section documentation to some files. * lasso/xml/strings.h: fix bad usage or docbook markup
* Core: Use automake-1.11 when possibleBenjamin Dauvergne2009-08-261-0/+1
| | | | | | | | | | | | | | * Makefile.am: use new automake-1.11 silent rules if possible move macros to m4 directory * m4/gtk-doc.m4: add gtk-doc macros. * lasso/Makefile.am: add missing -f flag to rm, to unbreak make distcheck * docs/references/Makefile.am: fix problem between libtool and gtk-doc * autogen.sh: update to autogen.sh from gtk-doc, add support for automake-1.11
* add Makefile.in to MAINTAINERCLEANFILES in every Makefile.amBenjamin Dauvergne2008-05-271-0/+9
|
* use new bindingsFrederic Peters2008-04-291-12/+2
|
* added support for PHP5Frederic Peters2006-12-081-1/+4
|
* try to avoid detecting php5 as a compatible php versionFrederic Peters2006-12-081-3/+3
|
* removed c# dir from distributionFrederic Peters2005-09-291-1/+1
|
* Put swig sub directory before bindings directories.Romain Chantereay2005-02-161-1/+1
|
* reworked a bit documentation build system and added detection of inkscape andFrederic Peters2005-02-101-4/+1
| | | | xsltproc in configure
* Perl module builds and links correctly.Frederic Peters2005-01-021-1/+1
|
* first step to perl bindings (they still need to be compiled and installedFrederic Peters2005-01-021-1/+4
| | | | correctly)
* No more trace of macros if the distribution.Romain Chantereay2004-09-061-1/+1
|
* Now Lasso distribution includes the check macros allowing people to generateRomain Chantereay2004-09-061-1/+1
| | | | | | Makefile and configure without check-xml installed. PS: The distribution is not checked yet.
* Re added win32 directory in the distribution.Romain Chantereay2004-08-231-0/+1
|
* added c# binding; I'm not sure how all of this works and a little programFrederic Peters2004-08-211-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | compiles and run: using System; public class runme { static void Main() { Console.WriteLine("lasso_init"); int rc = lassomod.lasso_init(); Console.WriteLine(String.Format("sortie de lasso_init: {0}", rc)); LassoServer server = new LassoServer( "../tests/data/idp1-la/metadata.xml", "", "../tests/data/idp1-la/private-key-raw.pem", "../tests/data/idp1-la/certificate.pem", lassomod.lassoSignatureMethodRsaSha1); Console.WriteLine("lasso_shutdown"); lassomod.lasso_shutdown(); } }
* TODO was removed dudeFrederic Peters2004-08-191-1/+1
|
* Makefile.am in swig directory so that make clean and make dist works properlyFrederic Peters2004-08-191-1/+2
|
* Include swig Interface file in the source distribution.Romain Chantereay2004-08-191-1/+1
|
* Fixed reference docs make problems:Romain Chantereay2004-08-061-1/+7
| | | | | | | | - Docs did not compile invoking top level make when enabled in configure. - Docs did not compile in references directory with make all. - Docs used the old substitution variables.
* automake/autoconf support for the php bindingChristophe Nowicki2004-08-051-1/+4
|
* Use of conditional subdirectories.Romain Chantereay2004-08-051-1/+8
| | | | This permit automake to automaticaly define a correct DIST_SUBDIRS.
* New Autotools infrastructure.Romain Chantereay2004-08-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | Don't hesitate to report bug (if any). Main changes: - No more, or so few AM_CONDITIONAL. - Binding compilation use AC_SUBST top level Makefile SUBDIRS. - Change order of AM Macro. - Added Macro. - Fix Windows Compilation. - New way to handle version number. - Use of lasso_config.h - more ? I do not remember.
* Don't build win32 anymore. Makefile.am in win32 directory will disapearEmmanuel Raviart2004-08-031-1/+1
| | | | anyway.
* remove generated lasso.pc on make cleanFrederic Peters2004-07-281-1/+4
|
* using check <http://check.sourceforge.net/> for the test suiteFrederic Peters2004-07-241-1/+1
| | | | (--enable-tests=no if you don't want them)
* moved win32 Makefile targets to win32/Makefile.amFrederic Peters2004-07-231-34/+0
|
* En croisant les doigts pour les ^M ne viennent pas tout pourrir...Romain Chantereay2004-07-231-3/+19
| | | | | | | Cleaned DLL process creation. Now we have a import library. The libs are created in the win32/.libs directory. The linkage is done using import libs and no more directly the DLL. The import library is named liblasso.a and no more liblasso.dll.a
* added win32Frederic Peters2004-07-221-1/+1
|
* usage of pkg-config to get library information in configure; automake for theFrederic Peters2004-07-221-3/+2
| | | | python module;
* - Better Win32 stuff organization.Romain Chantereay2004-07-191-2/+2
| | | | | - Added NSIS special directory. - Added icon file to this directory.
* .tar.gz must include lasso.pc.inFrederic Peters2004-07-171-1/+1
|
* Another try to dllwrap.Romain Chantereay2004-07-161-2/+1
|
* Added Cygwin/Windows compilation support.Romain Chantereay2004-07-161-0/+21
| | | | | | | | | | | | | | Now: just: ./autogen --hots=i686-pc-mingw32 make make dll make install dll Of course you will need to install the dependencies libraries in /usr/local in order to compile. And next the DLL in Windows %SYSTEM% directory.
* *** empty log message ***Valery Febvre2004-04-191-3/+3
|
* Added lasso.pc.in to used pkg-configValery Febvre2004-04-181-0/+3
|
* Initial revisionValery Febvre2004-03-231-0/+5