From d80182fb067de110a09af88969ab9844e11ce21d Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 25 Oct 1999 22:59:18 +0000 Subject: no_comment --- perl-install/c/Makefile.PL | 2 +- perl-install/c/README | 3 +++ perl-install/c/stuff.xs.pm | 5 +++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 perl-install/c/README (limited to 'perl-install/c') diff --git a/perl-install/c/Makefile.PL b/perl-install/c/Makefile.PL index a8d6df7b8..aa4032bb3 100644 --- a/perl-install/c/Makefile.PL +++ b/perl-install/c/Makefile.PL @@ -10,7 +10,7 @@ WriteMakefile( 'NAME' => 'stuff', 'OPTIMIZE' => '-Os', 'MAKEFILE' => 'Makefile_c', - 'OBJECT' => 'stuff.o smp.o', + 'OBJECT' => 'stuff.o smp.o md5.o md5_crypt.o', 'VERSION_FROM' => 'stuff.pm', # finds $VERSION 'LIBS' => [$libs], # e.g., '-lm' 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' diff --git a/perl-install/c/README b/perl-install/c/README new file mode 100644 index 000000000..b5ad1224f --- /dev/null +++ b/perl-install/c/README @@ -0,0 +1,3 @@ +md5.c, md5_crypt.c and md5.h are taken from pam (dir modules/pam_pwdb) + +smp.c is taken from RedHat's install diff --git a/perl-install/c/stuff.xs.pm b/perl-install/c/stuff.xs.pm index db07893a1..c7b0ed82e 100644 --- a/perl-install/c/stuff.xs.pm +++ b/perl-install/c/stuff.xs.pm @@ -109,6 +109,11 @@ setsid() int detectSMP() +char* +crypt_md5(pw, salt) + char *pw + char *salt + unsigned int getpagesize() -- cgit v1.2.1