From 72323bc6bb3486feaefcfe41cd39c08705393a8b Mon Sep 17 00:00:00 2001 From: Maarten Bosmans Date: Tue, 22 Mar 2011 16:02:23 +0100 Subject: win32: Simplify dl_search_path code And add #include , needed by the code introduced in f7acd4bd. --- src/daemon/daemon-conf.c | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) (limited to 'src') diff --git a/src/daemon/daemon-conf.c b/src/daemon/daemon-conf.c index 9b530a80..59579d92 100644 --- a/src/daemon/daemon-conf.c +++ b/src/daemon/daemon-conf.c @@ -29,6 +29,7 @@ #include #include #include +#include #ifdef HAVE_SCHED_H #include @@ -37,6 +38,7 @@ #include #include #include +#include #include #include @@ -147,6 +149,10 @@ pa_daemon_conf* pa_daemon_conf_new(void) { c = pa_xnewdup(pa_daemon_conf, &default_conf, 1); +#ifdef OS_IS_WIN32 + c->dl_search_path = pa_sprintf_malloc("%s" PA_PATH_SEP "lib" PA_PATH_SEP "pulse-%d.%d" PA_PATH_SEP "modules", + pa_win32_get_toplevel(NULL), PA_MAJOR, PA_MINOR); +#else #if defined(__linux__) && !defined(__OPTIMIZE__) /* We abuse __OPTIMIZE__ as a check whether we are a debug build @@ -160,19 +166,6 @@ pa_daemon_conf* pa_daemon_conf_new(void) { } else #endif -#ifdef OS_IS_WIN32 - { - char *t; - char *majorminor = pa_xstrdup(VERSION); - char *toplevel = pa_win32_get_toplevel(NULL); - - if ((t = strchr(majorminor, '-'))) - *t = '\0'; - - c->dl_search_path = pa_sprintf_malloc("%s" PA_PATH_SEP "lib" PA_PATH_SEP "pulse-%s" PA_PATH_SEP "modules", toplevel, majorminor); - pa_xfree(majorminor); - } -#else c->dl_search_path = pa_xstrdup(PA_DLSEARCHPATH); #endif -- cgit