Module: sip-router Branch: ser_core_cvs Commit: 16155740689d81cb58ad6e7b9350ec0747c5f9cd URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=16155740...
Author: Andrei Pelinescu-Onciul andrei@iptel.org Committer: Andrei Pelinescu-Onciul andrei@iptel.org Date: Fri Apr 10 12:28:00 2009 +0000
make: use C_INCLUDES for includes
---
Makefile.defs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.defs b/Makefile.defs index 68e1e98..9135117 100644 --- a/Makefile.defs +++ b/Makefile.defs @@ -1651,7 +1651,7 @@ endif
#add libssl if needed ifeq ($(CORE_TLS), 1) -C_DEFS+= -I$(LOCALBASE)/ssl/include +C_INCLUDES+= -I$(LOCALBASE)/ssl/include LIBS+= -L$(LOCALBASE)/lib -L$(LOCALBASE)/ssl/lib -lssl -lcrypto \ $(TLS_EXTRA_LIBS) # NOTE: depending on the way in which libssl was compiled you might @@ -1660,7 +1660,7 @@ LIBS+= -L$(LOCALBASE)/lib -L$(LOCALBASE)/ssl/lib -lssl -lcrypto \ endif
ifneq ($(STUN),) -C_DEFS+= -I$(LOCALBASE)/ssl/include +C_INCLUDES+= -I$(LOCALBASE)/ssl/include LIBS+= -L$(LOCALBASE)/lib -L$(LOCALBASE)/ssl/lib -lcrypto endif