File: aplog-use-module.patch

package info (click to toggle)
apache-mod-auth-ntlm-winbind 0.0.0.lorikeet%2Bsvn%2B801-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 348 kB
  • sloc: sh: 2,774; ansic: 761; makefile: 67
file content (20 lines) | stat: -rw-r--r-- 620 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Use APLOG_USE_MODULE if available
 As recommended by: http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html
Author: Olly Betts <olly@survex.com>
Origin: debian
Forwarded: no
Last-Update: 2012-05-11

--- apache-mod-auth-ntlm-winbind-0.0.0.lorikeet+svn+801.orig/mod_auth_ntlm_winbind.c
+++ apache-mod-auth-ntlm-winbind-0.0.0.lorikeet+svn+801/mod_auth_ntlm_winbind.c
@@ -50,6 +50,10 @@
 #include "util_script.h" /* for ap_call_exec */
 #include <assert.h>
 
+#ifdef APLOG_USE_MODULE
+APLOG_USE_MODULE(auth_ntlm_winbind);
+#endif
+
 #ifdef APACHE2
 #include "http_request.h"
 #include "http_connection.h"