Send inn-workers mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.isc.org/mailman/listinfo/inn-workers
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 inn-workers digest..."
Today's Topics:
1. Re: Issue with DBM and CURRENT on RHEL/CentOS 6.5? (Julien ?LIE)
2. Re: Issue with DBM and CURRENT on RHEL/CentOS 6.5? (Jesse Rehmer)
----------------------------------------------------------------------
Message: 1
Date: Thu, 12 Dec 2013 21:35:04 +0100
From: Julien ?LIE <[email protected]>
To: "[email protected]" <[email protected]>
Subject: Re: Issue with DBM and CURRENT on RHEL/CentOS 6.5?
Message-ID: <[email protected]>
Content-Type: text/plain; charset=windows-1252; format=flowed
Hi Jesse,
> Adding the include line gets me past the error with ckpasswd.c, but now
> I have another:
>
> gcc -g -O2 -I../include -c auth_krb5.c
> auth_krb5.c:27:22: error: com_err.h: No such file or directory
> make[1]: *** [auth_krb5.o] Error 1
> make[1]: Leaving directory
> `/usr/local/news/src/inn-CURRENT-20131208/authprogs'
> make: *** [all-authprogs] Error 2
>
> [root@nnrp authprogs]# find / -name com_err.h
> /usr/include/et/com_err.h
>
> I would think that "# include <et/com_err.h>" would include this, but it
> seems not.
Yep, that's another issue that needs being fixed in CURRENT.
auth_krb5.c uses:
#ifdef HAVE_ET_COM_ERR_H
# include <et/com_err.h>
#else
# include <com_err.h>
#endif
Does it build fine if you remove the first and the last three lines, so
as to only keep:
# include <et/com_err.h>
?
--
Julien ?LIE
? ? Nous ne connaissons pas leur langue, donc, sous aucun pr?texte
il ne faut parler aux Goths !
? Mais on peut leur taper dessus ? ? (Ast?rix)
------------------------------
Message: 2
Date: Thu, 12 Dec 2013 14:53:52 -0600
From: Jesse Rehmer <[email protected]>
To: Julien ?LIE <[email protected]>
Cc: "[email protected]" <[email protected]>
Subject: Re: Issue with DBM and CURRENT on RHEL/CentOS 6.5?
Message-ID: <[email protected]>
Content-Type: text/plain; charset=windows-1252; format=flowed
Julien ?LIE wrote:
> Hi Jesse,
>
>> Adding the include line gets me past the error with ckpasswd.c, but now
>> I have another:
>>
>> gcc -g -O2 -I../include -c auth_krb5.c
>> auth_krb5.c:27:22: error: com_err.h: No such file or directory
>> make[1]: *** [auth_krb5.o] Error 1
>> make[1]: Leaving directory
>> `/usr/local/news/src/inn-CURRENT-20131208/authprogs'
>> make: *** [all-authprogs] Error 2
>>
>> [root@nnrp authprogs]# find / -name com_err.h
>> /usr/include/et/com_err.h
>>
>> I would think that "# include <et/com_err.h>" would include this, but it
>> seems not.
>
> Yep, that's another issue that needs being fixed in CURRENT.
>
> auth_krb5.c uses:
>
> #ifdef HAVE_ET_COM_ERR_H
> # include <et/com_err.h>
> #else
> # include <com_err.h>
> #endif
>
> Does it build fine if you remove the first and the last three lines,
> so as to only keep:
>
> # include <et/com_err.h>
>
> ?
>
The build completes if I remove those lines.
------------------------------
_______________________________________________
inn-workers mailing list
[email protected]
https://lists.isc.org/mailman/listinfo/inn-workers
End of inn-workers Digest, Vol 58, Issue 5
******************************************