added genericsocket to -V

This commit is contained in:
Gerhard Rieger 2008-09-24 16:15:11 +02:00
parent 084726e981
commit 3684e5daa0
1 changed files with 5 additions and 0 deletions

View File

@ -428,6 +428,11 @@ void socat_version(FILE *fd) {
#else
fputs(" #undef WITH_RAWIP\n", fd);
#endif
#ifdef WITH_GENERICSOCKET
fprintf(fd, " #define WITH_GENERICSOCKET %d\n", WITH_GENERICSOCKET);
#else
fputs(" #undef WITH_GENERICSOCKET\n", fd);
#endif
#ifdef WITH_INTERFACE
fprintf(fd, " #define WITH_INTERFACE %d\n", WITH_INTERFACE);
#else