mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
use round braces instead of curly, and fix missing comma
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38260 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6d14b42b1c
commit
076f856b01
2 changed files with 2 additions and 2 deletions
2
configure
vendored
2
configure
vendored
|
@ -13815,7 +13815,7 @@ done
|
|||
if test $ac_cv_func_pthread_set_name_np == yes; then
|
||||
|
||||
cat >>confdefs.h <<\_ACEOF
|
||||
#define PTHREAD_SETNAME(a,b) {pthread_set_name_np(b)
|
||||
#define PTHREAD_SETNAME(a,b) (pthread_set_name_np(b),0)
|
||||
_ACEOF
|
||||
|
||||
else
|
||||
|
|
|
@ -1751,7 +1751,7 @@ CFLAGS=$saved_CFLAGS
|
|||
|
||||
AC_CHECK_FUNCS(pthread_set_name_np)
|
||||
if test $ac_cv_func_pthread_set_name_np == yes; then
|
||||
AC_DEFINE(PTHREAD_SETNAME(a,b), {pthread_set_name_np(b),0}
|
||||
AC_DEFINE(PTHREAD_SETNAME(a,b), (pthread_set_name_np(b),0),
|
||||
[Description: Define set_name function for pthread returning void])
|
||||
else
|
||||
AC_CACHE_CHECK(
|
||||
|
|
Loading…
Reference in a new issue