diff --git a/src/syncterm/bbslist.c b/src/syncterm/bbslist.c
index 575f7b430ccac88d02a16a3f86e03252d37236e5..33385d0be16e3bef4878a32f184259780f86f58c 100644
--- a/src/syncterm/bbslist.c
+++ b/src/syncterm/bbslist.c
@@ -3983,6 +3983,7 @@ show_bbslist(char *current, int connected)
 						         "    %s OSS\n"
 						         "    %s SDL\n"
 						         "    %s ALSA\n"
+						         "    %s WaveOut\n"
 						         "    %s PortAudio\n"
 						         "    %s PulseAudio\n",
 #ifdef WITHOUT_CRYPTLIB
@@ -4045,6 +4046,11 @@ show_bbslist(char *current, int connected)
 #else
 						         "[ ]",
 #endif
+#ifdef _WIN32
+						         "[`\xFB`]",
+#else
+						         "[ ]",
+#endif
 #ifdef WITH_PORTAUDIO
 						         "[`\xFB`]",
 #else
diff --git a/src/xpdev/Common.gmake b/src/xpdev/Common.gmake
index 5047ea4a7a14464cee65faec98460a07409c5df4..45592787359602f0b14c5d53674de56229d835c6 100644
--- a/src/xpdev/Common.gmake
+++ b/src/xpdev/Common.gmake
@@ -205,11 +205,13 @@ endif
 
 ifndef WITHOUT_PORTAUDIO
  PORTAUDIO_PATH ?=      $(shell if [ -f /usr/local/include/portaudio.h ]; then echo /usr/local ; elif [ -f /usr/include/portaudio.h ] ; then echo /usr ; else echo NOTFOUND ; fi)
- ifneq ($(PORTAUDIO_PATH),NOTFOUND)
-  XPDEV_CFLAGS += -DWITH_PORTAUDIO
-  ifeq ($(os),linux)
-   XPDEV-MT_LIBS += -ldl
-   XPDEV_LIBS += -ldl
+ ifndef win
+  ifneq ($(PORTAUDIO_PATH),NOTFOUND)
+   XPDEV_CFLAGS += -DWITH_PORTAUDIO
+   ifeq ($(os),linux)
+    XPDEV-MT_LIBS += -ldl
+    XPDEV_LIBS += -ldl
+   endif
   endif
  endif
 endif
@@ -226,12 +228,14 @@ ifndef win
 endif
 
 ifndef NO_PULSEAUDIO
- ifeq ($(shell command -v pkg-config > /dev/null && pkg-config --exists libpulse-simple && echo 'YES'),YES)
-  XPDEV-CFLAGS += -DWITH_PULSEAUDIO `pkg-config libpulse-simple --cflags`
-  XPDEV-MT_CFLAGS += -DWITH_PULSEAUDIO `pkg-config libpulse-simple --cflags`
-  ifeq ($(os),linux)
-   XPDEV-MT_LIBS += -ldl
-   XPDEV_LIBS += -ldl
+ ifndef win
+  ifeq ($(shell command -v pkg-config > /dev/null && pkg-config --exists libpulse-simple && echo 'YES'),YES)
+   XPDEV-CFLAGS += -DWITH_PULSEAUDIO `pkg-config libpulse-simple --cflags`
+   XPDEV-MT_CFLAGS += -DWITH_PULSEAUDIO `pkg-config libpulse-simple --cflags`
+   ifeq ($(os),linux)
+    XPDEV-MT_LIBS += -ldl
+    XPDEV_LIBS += -ldl
+   endif
   endif
  endif
 endif