Re: [Exim] Error when compiling Exim with MySQL

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Kevin Sindhu
Datum:  
To: Philip Hazel
CC: XeCtiC, exim-users
Betreff: Re: [Exim] Error when compiling Exim with MySQL
Hi,

On Wed, Jul 25, 2001 at 04:57:18PM +0100, Philip Hazel penned:
[...]

You are missing zlib in your system. Mysql(when built) linked to
the Zlib library(Which may have changed).

Anyway, remove mysql, install zlib, compile mysql and then come
back to compiling exim.

For check(after compiling mysql), try something like:

-----cut-here----
#include <stdio.h>

int main() { 
    printf ("Hello");
    return 0;
}
-----cut-here----


$gcc -o foo foo.c -L/usr/local/lib -lmysql

If you did build mysql properly, the above should work. If not, well
you are the weakest link;-)

-Kevin

--
Q: What do you get when you cross James Dean with Ronald Reagan?
A: A rebel without a clue.