This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU gsasl".
http://git.savannah.gnu.org/cgit/gsasl.git/commit/?id=2af8ffb4b6739d10734c080a51c136c7c29ae0d5 The branch, master has been updated via 2af8ffb4b6739d10734c080a51c136c7c29ae0d5 (commit) from 4c050955c6f6e3e8dda118fe5e7027e8d11ef76a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2af8ffb4b6739d10734c080a51c136c7c29ae0d5 Author: Simon Josefsson <[email protected]> Date: Tue Apr 3 09:44:41 2012 +0200 Fix build errors. Use -no-install for examples. ----------------------------------------------------------------------- Summary of changes: examples/openid20/Makefile.am | 1 + examples/saml20/Makefile.am | 1 + examples/saml20/smtp-server-saml20.c | 3 ++- 3 files changed, 4 insertions(+), 1 deletions(-) diff --git a/examples/openid20/Makefile.am b/examples/openid20/Makefile.am index f93c55c..ec3844a 100644 --- a/examples/openid20/Makefile.am +++ b/examples/openid20/Makefile.am @@ -18,6 +18,7 @@ AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS) AM_CPPFLAGS = -I$(top_srcdir)/lib/src -I$(top_builddir)/lib/src +AM_LDFLAGS = -no-install LDADD = $(top_builddir)/lib/src/libgsasl.la EXTRA_DIST = README gsasl-openid20-redirect.php gsasl-openid20-rp.php diff --git a/examples/saml20/Makefile.am b/examples/saml20/Makefile.am index 3d05a0d..408e0fe 100644 --- a/examples/saml20/Makefile.am +++ b/examples/saml20/Makefile.am @@ -19,6 +19,7 @@ AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS) AM_CPPFLAGS = -I$(top_srcdir)/lib/src -I$(top_builddir)/lib/src \ $(LASSO_CFLAGS) +AM_LDFLAGS = -no-install LDADD = $(top_builddir)/lib/src/libgsasl.la $(LASSO_LIBS) EXTRA_DIST = README diff --git a/examples/saml20/smtp-server-saml20.c b/examples/saml20/smtp-server-saml20.c index e825319..5c78a85 100644 --- a/examples/saml20/smtp-server-saml20.c +++ b/examples/saml20/smtp-server-saml20.c @@ -76,7 +76,8 @@ callback (Gsasl * ctx, Gsasl_session * sctx, Gsasl_property prop) || (idp[n] >= 'A' && idp[n] <= 'Z') || (idp[n] >= '0' && idp[n] <= '9') || idp[n] == '.')) { - printf ("Cannot handle identifier (%ld): %s\n", n, idp); + printf ("Cannot handle identifier (%ld): %s\n", + (unsigned long) n, idp); return GSASL_AUTHENTICATION_ERROR; } hooks/post-receive -- GNU gsasl _______________________________________________ Gsasl-commit mailing list [email protected] https://lists.gnu.org/mailman/listinfo/gsasl-commit
