Remove hpversion.h from repository
This patch removes hpversion.h from the repository, this also untangles a lot of ifdef mess. This closes bug CDExc19524.
This commit is contained in:
@@ -106,25 +106,18 @@ extern int errno;
|
||||
#define Time_t time_t
|
||||
#endif
|
||||
|
||||
#ifndef DONT_USE_DES
|
||||
# ifndef USE_CRYPT
|
||||
# if defined(AIXV3) || defined(hpux) || defined(__FreeBSD__)
|
||||
# define USE_CRYPT
|
||||
# endif
|
||||
# ifdef __OpenBSD__
|
||||
# define DONT_USE_DES
|
||||
# endif
|
||||
# ifdef sun
|
||||
# define USE_CRYPT
|
||||
# if (OSMAJORVERSION >= 4)
|
||||
/* avoid strange sun crypt hackery */
|
||||
# define crypt _crypt
|
||||
# endif
|
||||
#if !defined(DONT_USE_DES) && !defined(USE_CRYPT)
|
||||
# if defined(AIXV3) || defined(hpux) || defined(__FreeBSD__)
|
||||
# define USE_CRYPT
|
||||
# elif defined(__OpenBSD__)
|
||||
# define DONT_USE_DES
|
||||
# elif defined(sun)
|
||||
# define USE_CRYPT
|
||||
# if (OSMAJORVERSION >= 4)
|
||||
/* avoid strange sun crypt hackery */
|
||||
# define crypt _crypt
|
||||
# endif
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if !defined (DONT_USE_DES) && !defined (USE_CRYPT)
|
||||
# define USE_ENCRYPT
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user