From: Tapani Pälli Date: Tue, 5 Jun 2012 13:04:14 +0000 (+0300) Subject: xmlconfig: use __progname when building for Android X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d02b018f456c447e2c24ebd1460c27d6e5fb385;p=mesa.git xmlconfig: use __progname when building for Android __progname symbol and strrchr are available with bionic. Signed-off-by: Tapani Pälli Signed-off-by: Chad Versace --- diff --git a/src/mesa/drivers/dri/common/xmlconfig.c b/src/mesa/drivers/dri/common/xmlconfig.c index 6d1d5ec6109..039e98a6b07 100644 --- a/src/mesa/drivers/dri/common/xmlconfig.c +++ b/src/mesa/drivers/dri/common/xmlconfig.c @@ -86,7 +86,7 @@ static const char *__getProgramName () { #endif #if !defined(GET_PROGRAM_NAME) -# if defined(__OpenBSD__) || defined(NetBSD) || defined(__UCLIBC__) +# if defined(__OpenBSD__) || defined(NetBSD) || defined(__UCLIBC__) || defined(ANDROID) /* This is a hack. It's said to work on OpenBSD, NetBSD and GNU. * Rogelio M.Serrano Jr. reported it's also working with UCLIBC. It's * used as a last resort, if there is no documented facility available. */