[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [bug-anubis] [QUESTION] How to identify an user via SMTP AUTH
From: |
Sergey Poznyakoff |
Subject: |
Re: [bug-anubis] [QUESTION] How to identify an user via SMTP AUTH |
Date: |
Fri, 14 May 2004 21:40:05 +0300 |
Daniel S. Haischt <address@hidden> wrote:
> Right now I try to re-compile Anubis but I am getting the
> following error message:
>
> /usr/local/include/mysql/my_list.h:27: error: conflicting types for `LIST'
> list.h:25: error: previous declaration of `LIST'
Uff, yes, unfortunately the autors of MySQL chose to use such a widely
used identifier as LIST... We'll certainly have to rename our
identifiers in the future. In the meantime, the attached script should
help you. Please, run it from the distribution main directory, then run
make, as usual.
Regards,
Sergey
for i in src/*.h src/*.c
do
mv $i $i~
sed
's/SCM_LIST/__scm_list__/g;s/LIST/ANUBIS_LIST/g;s/__scm_list__/SCM_LIST/g' $i~
> $i
done