diff options
author | Douglas Lankshear <doug@lankshear.net> | 1998-07-22 01:21:10 -0700 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-22 17:11:55 +0000 |
commit | ff95b63ed9e9faabe3ba15c12a39c2c97a712ee9 (patch) | |
tree | d0e1b48c7548b219ab2f45e04f8771df7dbc3abc /win32/win32iop.h | |
parent | e9ee4811e9cb1e626e3ac1b3b595de5ded0d4121 (diff) | |
download | perl-ff95b63ed9e9faabe3ba15c12a39c2c97a712ee9.tar.gz |
support optional crypt() with PERL_OBJECT
Message-Id: <000701bdb584$5b57c070$a32fa8c0@tau.Active>
Subject: [PATCH 5.005 maybe] for crypt with PERL_OBJECT
p4raw-id: //depot/perl@1641
Diffstat (limited to 'win32/win32iop.h')
-rw-r--r-- | win32/win32iop.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32iop.h b/win32/win32iop.h index cf2bd75db5..12fe63e38f 100644 --- a/win32/win32iop.h +++ b/win32/win32iop.h @@ -127,7 +127,7 @@ DllExport int win32_wait(int *status); DllExport int win32_waitpid(int pid, int *status, int flags); DllExport int win32_kill(int pid, int sig); -#ifdef HAVE_DES_FCRYPT +#if defined(HAVE_DES_FCRYPT) || defined(PERL_OBJECT) DllExport char * win32_crypt(const char *txt, const char *salt); #endif |