diff options
author | Marco d'Itri <md@linux.it> | 2008-04-05 04:53:26 +0200 |
---|---|---|
committer | Marco d'Itri <md@linux.it> | 2013-03-30 02:31:36 +0100 |
commit | e90424d1793399c4615fd84952a226a681ae1181 (patch) | |
tree | 71e890dbd87b040b9942971bda9903d8324f2e7e /config.h | |
parent | d0c35c4219530ba3cc323ce6a781a3ba58baf872 (diff) | |
download | whois-e90424d1793399c4615fd84952a226a681ae1181.tar.gz |
Imported Debian version 4.7.26v4.7.26
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 27 |
1 files changed, 4 insertions, 23 deletions
@@ -1,6 +1,6 @@ /* Program version */ /* not for the inetutils version */ -#define VERSION "4.7.25" +#define VERSION "4.7.26" /* Configurable features */ @@ -39,6 +39,9 @@ # if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1 # define HAVE_GETADDRINFO # endif +# if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 7 +# define HAVE_SHA_CRYPT +# endif #endif /* Linux, Solaris 5, FreeBSD 5.x. What else? */ @@ -61,25 +64,3 @@ # endif #endif -#ifdef HAVE_GETOPT_LONG -# define GETOPT_LONGISH(c, v, o, l, i) getopt_long(c, v, o, l, i) -#else -# define GETOPT_LONGISH(c, v, o, l, i) getopt(c, v, o) -#endif - - -/* NLS stuff */ -#ifdef ENABLE_NLS -# include <libintl.h> -# include <locale.h> -# define _(a) (gettext (a)) -# ifdef gettext_noop -# define N_(a) gettext_noop (a) -# else -# define N_(a) (a) -# endif -#else -# define _(a) (a) -# define N_(a) a -#endif - |