Add makefile define so that pthread_threadid_np is found in pthread.h (MacOS)

This commit is contained in:
John Kelley 2021-02-05 14:14:05 -06:00 committed by deemar
parent 94f4aa6f79
commit cd40f93b2c

View File

@ -71,6 +71,7 @@ ifneq ($(compiler_platform),)
DYLIB_MINOR_NAME=$(LIBNAME).$(ZLOG_MAJOR).$(ZLOG_MINOR).$(DYLIBSUFFIX)
DYLIB_MAJOR_NAME=$(LIBNAME).$(ZLOG_MAJOR).$(DYLIBSUFFIX)
DYLIB_MAKE_CMD=$(CC) -dynamiclib -install_name $(INSTALL_LIBRARY_PATH)/$(DYLIB_MINOR_NAME) -o $(DYLIBNAME) $(LDFLAGS)
REAL_CFLAGS+= -D_DARWIN_C_SOURCE
endif
ifeq ($(uname_S),AIX)