Skip to content
Snippets Groups Projects
Commit c34a3a6e authored by murgatroid99's avatar murgatroid99
Browse files

Added missing pthread gpr requirement

parent 395c3ed1
No related branches found
No related tags found
No related merge requests found
...@@ -338,12 +338,11 @@ PC_TEMPLATE = prefix=$(prefix)\nexec_prefix=\$${prefix}\nincludedir=\$${prefix}/ ...@@ -338,12 +338,11 @@ PC_TEMPLATE = prefix=$(prefix)\nexec_prefix=\$${prefix}\nincludedir=\$${prefix}/
# gpr .pc file # gpr .pc file
PC_NAME = Google Public Runtime PC_NAME = Google Public Runtime
PC_DESCRIPTION = Google Public Runtime PC_DESCRIPTION = Google Public Runtime
PC_CFLAGS = PC_CFLAGS = -pthread
PC_REQUIRES_PRIVATE = PC_REQUIRES_PRIVATE =
PC_LIBS_PRIVATE = -lpthread
ifeq ($(SYSTEM),Darwin) ifeq ($(SYSTEM),Darwin)
PC_LIBS_PRIVATE = -lrt PC_LIBS_PRIVATE += -lrt
else
PC_LIBS_PRIVATE =
endif endif
GPR_PC_FILE := $(PC_TEMPLATE) GPR_PC_FILE := $(PC_TEMPLATE)
   
......
...@@ -363,12 +363,11 @@ Libs.private: $(PC_LIBS_PRIVATE) ...@@ -363,12 +363,11 @@ Libs.private: $(PC_LIBS_PRIVATE)
# gpr .pc file # gpr .pc file
PC_NAME = Google Public Runtime PC_NAME = Google Public Runtime
PC_DESCRIPTION = Google Public Runtime PC_DESCRIPTION = Google Public Runtime
PC_CFLAGS = PC_CFLAGS = -pthread
PC_REQUIRES_PRIVATE = PC_REQUIRES_PRIVATE =
PC_LIBS_PRIVATE = -lpthread
ifeq ($(SYSTEM),Darwin) ifeq ($(SYSTEM),Darwin)
PC_LIBS_PRIVATE = -lrt PC_LIBS_PRIVATE += -lrt
else
PC_LIBS_PRIVATE =
endif endif
GPR_PC_FILE := $(PC_TEMPLATE) GPR_PC_FILE := $(PC_TEMPLATE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment