Im trying to compile CommonC++ under the IRIX platform.
It seems that some stuff is not configured right for that specific Platform.
Is IRIX a supported platform?
The first error is:
Making all in posix
/bin/sh ../libtool --mode=compile c++ -DHAVE_CONFIG_H -I. -I. -I. -I../posix -g -O2 -D_GNU_SOURCE -D_REENTRANT -D_THREAD_SAFE -c inaddr.cpp
mkdir .libs
c++ -DHAVE_CONFIG_H -I. -I. -I. -I../posix -g -O2 -D_GNU_SOURCE -D_REENTRANT -D_THREAD_SAFE -c -DPIC inaddr.cpp -o .libs/inaddr.lo
In file included from config.h:544,
from inaddr.cpp:41:
/usr/include/netinet/in_systm.h:34: syntax error before `;'
inaddr.cpp: In method `bool cc_InetAddress::setIPAddress(const char *)':
inaddr.cpp:220: implicit declaration of function `int inet_aton(...)'
*** Error code 1 (bu21)
*** Error code 1 (bu21)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2001-05-10
Hi, it seems that inet_aton is not
declared where it should be. Look for them
through man or grepping /usr/include/; it must
be somewhere (or at least it should be, since it
is a classical BSD function). If you find it,
try to patch adding the #include; if it works,
it could be added to autoconf checks. Good luck!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Im trying to compile CommonC++ under the IRIX platform.
It seems that some stuff is not configured right for that specific Platform.
Is IRIX a supported platform?
The first error is:
Making all in posix
/bin/sh ../libtool --mode=compile c++ -DHAVE_CONFIG_H -I. -I. -I. -I../posix -g -O2 -D_GNU_SOURCE -D_REENTRANT -D_THREAD_SAFE -c inaddr.cpp
mkdir .libs
c++ -DHAVE_CONFIG_H -I. -I. -I. -I../posix -g -O2 -D_GNU_SOURCE -D_REENTRANT -D_THREAD_SAFE -c -DPIC inaddr.cpp -o .libs/inaddr.lo
In file included from config.h:544,
from inaddr.cpp:41:
/usr/include/netinet/in_systm.h:34: syntax error before `;'
inaddr.cpp: In method `bool cc_InetAddress::setIPAddress(const char *)':
inaddr.cpp:220: implicit declaration of function `int inet_aton(...)'
*** Error code 1 (bu21)
*** Error code 1 (bu21)
Hi, it seems that inet_aton is not
declared where it should be. Look for them
through man or grepping /usr/include/; it must
be somewhere (or at least it should be, since it
is a classical BSD function). If you find it,
try to patch adding the #include; if it works,
it could be added to autoconf checks. Good luck!