changeset 18920:0726ee266c39

-rtsp-port and -rtsp-destination need to be #ifdef MPLAYER_NETWORK. patch by Gianluigi Tiesi, mplayer**at**netfarm**dot**it
author diego
date Thu, 06 Jul 2006 12:51:52 +0000
parents a75437e12234
children f40eeaf450dd
files cfg-common.h
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/cfg-common.h	Thu Jul 06 09:21:01 2006 +0000
+++ b/cfg-common.h	Thu Jul 06 12:51:52 2006 +0000
@@ -73,8 +73,13 @@
 #else
 	{"rtsp-stream-over-tcp", "RTSP support requires the \"LIVE555 Streaming Media\" libraries.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
 #endif
+#ifdef MPLAYER_NETWORK
         {"rtsp-port", &rtsp_port, CONF_TYPE_INT, CONF_RANGE, -1, 65535, NULL},	
         {"rtsp-destination", &rtsp_destination, CONF_TYPE_STRING, CONF_MIN, 0, 0, NULL},
+#else
+        {"rtsp-port", "MPlayer was compiled without network support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+        {"rtsp-destination", "MPlayer was compiled without network support.\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
+#endif
   
 // ------------------------- demuxer options --------------------