]> saetta.ns0.it Git - zakauthe/mod_authn/commitdiff
Source file skeleton.
authorAndrea Zagli <azagli@libero.it>
Wed, 29 Nov 2017 21:21:55 +0000 (22:21 +0100)
committerAndrea Zagli <azagli@libero.it>
Wed, 29 Nov 2017 21:21:55 +0000 (22:21 +0100)
Adjustments to include dependency libraries.

configure.ac
src/Makefile.am
src/mod_authn_zakauthe.c

index 1dab5425f5a02d0f72b2a3aad58afa826b373c3f..ae1c60bf1bbbc8fc00af8bb6723c7e76dbd60c10 100644 (file)
@@ -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)
index 1d673c3364632c60293972eda67bd221bb1b6507..e26c0ce6f52f58d49a905b96ed8a55f371aa3623 100644 (file)
@@ -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
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..991de254067e70b8fbb91deee9e5c3b2ea728d45 100644 (file)
@@ -0,0 +1,59 @@
+/*
+ * 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 */
+};