Re: [alsa-devel] Compilation error for static build of alsa-lib
Forgot to mention the version 1.0.26
From: Pankaj DEV Sent: Friday, December 07, 2012 12:01 PM To: alsa-devel@alsa-project.org Subject: Compilation error for static build of alsa-lib
When building alsa (using buildroot) for static build, compilation errors occur. Don't know how to report bug, since the "bug tracker" link on web-page doesn't open
The following patch solves the issue : --- a/modules/mixer/simple/sbasedl.c +++ b/modules/mixer/simple/sbasedl.c @@ -27,7 +27,11 @@ #include <fcntl.h> #include <sys/ioctl.h> #include <math.h> +#ifdef HAVE_LIBDL #include <dlfcn.h> +#else +#define RTLD_NOW 0 +#endif #include "config.h" #include "asoundlib.h" #include "mixer_abst.h" diff --git a/src/mixer/simple_abst.c b/src/mixer/simple_abst.c index 9e9aaf5..03070e0 100644 --- a/src/mixer/simple_abst.c +++ b/src/mixer/simple_abst.c @@ -34,7 +34,12 @@ #include <fcntl.h> #include <sys/ioctl.h> #include <math.h> +#ifdef HAVE_LIBDL #include <dlfcn.h> +#else +#define RTLD_NOW 0 +#define RTLD_GLOBAL 8 +#endif #include "config.h" #include "asoundlib.h" #include "mixer_simple.h"
participants (1)
-
Pankaj DEV