build: make ofono build against musl

ifdef away GNU libc extensions and use a POSIXly correct pointer type
This commit is contained in:
Sergey Alirzaev 2015-05-30 12:13:56 +03:00 committed by Denis Kenzior
parent fceb5a41c2
commit 4a937b96aa
2 changed files with 9 additions and 1 deletions

View File

@ -67,7 +67,7 @@ gboolean ppp_net_set_mtu(struct ppp_net *net, guint16 mtu)
strncpy(ifr.ifr_name, net->if_name, sizeof(ifr.ifr_name));
ifr.ifr_mtu = mtu;
err = ioctl(sk, SIOCSIFMTU, (caddr_t) &ifr);
err = ioctl(sk, SIOCSIFMTU, (void *) &ifr);
close(sk);

View File

@ -30,7 +30,9 @@
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#ifdef __GLIBC__
#include <execinfo.h>
#endif
#include <dlfcn.h>
#include "ofono.h"
@ -113,6 +115,7 @@ void ofono_debug(const char *format, ...)
va_end(ap);
}
#ifdef __GLIBC__
static void print_backtrace(unsigned int offset)
{
void *frames[99];
@ -240,6 +243,7 @@ static void signal_setup(sighandler_t handler)
sigaction(SIGABRT, &sa, NULL);
sigaction(SIGPIPE, &sa, NULL);
}
#endif
extern struct ofono_debug_desc __start___debug[];
extern struct ofono_debug_desc __stop___debug[];
@ -305,7 +309,9 @@ int __ofono_log_init(const char *program, const char *debug,
if (detach == FALSE)
option |= LOG_PERROR;
#ifdef __GLIBC__
signal_setup(signal_handler);
#endif
openlog(basename(program), option, LOG_DAEMON);
@ -320,7 +326,9 @@ void __ofono_log_cleanup(void)
closelog();
#ifdef __GLIBC__
signal_setup(SIG_DFL);
#endif
g_strfreev(enabled);
}