diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-10-17 09:25:37 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-10-17 09:25:37 +0000 |
commit | 2030dba6939cd34c3857b0c8a92b49f231ce3e8e (patch) | |
tree | 7f48531e8c28d97b9f37826f671ea04b37a37116 /config.h.win32 | |
parent | 9760c91217a3e84fa5c40a6fb64871a578f7d0e0 (diff) | |
download | wireshark-2030dba6939cd34c3857b0c8a92b49f231ce3e8e.tar.gz wireshark-2030dba6939cd34c3857b0c8a92b49f231ce3e8e.tar.bz2 wireshark-2030dba6939cd34c3857b0c8a92b49f231ce3e8e.zip |
Make the top-level "config.h.win32" more closely resemble the top-level
"config.h", and update it to include stuff added to "config.h" and
remove stuff removed from "config.h".
Give libethereal a "config.h.win32" and make its "Makefile.nmake" file
copy it to "config.h".
svn path=/trunk/; revision=2504
Diffstat (limited to 'config.h.win32')
-rw-r--r-- | config.h.win32 | 62 |
1 files changed, 48 insertions, 14 deletions
diff --git a/config.h.win32 b/config.h.win32 index 677bc1ed6c..e7760b280f 100644 --- a/config.h.win32 +++ b/config.h.win32 @@ -1,4 +1,4 @@ -/* $Id: config.h.win32,v 1.17 2000/09/14 10:02:59 gram Exp $ */ +/* $Id: config.h.win32,v 1.18 2000/10/17 09:25:36 guy Exp $ */ /* config.h.win32 Generated manually. :-) */ /* config.h. Generated automatically by configure. */ /* config.h.in. Generated automatically from configure.in by autoheader. */ @@ -10,13 +10,15 @@ byte first (like Motorola and SPARC, unlike Intel and VAX). */ /* #undef WORDS_BIGENDIAN */ +/* Define if lex declares yytext as a char * by default, not a char[]. */ +/* #undef YYTEXT_POINTER */ + +#define HAVE_PLUGINS 1 +#define PLUGINS_NEED_ADDRESS_TABLE 1 + /* #undef HAVE_SA_LEN */ #define DATAFILE_DIR "/usr/local/etc" -#define PLUGIN_DIR "/usr/local/lib/ethereal/plugins/0.8.12" - -/* Version number of package */ -#define VERSION "0.8.12" /* #undef NEED_SNPRINTF_H */ @@ -24,21 +26,47 @@ #define NEED_MKSTEMP 1 +#define HAVE_LIBPCAP 1 + +/* Define if you have the gethostbyname2 function. */ +/* #undef HAVE_GETHOSTBYNAME2 */ + +/* Define if you have the getprotobynumber function. */ +/* #undef HAVE_GETPROTOBYNUMBER */ + +/* Define if you have the <arpa/inet.h> header file. */ +/* #undef HAVE_ARPA_INET_H */ + +/* Define if you have the <dlfcn.h> header file. */ +/* #undef HAVE_DLFCN_H */ + /* Define if you have the <fcntl.h> header file. */ #define HAVE_FCNTL_H 1 +/* Define if you have the <netdb.h> header file. */ +/* #undef HAVE_NETDB_H */ + /* Define if you have the <netinet/in.h> header file. */ /* #define HAVE_NETINET_IN_H 1 */ /* Define if you have the <snmp/snmp.h> header file. */ /* #undef HAVE_SNMP_SNMP_H */ +/* Define if you have the <snmp/version.h> header file. */ +/* #undef HAVE_SNMP_VERSION_H */ + /* Define if you have the <stdarg.h> header file. */ #define HAVE_STDARG_H 1 +/* Define if you have the <stddef.h> header file. */ +/* #undef HAVE_STDDEF_H */ + /* Define if you have the <sys/ioctl.h> header file. */ /* #undef HAVE_SYS_IOCTL_H */ +/* Define if you have the <sys/socket.h> header file. */ +/* #undef HAVE_SYS_SOCKET_H */ + /* Define if you have the <sys/sockio.h> header file. */ /* #undef HAVE_SYS_SOCKIO_H */ @@ -47,26 +75,25 @@ /* Define if you have the <sys/time.h> header file. */ /* #define HAVE_SYS_TIME_H 1 */ -/* #undef HAVE_DIRENT_H 1 */ /* Define if you have the <sys/types.h> header file. */ #define HAVE_SYS_TYPES_H 1 +/* Define if you have the <sys/wait.h> header file. */ +/* #undef HAVE_SYS_WAIT_H */ + /* Define if you have the <ucd-snmp/snmp.h> header file. */ /* #undef HAVE_UCD_SNMP_SNMP_H */ +/* Define if you have the <ucd-snmp/version.h> header file. */ +/* #undef HAVE_UCD_SNMP_VERSION_H */ + /* Define if you have the <unistd.h> header file. */ /* #define HAVE_UNISTD_H 1 */ -/* Define if you have the pcap library (-lpcap). */ -#define HAVE_LIBPCAP 1 - /* Define if you have the z library (-lz). */ /*#define HAVE_LIBZ 1*/ -/* Name of package */ -#define PACKAGE "ethereal" - #ifndef WIN32 #define WIN32 1 #endif @@ -91,5 +118,12 @@ /*#define ZLIB_DLL 1 #define _WINDOWS 1*/ -#define HAVE_PLUGINS 1 -#define PLUGINS_NEED_ADDRESS_TABLE 1 +/* Name of package */ +#define PACKAGE "ethereal" + +/* Version number of package */ +#define VERSION "0.8.12" + +/* Plugin installation directory */ +#define PLUGIN_DIR "/usr/local/lib/ethereal/plugins/0.8.12" + |