Hi,
I have found 2 bugs in the configure script on AIX 5.2, when I try to compile the agent with the XLC AIX Compiler. The command line was this :
#./configure --enable-agent --enable-static
The Makefiles generated contain the folowing errors :
1)
INSTALL = /usr/bin/install -c
It's don't work because the option -c of the AIX install program is not the same of the option -c of GNU install program.
It works better with :
INSTALL = /usr/bin/install
2)
LDFLAGS = -static
It's not good with XLC. The correct option for this compiler is -bstatic.
The good line is :
LDFLAGS = -bstatic
I have not enought time to make the correction in the configure script.
VS
I have found 2 bugs in the configure script on AIX 5.2, when I try to compile the agent with the XLC AIX Compiler. The command line was this :
#./configure --enable-agent --enable-static
The Makefiles generated contain the folowing errors :
1)
INSTALL = /usr/bin/install -c
It's don't work because the option -c of the AIX install program is not the same of the option -c of GNU install program.
It works better with :
INSTALL = /usr/bin/install
2)
LDFLAGS = -static
It's not good with XLC. The correct option for this compiler is -bstatic.
The good line is :
LDFLAGS = -bstatic
I have not enought time to make the correction in the configure script.
VS