diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/.cvsignore | 1 | ||||
-rw-r--r-- | include/config.h.in | 11 | ||||
-rw-r--r-- | include/defs.h.in | 2 | ||||
-rw-r--r-- | include/mp.h | 2 |
4 files changed, 11 insertions, 5 deletions
diff --git a/include/.cvsignore b/include/.cvsignore index 123a642..bd3c1d5 100644 --- a/include/.cvsignore +++ b/include/.cvsignore @@ -1,3 +1,4 @@ +stamp-h.in stamp-h config.h defs.h diff --git a/include/config.h.in b/include/config.h.in index 4932d0a..a9d3daa 100644 --- a/include/config.h.in +++ b/include/config.h.in @@ -1,9 +1,5 @@ /* include/config.h.in. Generated automatically from configure.in by autoheader. */ -#undef VERSION - -#undef PACKAGE - /* Define if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H @@ -33,3 +29,10 @@ /* Define if you have the socket library (-lsocket). */ #undef HAVE_LIBSOCKET + +/* Name of package */ +#undef PACKAGE + +/* Version number of package */ +#undef VERSION + diff --git a/include/defs.h.in b/include/defs.h.in index 3c6fbce..ce5f68d 100644 --- a/include/defs.h.in +++ b/include/defs.h.in @@ -36,6 +36,8 @@ #define DDEV "@DDEV@" #define DSPEED @DSPEED@ #define DPORT @DPORT@ +#define DDRIVE "@DDRIVE@" +#define DBASEDIR "@DBASEDIR@" /* Debugging */ diff --git a/include/mp.h b/include/mp.h index ae2fe19..125ad80 100644 --- a/include/mp.h +++ b/include/mp.h @@ -122,7 +122,7 @@ extern char *index(), *rindex(), *strdup(); #endif /* mp_main.c */ -#if defined(hpux) || defined(__SVR4) +#if defined(hpux) || defined(__SVR4) && !defined(sun) /* HPUX 10.20 declares int usleep( useconds_t useconds); */ # ifndef HPUX10 extern void usleep __P((int usec)); |