From 7bf99e48e78ef8cf41a01d932009aacbbd336a1c Mon Sep 17 00:00:00 2001 From: vraatikka Date: Thu, 27 Jun 2013 13:41:05 +0300 Subject: [PATCH] Added -ldl and -pthread to Makefile --- core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index fde4f182e..71517c582 100644 --- a/core/Makefile +++ b/core/Makefile @@ -37,7 +37,7 @@ HDRS= ../include/atomic.h ../include/buffer.h ../include/dcb.h \ OBJ=$(SRCS:.c=.o) LIBS=-L../inih/extra -linih -lssl -lstdc++ \ -L/packages/mariadb-5.5.25/libmysql -lmysqlclient \ - -lz -lm -lcrypto + -lz -lm -lcrypto -ldl -pthread gateway: $(OBJ) $(CC) $(LDFLAGS) $(OBJ) $(LIBS) -o $@