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
+/*
+ * Copyright (C) 2017 Andrea Zagli <azagli@libero.it>
+ *
+ * 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 <config.h>
+#endif
+
+#include <libzakauthe/libzakauthe.h>
+
+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 */
+};