comparison mplayer.c @ 22751:3d83d77f5a6b

Invert logic for HAVE_NO_POSIX_SELECT to HAVE_POSIX_SELECT to be in line with the other HAVE_ #defines throughout the codebase.
author diego
date Wed, 21 Mar 2007 08:24:20 +0000
parents b6b1bd155b58
children c9b6a804f753
comparison
equal deleted inserted replaced
22750:8e7b3260e985 22751:3d83d77f5a6b
2591 mp_input_add_cmd_fd(0,1,NULL,NULL); 2591 mp_input_add_cmd_fd(0,1,NULL,NULL);
2592 #else 2592 #else
2593 mp_input_add_cmd_fd(0,0,mp_input_win32_slave_cmd_func,NULL); 2593 mp_input_add_cmd_fd(0,0,mp_input_win32_slave_cmd_func,NULL);
2594 #endif 2594 #endif
2595 else if(!noconsolecontrols) 2595 else if(!noconsolecontrols)
2596 #ifndef HAVE_NO_POSIX_SELECT 2596 #ifdef HAVE_POSIX_SELECT
2597 mp_input_add_key_fd(0,1,NULL,NULL); 2597 mp_input_add_key_fd(0,1,NULL,NULL);
2598 #else 2598 #else
2599 mp_input_add_key_fd(0,0,NULL,NULL); 2599 mp_input_add_key_fd(0,0,NULL,NULL);
2600 #endif 2600 #endif
2601 2601