From c7699b019999a7bdc6f881e6d79563dc58c1b8e2 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Wed, 29 Nov 2017 22:21:55 +0100 Subject: [PATCH] Source file skeleton. Adjustments to include dependency libraries. --- configure.ac | 4 ++- src/Makefile.am | 4 +-- src/mod_authn_zakauthe.c | 59 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 64 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 1dab542..ae1c60b 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,9 @@ if test x"$APXS2" != "xno" ; then fi # Checks for libraries. -PKG_CHECK_MODULES(MOD_AUTHN_ZAKAUTHE, [libzakauthe]) +PKG_CHECK_MODULES(MOD_AUTHN_ZAKAUTHE, [apr-1 + apr-util-1 + libzakauthe]) AC_SUBST(MOD_AUTHN_ZAKAUTHE_CFLAGS) AC_SUBST(MOD_AUTHN_ZAKAUTHE_LIBS) diff --git a/src/Makefile.am b/src/Makefile.am index 1d673c3..e26c0ce 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,11 +2,11 @@ all-local: module module: mod_authn_zakauthe.c if test "$(srcdir)" != "."; then $(CP) $(srcdir)/mod_authn_zakauthe.c .; fi - $(APXS) -c -D_REENTRANT `echo $(GCC_WARN_FLAGS) | sed 's/ -/ -Wc,-/g'` mod_authn_zakauthe.c + $(APXS) -c `echo $(MOD_AUTHN_ZAKAUTHE_CFLAGS) $(MOD_AUTHN_ZAKAUTHE_LIBS) | sed 's/-pthread//g'` mod_authn_zakauthe.c install-exec-local: module mkdir -p "$(DESTDIR)`$(APXS) -q LIBEXECDIR`" - $(APXS) -S LIBEXECDIR="$(DESTDIR)`$(APXS) -q LIBEXECDIR`" -i mod_authn_zakauthe.la + $(APXS) -S LIBEXECDIR="$(DESTDIR)`$(APXS) -q LIBEXECDIR`" -i `echo $(MOD_AUTHN_ZAKAUTHE_CFLAGS) $(MOD_AUTHN_ZAKAUTHE_LIBS) | sed 's/-pthread//g'` mod_authn_zakauthe.la install-exec-hook: test -z "$(STRIP)" || $(STRIP) $(DESTDIR)`$(APXS) -q LIBEXECDIR`/mod_authn_zaktueh.so diff --git a/src/mod_authn_zakauthe.c b/src/mod_authn_zakauthe.c index e69de29..991de25 100644 --- a/src/mod_authn_zakauthe.c +++ b/src/mod_authn_zakauthe.c @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2017 Andrea Zagli + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#include "apr_strings.h" + +#include "ap_config.h" +#include "ap_provider.h" +#include "httpd.h" +#include "http_config.h" +#include "http_core.h" +#include "http_log.h" +#include "http_protocol.h" +#include "http_request.h" + +#include "mod_auth.h" + +#ifdef HAVE_CONFIG_H + #include +#endif + +#include + +static int +example_handler (request_rec *r) +{ +} + +static void +register_hooks (apr_pool_t *pool) +{ + /* Create a hook in the request handler, so we get called when a request arrives */ + ap_hook_handler(example_handler, NULL, NULL, APR_HOOK_LAST); +} + +AP_DECLARE_MODULE(authn_zakauthe) = +{ + STANDARD20_MODULE_STUFF, + NULL, /* dir config creater */ + NULL, /* dir merger --- default is to override */ + NULL, /* server config */ + NULL, /* merge server config */ + NULL, /* command apr_table_t */ + register_hooks /* register hooks */ +}; -- 2.49.0