From c3be7fcdecaa7908f2bbb2fa347bca7ca6357b65 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Sun, 31 Jul 2005 12:08:58 +0000 Subject: [PATCH] compilation fix for people without sdl_net.(vasyl) Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2258 --- src/hardware/serialport/softmodem.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/hardware/serialport/softmodem.h b/src/hardware/serialport/softmodem.h index 80ce6134..ab0ad83c 100644 --- a/src/hardware/serialport/softmodem.h +++ b/src/hardware/serialport/softmodem.h @@ -16,12 +16,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: softmodem.h,v 1.1 2005-07-30 14:41:31 qbix79 Exp $ */ +/* $Id: softmodem.h,v 1.2 2005-07-31 12:08:58 qbix79 Exp $ */ #ifndef DOSBOX_SERIALMODEM_H #define DOSBOX_SERIALMODEM_H #include "dosbox.h" +#if C_MODEM #include "SDL_net.h" #include "serialport.h" @@ -239,5 +240,5 @@ protected: char str[256]; } dial; }; - +#endif #endif