summaryrefslogtreecommitdiff
path: root/main/Makefile
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2012-12-11 21:04:45 +0000
committerMark Michelson <mmichelson@digium.com>2012-12-11 21:04:45 +0000
commit8cb156bfc1533fa7442f9824b00b15c09ad62d19 (patch)
treeca373aceb97237a8414f774389d71cb7a02e95e0 /main/Makefile
parent619de7f01222e36aac4bd997678dcf2bc15afe70 (diff)
Add UUID support to Asterisk.
This provides a common API for dealing with unique identifiers. The API provides methods to create, parse, copy, and stringify UUIDs. An accompanying unit test is provided that tests all operations. (closes issue ASTERISK-20726) reported by Matt Jordan Review: https://reviewboard.asterisk.org/r/2217 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@377846 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/Makefile')
-rw-r--r--main/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile b/main/Makefile
index 55ffbf420..2adc500fd 100644
--- a/main/Makefile
+++ b/main/Makefile
@@ -43,7 +43,7 @@ ifneq ($(findstring $(OSARCH), linux-gnu uclinux linux-uclibc linux-gnueabi kfre
ifneq (x$(CAP_LIB),x)
AST_LIBS+=$(CAP_LIB)
endif
- AST_LIBS+=-lpthread $(EDITLINE_LIB) -lm -lresolv
+ AST_LIBS+=-lpthread $(EDITLINE_LIB) -lm -lresolv -luuid
else
AST_LIBS+=$(EDITLINE_LIB) -lm
endif