freebsd-ports/security/pam_pwdfile/files/patch-bigcrypt.c
Philip M. Gollucci 049bbfcaa6 - Fix runtime to actually work
update the custom Makefile
   add a required header
   fix bigcrypt

PR:             ports/138483
Submitted by:   Ben Schumacher <me@benschumacher.com>
Approved by:    Michael Schout <mschout@gkg.net> (maintainer)
2010-02-12 02:31:09 +00:00

11 lines
317 B
C

--- bigcrypt.c.orig 2009-09-04 18:37:28.000000000 -0500
+++ bigcrypt.c 2009-09-04 18:37:30.000000000 -0500
@@ -25,7 +25,7 @@
*/
#include <string.h>
-#include <security/_pam_macros.h>
+#include "_pam_macros.h"
char *crypt(const char *key, const char *salt);
char *bigcrypt(const char *key, const char *salt);