2009-01-20

 

Compiling mydns on 64bit platform (Linux)

MyDNS is a very small yet cool DNS server running of a MySQL back-end. To compile it on 64bit Centos I just had to do:

$ ./configure --with-mysql-lib=/usr/lib64/mysql/ --with-zlib=/usr/lib64/


This was purely to find the required libraries.

After that the rest of the build process works as documented.

Comments:
Couldn't compile MyDNS on Ubuntu server 12.04 64bit. Googled "mydns compile 64". This article came up as number 1.

Slightly modified your command to use the Ubuntu 64 bit lib locations to give the following:

./configure --with-mysql-lib=/usr/lib/x86_64-linux-gnu/ --with-zlib=/usr/lib/x86_64-linux-gnu/

Worked like a charm. Thanks.
 
Post a Comment

<< Home

This page is powered by Blogger. Isn't yours?