Send modauthtkt-users mailing list submissions to modauthtkt-users@lists.sourceforge.net
To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/modauthtkt-users or, via email, send a message with subject or body 'help' to [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] When replying, please edit your Subject line so it is more specific than "Re: Contents of modauthtkt-users digest..." Today's Topics: 1. Re: mod_auth_tkt and RequestHeader... (Neil A. Hillard) 2. Re: mod_auth_tkt and RequestHeader... (Neil A. Hillard) 3. ANNOUNCE: mod_auth_tkt 2.0.0rc2 released (Gavin Carr) 4. Successful 2.0.0rc2 tests (Eric Trager) 5. Re: ANNOUNCE: mod_auth_tkt 2.0.0rc2 released (Joost Cassee) 6. Re: Successful 2.0.0rc2 tests (Gavin Carr) 7. Re: ANNOUNCE: mod_auth_tkt 2.0.0rc2 released (Gavin Carr) 8. mod_auth_tkt on Debian with Apache 2 (Andy Cummins) ---------------------------------------------------------------------- Message: 1 Date: Mon, 27 Nov 2006 10:15:37 +0000 From: "Neil A. Hillard" <[EMAIL PROTECTED]> Subject: Re: [modauthtkt-users] mod_auth_tkt and RequestHeader... To: modauthtkt-users@lists.sourceforge.net Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1 Hi, Joost Cassee wrote: > On 24/11/2006 14:21, Joost Cassee wrote: >> On 24/11/2006 14:19, Joost Cassee wrote: >> >>> Negative matching is generally impossible, unless you use perl's >>> negative look-ahead / -behind. See >>> http://www.regular-expressions.info/lookaround.html. >> Just to note: this requires Apache 2.2 and a compile-time option. See >> http://httpd.apache.org/docs/2.2/new_features_2_2.html. > > Aarghh.. no is doesn't: > http://httpd.apache.org/docs/2.0/glossary.html#regex OK, my bad! It appeared to do what I wanted at the time (between spells of bashing my head against the wall). I now have: <Location /login> TKTAuthCookieName sso TKTAuthIgnoreIP on TKTAuthGuestLogin on TKTAuthGuestCookie off TKTAuthGuestUser guest require valid-user </Location> <Location ~ /(?<!login).*> TKTAuthCookieName sso TKTAuthIgnoreIP on TKTAuthLoginURL http://server.domain.co.uk/login/ require valid-user RewriteRule .* - [env=RU:%{LA-U:REMOTE_USER}] RequestHeader set X-PRIVATE-Authenticated-User %{RU}e </Location> I get redirected to /login as long as the URL doesn't begin with /login. That bit appears to be working but the setting of the header doesn't... Any ideas? Many thanks in advance. Neil. -- Neil Hillard [EMAIL PROTECTED] AgustaWestland http://www.whl.co.uk/ Disclaimer: This message does not necessarily reflect the views of Westland Helicopters Ltd. ------------------------------ Message: 2 Date: Mon, 27 Nov 2006 11:55:07 +0000 From: "Neil A. Hillard" <[EMAIL PROTECTED]> Subject: Re: [modauthtkt-users] mod_auth_tkt and RequestHeader... To: modauthtkt-users@lists.sourceforge.net Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1 Hi, >>>> Negative matching is generally impossible, unless you use perl's >>>> negative look-ahead / -behind. See >>>> http://www.regular-expressions.info/lookaround.html. >>> Just to note: this requires Apache 2.2 and a compile-time option. See >>> http://httpd.apache.org/docs/2.2/new_features_2_2.html. >> Aarghh.. no is doesn't: >> http://httpd.apache.org/docs/2.0/glossary.html#regex > > OK, my bad! It appeared to do what I wanted at the time (between spells > of bashing my head against the wall). I now have: > > <Location /login> > TKTAuthCookieName sso > TKTAuthIgnoreIP on > TKTAuthGuestLogin on > TKTAuthGuestCookie off > TKTAuthGuestUser guest > > require valid-user > </Location> > > <Location ~ /(?<!login).*> > TKTAuthCookieName sso > TKTAuthIgnoreIP on > TKTAuthLoginURL http://server.domain.co.uk/login/ > > require valid-user > > RewriteRule .* - [env=RU:%{LA-U:REMOTE_USER}] > RequestHeader set X-PRIVATE-Authenticated-User %{RU}e > </Location> > > I get redirected to /login as long as the URL doesn't begin with /login. > That bit appears to be working but the setting of the header doesn't... > > Any ideas? Many thanks in advance. Apologies for following up my own post but I've now resolved this issue! Turns out that it was a layer 8 problem! Adding a 'RewriteEngine On' to the <Location ~ /(?<!login).*> section has solved the problem! Regards, Neil. -- Neil Hillard [EMAIL PROTECTED] AgustaWestland http://www.whl.co.uk/ Disclaimer: This message does not necessarily reflect the views of Westland Helicopters Ltd. ------------------------------ Message: 3 Date: Wed, 6 Dec 2006 11:04:56 +1100 From: Gavin Carr <[EMAIL PROTECTED]> Subject: [modauthtkt-users] ANNOUNCE: mod_auth_tkt 2.0.0rc2 released To: mod_auth_tkt-users <modauthtkt-users@lists.sourceforge.net> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=us-ascii mod_auth_tkt 2.0.0rc2 has been released, available as usual from: http://www.openfusion.com.au/labs/mod_auth_tkt/ in both tarballs and RHEL4 rpms. Changes include: - TKTAuthGuestFallback support (patch from Philip Garrett) - X-Forwarded-Host support (patches from Charlie Brady) - experimental support for Apache 2.2.x (patch from Joost Cassee) Thanks to the above contributors. The plan is for this to be a real release candidate i.e. only bug fixes will be applied to this tree, and a final 2.0.0 will follow in a couple of weeks. Do please test, particularly if you have an apache 2.2 handy. Please report successes and failures to the list. Cheers, Gavin -- Gavin Carr Open Fusion - Open Source Business Solutions [ Linux - Perl - Apache ] http://www.openfusion.com.au - Fashion is a variable, but style is a constant - Programming Perl ------------------------------ Message: 4 Date: Thu, 07 Dec 2006 09:47:43 -0500 From: Eric Trager <[EMAIL PROTECTED]> Subject: [modauthtkt-users] Successful 2.0.0rc2 tests To: mod_auth_tkt-users <modauthtkt-users@lists.sourceforge.net> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Hi Gavin et al, I successfully tested rc2 on two systems: A Fedora core 5 system with the stock Apache 2.2.2 rpm. I used the apxs included with the httpd-devel-2.2.2 rpm. The other test was on a Fedora core 6 box with the stock Apache 2.2.3 rpm and the 2.2.3 version of httpd-devel. - - - - - Eric Trager trager @ mail dot nih dot gov ------------------------------ Message: 5 Date: Thu, 07 Dec 2006 17:01:09 +0100 From: Joost Cassee <[EMAIL PROTECTED]> Subject: Re: [modauthtkt-users] ANNOUNCE: mod_auth_tkt 2.0.0rc2 released To: mod_auth_tkt-users <modauthtkt-users@lists.sourceforge.net> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="iso-8859-1" On 06/12/2006 01:04, Gavin Carr wrote: > mod_auth_tkt 2.0.0rc2 has been released, available as usual from: > Do please test, particularly if you have an apache 2.2 handy. Please > report successes and failures to the list. Works for me: Apache 2.2 from Debian Etch. (Sorry for not pre-testing, Gavin! Did not have the time.) Regards, Joost -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 542 bytes Desc: OpenPGP digital signature Url : http://sourceforge.net/mailarchive/forum.php?forum=modauthtkt-users/attachments/20061207/a4c84091/attachment.bin ------------------------------ Message: 6 Date: Fri, 8 Dec 2006 09:20:33 +1100 From: Gavin Carr <[EMAIL PROTECTED]> Subject: Re: [modauthtkt-users] Successful 2.0.0rc2 tests To: mod_auth_tkt-users <modauthtkt-users@lists.sourceforge.net> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=us-ascii On Thu, Dec 07, 2006 at 09:47:43AM -0500, Eric Trager wrote: > I successfully tested rc2 on two systems: > > A Fedora core 5 system with the stock Apache 2.2.2 rpm. I used the apxs > included with the httpd-devel-2.2.2 rpm. > > The other test was on a Fedora core 6 box with the stock Apache 2.2.3 > rpm and the 2.2.3 version of httpd-devel. Great, thanks Eric. Cheers, Gavin -- Gavin Carr Open Fusion - Open Source Business Solutions [ Linux - Perl - Apache ] http://www.openfusion.com.au - Fashion is a variable, but style is a constant - Programming Perl ------------------------------ Message: 7 Date: Fri, 8 Dec 2006 09:41:57 +1100 From: Gavin Carr <[EMAIL PROTECTED]> Subject: Re: [modauthtkt-users] ANNOUNCE: mod_auth_tkt 2.0.0rc2 released To: mod_auth_tkt-users <modauthtkt-users@lists.sourceforge.net> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=us-ascii On Thu, Dec 07, 2006 at 05:01:09PM +0100, Joost Cassee wrote: > On 06/12/2006 01:04, Gavin Carr wrote: > > mod_auth_tkt 2.0.0rc2 has been released, available as usual from: > > > Do please test, particularly if you have an apache 2.2 handy. Please > > report successes and failures to the list. > > Works for me: Apache 2.2 from Debian Etch. Great, thanks Joost. > (Sorry for not pre-testing, Gavin! Did not have the time.) No problem. Cheers, Gavin ------------------------------ Message: 8 Date: Mon, 8 Jan 2007 12:14:47 +0000 From: Andy Cummins <[EMAIL PROTECTED]> Subject: [modauthtkt-users] mod_auth_tkt on Debian with Apache 2 To: modauthtkt-users@lists.sourceforge.net Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=US-ASCII; format=flowed Hi I'm trying to use the module with Apache 2 on debian...when I run the configure script I use the following: ./configure --apxs=/usr/bin/apxs --apachever=2 which is fine, no errors there... I then try: make which gives me a whole host of interesting errors which I have no idea where I should even start. I have managed to get through a couple of library errors i.e. the apr headers were in the wrong place. But after sorting this I get some more and also a range of syntax errors from the C file compilation...here's the output I get from make...any help is appreciated...thanks... s15239022:/usr/lib/apache2/modules/mod_auth_tkt-2.0.0rc2# ./configure --apxs=/usr/bin/apxs --apachever=2 s15239022:/usr/lib/apache2/modules/mod_auth_tkt-2.0.0rc2# make cd src && make all make[1]: Entering directory `/usr/lib/apache2/modules/mod_auth_tkt-2.0.0rc2/src' /usr/bin/apxs -c -Wc,"-Wall -ansi " mod_auth_tkt.c gcc -DLINUX=22 -DEAPI -DTARGET="apache" -DHAVE_SET_DUMPABLE -DDB_DBM_HSEARCH=1 -DDEV_RANDOM=/dev/random -DUSE_HSREGEX -O1 -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fPIC -DSHARED_MODULE -I/usr/include/apache-1.3 -Wall -ansi -c mod_auth_tkt.c In file included from /usr/include/sys/sem.h:28, from /usr/include/apache-1.3/ap_config.h:463, from /usr/include/apache-1.3/httpd.h:29, from mod_auth_tkt.c:5: /usr/include/sys/ipc.h:25:3: warning: #warning "Files using this header must be compiled with _SVID_SOURCE or _XOPEN_SOURCE" In file included from mod_auth_tkt.c:19: pcreposix.h:26:1: warning: "REG_ICASE" redefined In file included from /usr/include/apache-1.3/ap_config.h:1136, from /usr/include/apache-1.3/httpd.h:29, from mod_auth_tkt.c:5: /usr/include/apache-1.3/hsregex.h:42:1: warning: this is the location of the previous definition In file included from mod_auth_tkt.c:19: pcreposix.h:27:1: warning: "REG_NEWLINE" redefined In file included from /usr/include/apache-1.3/ap_config.h:1136, from /usr/include/apache-1.3/httpd.h:29, from mod_auth_tkt.c:5: /usr/include/apache-1.3/hsregex.h:44:1: warning: this is the location of the previous definition In file included from mod_auth_tkt.c:19: pcreposix.h:28:1: warning: "REG_NOTBOL" redefined In file included from /usr/include/apache-1.3/ap_config.h:1136, from /usr/include/apache-1.3/httpd.h:29, from mod_auth_tkt.c:5: /usr/include/apache-1.3/hsregex.h:74:1: warning: this is the location of the previous definition In file included from mod_auth_tkt.c:19: pcreposix.h:29:1: warning: "REG_NOTEOL" redefined In file included from /usr/include/apache-1.3/ap_config.h:1136, from /usr/include/apache-1.3/httpd.h:29, from mod_auth_tkt.c:5: /usr/include/apache-1.3/hsregex.h:75:1: warning: this is the location of the previous definition In file included from mod_auth_tkt.c:19: pcreposix.h:34:1: warning: "REG_EXTENDED" redefined In file included from /usr/include/apache-1.3/ap_config.h:1136, from /usr/include/apache-1.3/httpd.h:29, from mod_auth_tkt.c:5: /usr/include/apache-1.3/hsregex.h:41:1: warning: this is the location of the previous definition In file included from mod_auth_tkt.c:19: pcreposix.h:35:1: warning: "REG_NOSUB" redefined In file included from /usr/include/apache-1.3/ap_config.h:1136, from /usr/include/apache-1.3/httpd.h:29, from mod_auth_tkt.c:5: /usr/include/apache-1.3/hsregex.h:43:1: warning: this is the location of the previous definition In file included from mod_auth_tkt.c:19: pcreposix.h:40: error: syntax error before numeric constant pcreposix.h:53: error: syntax error before numeric constant pcreposix.h:66: error: conflicting types for `regex_t' /usr/include/apache-1.3/hsregex.h:31: error: previous declaration of `regex_t' pcreposix.h:70: error: redefinition of `regoff_t' /usr/include/apache-1.3/hsregex.h:25: error: `regoff_t' previously declared here pcreposix.h:75: error: conflicting types for `regmatch_t' /usr/include/apache-1.3/hsregex.h:35: error: previous declaration of `regmatch_t' mod_auth_tkt.c:56: error: syntax error before "apr_array_header_t" mod_auth_tkt.c:56: warning: no semicolon at end of struct or union mod_auth_tkt.c:67: error: syntax error before '}' token mod_auth_tkt.c:67: warning: type defaults to `int' in declaration of `auth_tkt_dir_conf' mod_auth_tkt.c:67: warning: data definition has no type or storage class mod_auth_tkt.c: In function `auth_tkt_version': mod_auth_tkt.c:104: warning: passing arg 1 of `ap_add_version_component' from incompatible pointer type mod_auth_tkt.c:104: error: too many arguments to function `ap_add_version_component' mod_auth_tkt.c:106: warning: passing arg 5 of `ap_log_error' from incompatible pointer type mod_auth_tkt.c: In function `create_auth_tkt_config': mod_auth_tkt.c:115: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:115: error: (Each undeclared identifier is reported only once mod_auth_tkt.c:115: error: for each function it appears in.) mod_auth_tkt.c:124: warning: implicit declaration of function `apr_array_make' mod_auth_tkt.c: In function `merge_auth_tkt_config': mod_auth_tkt.c:145: error: `parent' undeclared (first use in this function) mod_auth_tkt.c:145: error: syntax error before ')' token mod_auth_tkt.c:146: error: `subdir' undeclared (first use in this function) mod_auth_tkt.c:146: error: syntax error before ')' token mod_auth_tkt.c:147: error: `conf' undeclared (first use in this function) mod_auth_tkt.c: At top level: mod_auth_tkt.c:198: error: syntax error before "auth_tkt_module" mod_auth_tkt.c:198: warning: type defaults to `int' in declaration of `auth_tkt_module' mod_auth_tkt.c:198: warning: data definition has no type or storage class mod_auth_tkt.c: In function `convert_to_seconds': mod_auth_tkt.c:235: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c: In function `set_auth_tkt_token': mod_auth_tkt.c:247: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:247: error: syntax error before ')' token mod_auth_tkt.c:249: warning: implicit declaration of function `apr_array_push' mod_auth_tkt.c:249: warning: cast to pointer from integer of different size mod_auth_tkt.c:250: warning: passing arg 1 of `apr_pstrdup' from incompatible pointer type mod_auth_tkt.c: In function `set_auth_tkt_timeout': mod_auth_tkt.c:257: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:257: error: syntax error before ')' token mod_auth_tkt.c: In function `set_auth_tkt_timeout_min': mod_auth_tkt.c:283: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:283: error: syntax error before ')' token mod_auth_tkt.c: In function `set_auth_tkt_timeout_refresh': mod_auth_tkt.c:298: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:298: error: syntax error before ')' token mod_auth_tkt.c: In function `setup_secret': mod_auth_tkt.c:313: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c: In function `set_cookie_expires': mod_auth_tkt.c:322: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:322: error: syntax error before ')' token mod_auth_tkt.c: In function `set_auth_tkt_debug': mod_auth_tkt.c:348: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:348: error: syntax error before ')' token mod_auth_tkt.c: At top level: mod_auth_tkt.c:363: warning: implicit declaration of function `AP_INIT_TAKE1' mod_auth_tkt.c:364: error: syntax error before ')' token mod_auth_tkt.c:365: warning: missing braces around initializer mod_auth_tkt.c:365: warning: (near initialization for `auth_tkt_cmds[0]') mod_auth_tkt.c:365: error: initializer element is not constant mod_auth_tkt.c:365: error: (near initialization for `auth_tkt_cmds[0].name') mod_auth_tkt.c:367: error: syntax error before ')' token mod_auth_tkt.c:368: error: initializer element is not constant mod_auth_tkt.c:368: error: (near initialization for `auth_tkt_cmds[0].func') mod_auth_tkt.c:370: error: syntax error before ')' token mod_auth_tkt.c:371: error: initializer element is not constant mod_auth_tkt.c:371: error: (near initialization for `auth_tkt_cmds[0].cmd_data') mod_auth_tkt.c:373: error: syntax error before ')' token mod_auth_tkt.c:374: error: initializer element is not constant mod_auth_tkt.c:374: error: (near initialization for `auth_tkt_cmds[0].req_override') mod_auth_tkt.c:376: error: syntax error before ')' token mod_auth_tkt.c:377: error: initializer element is not constant mod_auth_tkt.c:377: error: (near initialization for `auth_tkt_cmds[0].args_how') mod_auth_tkt.c:379: error: syntax error before ')' token mod_auth_tkt.c:380: error: initializer element is not constant mod_auth_tkt.c:380: error: (near initialization for `auth_tkt_cmds[0].errmsg') mod_auth_tkt.c:383: warning: implicit declaration of function `AP_INIT_ITERATE' mod_auth_tkt.c:384: error: syntax error before ')' token mod_auth_tkt.c:385: error: initializer element is not constant mod_auth_tkt.c:385: error: (near initialization for `auth_tkt_cmds[0]') mod_auth_tkt.c:385: error: initializer element is not constant mod_auth_tkt.c:385: error: (near initialization for `auth_tkt_cmds[1].name') mod_auth_tkt.c:388: error: syntax error before ')' token mod_auth_tkt.c:389: error: initializer element is not constant mod_auth_tkt.c:389: error: (near initialization for `auth_tkt_cmds[1].func') mod_auth_tkt.c:391: error: syntax error before ')' token mod_auth_tkt.c:392: error: initializer element is not constant mod_auth_tkt.c:392: error: (near initialization for `auth_tkt_cmds[1].cmd_data') mod_auth_tkt.c:393: warning: implicit declaration of function `AP_INIT_FLAG' mod_auth_tkt.c:394: error: syntax error before ')' token mod_auth_tkt.c:395: error: initializer element is not constant mod_auth_tkt.c:395: error: (near initialization for `auth_tkt_cmds[1].req_override') mod_auth_tkt.c:397: error: syntax error before ')' token mod_auth_tkt.c:398: error: initializer element is not constant mod_auth_tkt.c:398: error: (near initialization for `auth_tkt_cmds[1].args_how') mod_auth_tkt.c:400: error: syntax error before ')' token mod_auth_tkt.c:401: error: initializer element is not constant mod_auth_tkt.c:401: error: (near initialization for `auth_tkt_cmds[1].errmsg') mod_auth_tkt.c:403: error: syntax error before ')' token mod_auth_tkt.c:404: error: initializer element is not constant mod_auth_tkt.c:404: error: (near initialization for `auth_tkt_cmds[1]') mod_auth_tkt.c:404: error: initializer element is not constant mod_auth_tkt.c:404: error: (near initialization for `auth_tkt_cmds[2].name') mod_auth_tkt.c:406: error: syntax error before ')' token mod_auth_tkt.c:407: error: initializer element is not constant mod_auth_tkt.c:407: error: (near initialization for `auth_tkt_cmds[2].func') mod_auth_tkt.c:409: error: initializer element is not constant mod_auth_tkt.c:409: error: (near initialization for `auth_tkt_cmds[2].cmd_data') mod_auth_tkt.c:411: error: initializer element is not constant mod_auth_tkt.c:411: error: (near initialization for `auth_tkt_cmds[2].req_override') mod_auth_tkt.c:413: error: initializer element is not constant mod_auth_tkt.c:413: error: (near initialization for `auth_tkt_cmds[2].args_how') mod_auth_tkt.c:415: error: syntax error before ')' token mod_auth_tkt.c:416: error: initializer element is not constant mod_auth_tkt.c:416: error: (near initialization for `auth_tkt_cmds[2].errmsg') mod_auth_tkt.c:418: error: syntax error before ')' token mod_auth_tkt.c:419: error: initializer element is not constant mod_auth_tkt.c:419: error: (near initialization for `auth_tkt_cmds[2]') mod_auth_tkt.c:419: error: initializer element is not constant mod_auth_tkt.c:419: error: (near initialization for `auth_tkt_cmds[3].name') mod_auth_tkt.c:421: error: syntax error before ')' token mod_auth_tkt.c:422: error: initializer element is not constant mod_auth_tkt.c:422: error: (near initialization for `auth_tkt_cmds[3].func') mod_auth_tkt.c:424: error: syntax error before ')' token mod_auth_tkt.c:425: error: initializer element is not constant mod_auth_tkt.c:425: error: (near initialization for `auth_tkt_cmds[3].cmd_data') mod_auth_tkt.c:427: error: syntax error before ')' token mod_auth_tkt.c:428: error: initializer element is not constant mod_auth_tkt.c:428: error: (near initialization for `auth_tkt_cmds[3].req_override') mod_auth_tkt.c:429: warning: braces around scalar initializer mod_auth_tkt.c:429: warning: (near initialization for `auth_tkt_cmds[3].args_how') mod_auth_tkt.c:429: error: incompatible types in initialization mod_auth_tkt.c:429: error: initializer element is not constant mod_auth_tkt.c:429: error: (near initialization for `auth_tkt_cmds[3].args_how') mod_auth_tkt.c:429: error: initializer element is not constant mod_auth_tkt.c:429: error: (near initialization for `auth_tkt_cmds[3].args_how') mod_auth_tkt.c:430: error: initializer element is not constant mod_auth_tkt.c:430: error: (near initialization for `auth_tkt_cmds[3]') mod_auth_tkt.c: In function `parse_ticket': mod_auth_tkt.c:442: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:443: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:462: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c:479: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:483: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c:492: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:494: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c:505: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:508: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c:512: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:517: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c: In function `cookie_match': mod_auth_tkt.c:531: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:532: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:539: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:542: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c:551: warning: passing arg 1 of `apr_pstrdup' from incompatible pointer type mod_auth_tkt.c:552: warning: implicit declaration of function `ap_strchr' mod_auth_tkt.c:552: warning: assignment makes pointer from integer without a cast mod_auth_tkt.c:559: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:567: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c: At top level: mod_auth_tkt.c:574: error: syntax error before "auth_tkt_dir_conf" mod_auth_tkt.c: In function `get_domain': mod_auth_tkt.c:580: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:582: warning: implicit declaration of function `apr_table_get' mod_auth_tkt.c:582: error: `r' undeclared (first use in this function) mod_auth_tkt.c:582: warning: cast to pointer from integer of different size mod_auth_tkt.c:583: warning: cast to pointer from integer of different size mod_auth_tkt.c:586: warning: assignment makes pointer from integer without a cast mod_auth_tkt.c: In function `send_auth_cookie': mod_auth_tkt.c:600: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:601: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:607: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:613: error: `apr_time_exp_t' undeclared (first use in this function) mod_auth_tkt.c:613: error: syntax error before "tms" mod_auth_tkt.c:614: warning: implicit declaration of function `apr_time_exp_gmt' mod_auth_tkt.c:614: error: `tms' undeclared (first use in this function) mod_auth_tkt.c:615: warning: implicit declaration of function `apr_time_from_sec' mod_auth_tkt.c:618: error: `apr_day_snames' undeclared (first use in this function) mod_auth_tkt.c:620: error: `apr_month_snames' undeclared (first use in this function) mod_auth_tkt.c:623: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:629: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:630: warning: implicit declaration of function `apr_table_setn' mod_auth_tkt.c:635: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c: In function `get_url_ticket': mod_auth_tkt.c:643: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:644: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:652: warning: passing arg 1 of `apr_pstrdup' from incompatible pointer type mod_auth_tkt.c:658: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:667: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c: In function `get_cookie_ticket': mod_auth_tkt.c:687: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:688: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:691: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c:695: warning: implicit declaration of function `apr_table_do' mod_auth_tkt.c: In function `ticket_digest': mod_auth_tkt.c:708: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:709: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:710: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:716: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c:717: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c:725: warning: implicit declaration of function `inet_aton' mod_auth_tkt.c:734: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:769: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:781: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c: In function `valid_ticket': mod_auth_tkt.c:796: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:797: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:803: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:811: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:818: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c: In function `check_tokens': mod_auth_tkt.c:830: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:831: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:846: warning: passing arg 1 of `apr_pstrdup' from incompatible pointer type mod_auth_tkt.c:865: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c: In function `refresh_cookie': mod_auth_tkt.c:875: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:876: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:890: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:902: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:907: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c: In function `check_timeout': mod_auth_tkt.c:921: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:922: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:938: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:951: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:959: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:962: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c: In function `query_strip': mod_auth_tkt.c:982: warning: passing arg 1 of `apr_pstrdup' from incompatible pointer type mod_auth_tkt.c:985: warning: assignment makes pointer from integer without a cast mod_auth_tkt.c:994: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c: In function `redirect': mod_auth_tkt.c:1043: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:1044: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:1062: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:1068: warning: assignment makes pointer from integer without a cast mod_auth_tkt.c:1069: warning: assignment makes pointer from integer without a cast mod_auth_tkt.c:1076: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:1078: warning: implicit declaration of function `apr_uri_default_port_for_scheme' mod_auth_tkt.c:1079: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:1080: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:1083: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:1087: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:1092: warning: passing arg 1 of `escape_extras' from incompatible pointer type mod_auth_tkt.c:1098: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:1100: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:1110: warning: passing arg 1 of `apr_psprintf' from incompatible pointer type mod_auth_tkt.c:1115: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c: At top level: mod_auth_tkt.c:1124: error: syntax error before "auth_tkt_dir_conf" mod_auth_tkt.c: In function `get_guest_uid': mod_auth_tkt.c:1138: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:1148: error: `r' undeclared (first use in this function) mod_auth_tkt.c:1149: warning: assignment from incompatible pointer type mod_auth_tkt.c:1150: warning: passing arg 1 of `ap_regexec' from incompatible pointer type mod_auth_tkt.c:1150: warning: passing arg 4 of `ap_regexec' from incompatible pointer type mod_auth_tkt.c:1154: warning: passing arg 5 of `ap_pregsub' from incompatible pointer type mod_auth_tkt.c: At top level: mod_auth_tkt.c:1196: error: syntax error before "auth_tkt_dir_conf" mod_auth_tkt.c: In function `setup_guest': mod_auth_tkt.c:1199: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:1203: error: `tkt' undeclared (first use in this function) mod_auth_tkt.c:1203: error: `r' undeclared (first use in this function) mod_auth_tkt.c: In function `dump_config': mod_auth_tkt.c:1218: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:1219: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:1222: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c: In function `auth_tkt_check': mod_auth_tkt.c:1266: warning: passing arg 1 of `apr_palloc' from incompatible pointer type mod_auth_tkt.c:1267: error: `conf' undeclared (first use in this function) mod_auth_tkt.c:1268: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:1270: error: request for member `module_index' in something not a structure or union mod_auth_tkt.c:1285: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:1291: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:1300: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:1314: warning: passing arg 5 of `ap_log_rerror' from incompatible pointer type mod_auth_tkt.c:1354: error: structure has no member named `user' mod_auth_tkt.c:1355: error: structure has no member named `ap_auth_type' mod_auth_tkt.c:1357: warning: implicit declaration of function `apr_table_set' mod_auth_tkt.c: In function `auth_tkt_register_hooks': mod_auth_tkt.c:1399: warning: implicit declaration of function `ap_hook_post_config' mod_auth_tkt.c:1399: error: `APR_HOOK_MIDDLE' undeclared (first use in this function) mod_auth_tkt.c:1400: warning: implicit declaration of function `ap_hook_check_user_id' mod_auth_tkt.c:1400: error: `APR_HOOK_FIRST' undeclared (first use in this function) mod_auth_tkt.c: At top level: mod_auth_tkt.c:1404: error: syntax error before "auth_tkt_module" mod_auth_tkt.c:1404: warning: type defaults to `int' in declaration of `auth_tkt_module' mod_auth_tkt.c:1405: error: `STANDARD20_MODULE_STUFF' undeclared here (not in a function) mod_auth_tkt.c:1405: error: initializer element is not constant mod_auth_tkt.c:1405: error: (near initialization for `auth_tkt_module') mod_auth_tkt.c:1406: warning: excess elements in scalar initializer mod_auth_tkt.c:1406: warning: (near initialization for `auth_tkt_module') mod_auth_tkt.c:1407: warning: excess elements in scalar initializer mod_auth_tkt.c:1407: warning: (near initialization for `auth_tkt_module') mod_auth_tkt.c:1408: warning: excess elements in scalar initializer mod_auth_tkt.c:1408: warning: (near initialization for `auth_tkt_module') mod_auth_tkt.c:1409: warning: excess elements in scalar initializer mod_auth_tkt.c:1409: warning: (near initialization for `auth_tkt_module') mod_auth_tkt.c:1410: warning: excess elements in scalar initializer mod_auth_tkt.c:1410: warning: (near initialization for `auth_tkt_module') mod_auth_tkt.c:1412: warning: excess elements in scalar initializer mod_auth_tkt.c:1412: warning: (near initialization for `auth_tkt_module') mod_auth_tkt.c:1412: warning: data definition has no type or storage class apxs:Break: Command failed with rc=1 make[1]: *** [mod_auth_tkt.la] Error 1 make[1]: Leaving directory `/usr/lib/apache2/modules/mod_auth_tkt-2.0.0rc2/src' make: *** [all] Error 2 Andy Cummins Cogapp>Technical Department Intern tel: +44 (0)1273 821600 ------------------------------ ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ------------------------------ _______________________________________________ modauthtkt-users mailing list modauthtkt-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/modauthtkt-users End of modauthtkt-users Digest, Vol 7, Issue 1 **********************************************