I am trying to set up babel on a solaris 10 box and when I run make it errors out on asprintf(). Here is the output:
Undefined first referenced
symbol in file
asprintf babel_server.o
ld: fatal: Symbol referencing errors. No output written to babelserver
collect2: ld returned 1 exit status
*** Error code 1
As far as I now Solaris does not have support for asprintf() or vasprintf(). Am I missing something? Or do I need to get some other libs installed? Thanks.
Mmm insteresting. asprintf() is a GLIB standard function for GNU/Linux systems, actually I don't know how to use it in Solaris. Alternatives are patching code for use a printf function (with a previos malloc and strcpy code) or install GLIB in Solaris.
One question, why use Solaris and not Linux for Server ?. Do you have MySQL on Solaris too ?