honor USE_POSIX_RUN_LOOP

This commit is contained in:
matthias.ringwald 2010-10-02 10:35:58 +00:00
parent 06c09d29a1
commit d527d738c2

View File

@ -46,9 +46,12 @@
static run_loop_t * the_run_loop = NULL;
extern run_loop_t run_loop_posix;
extern run_loop_t run_loop_embedded;
#ifdef USE_POSIX_RUN_LOOP
extern run_loop_t run_loop_posix;
#endif
#ifdef USE_COCOA_RUN_LOOP
extern run_loop_t run_loop_cocoa;
#endif