- (dtucker) [auth2-pubkey.c] wrap paths.h in an ifdef for platforms that
   don't have it.  Spotted by tim@.
diff --git a/auth2-pubkey.c b/auth2-pubkey.c
index 6a62170..f9cc6c2 100644
--- a/auth2-pubkey.c
+++ b/auth2-pubkey.c
@@ -31,7 +31,9 @@
 
 #include <errno.h>
 #include <fcntl.h>
-#include <paths.h>
+#ifdef HAVE_PATHS_H
+# include <paths.h>
+#endif
 #include <pwd.h>
 #include <signal.h>
 #include <stdio.h>