Just to recap, with Davids help, here are the steps that I had to take to get augeas 0.5.3 to compile on solaris 10.
1. link to readline header file and libs in /usr/sfw #>ln -s /opt/csw/lib/libreadline.so /usr/sfw/lib/ #>ln -s /opt/csw/include/readline /usr/sfw/include/ #>ln -s /opt/csw/lib/libreadline.so.5 /usr/sfw/lib/ 2. ensure that the dev tools are in the PATH export PATH=$PATH:/usr/ccs/bin/ 3. ./configure 4. Add the following code to src/lens.c char *stpncpy(char *dest, const char *src, size_t n) { char *d = dest; while (d-dest < n && *src) *d++ = *src++; return d; } 5. make 5. make install Augtool now appears to work. I will report any additional issues that I may run into. thanks for all of the help! -Dan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---