Post by glueAnybody have any idea what...
Operation not permitted
make: *** [libdb-4.5.la] Error 1"
means?
Well, let's work backword from the message. The first step is to
figure out what 'errno' value generates the message "Operation not
permitted". If you do "man errno" and search the page it shows,
you'll see it corresponds to the errno value EPERM. ln reported that
error when trying to create the symlink, so the next step it to look
at the manpage for the system call that creates symbolic links: "man
symlink". At the bottom of that page we find:
ERRORS
EPERM The filesystem containing newpath does not
support the creation of symbolic links.
So it appears that the filesystem that you did the build on doesn't
support symlinks. Did you do the build on an msdos filesystem?
Philip Guenther