Simple compile fix.

This commit is contained in:
Jan Vidar Krey 2012-10-25 00:44:21 +02:00
parent 470c936e63
commit 99a2307d1d
2 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ target_link_libraries(mod_chat_history utils)
target_link_libraries(mod_chat_only utils)
target_link_libraries(mod_logging utils)
target_link_libraries(mod_topic utils)
target_link_libraries(utils network)
target_link_libraries(mod_welcome network)
target_link_libraries(mod_logging network)

View File

@ -22,7 +22,7 @@
typedef void*(*uhub_thread_start)(void*) ;
#ifdef POSIX_THREADS_SUPPORT
#ifdef POSIX_THREAD_SUPPORT
typedef pthread_t uhub_thread_t;
typedef pthread_mutex_t uhub_mutex_t;
#endif