[svn-commits] russell: branch 1.6.0 r184148 - in /branches/1.6.0: ./ include/asterisk/ utils/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Mar 24 20:48:21 CDT 2009


Author: russell
Date: Tue Mar 24 20:48:17 2009
New Revision: 184148

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=184148
Log:
Merged revisions 184147 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r184147 | russell | 2009-03-24 20:42:10 -0500 (Tue, 24 Mar 2009) | 5 lines
  
  Fix build issues on Mac OSX.
  
  (closes issue #14714)
  Reported by: ygor
........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/include/asterisk/compat.h
    branches/1.6.0/utils/Makefile

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/include/asterisk/compat.h
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/include/asterisk/compat.h?view=diff&rev=184148&r1=184147&r2=184148
==============================================================================
--- branches/1.6.0/include/asterisk/compat.h (original)
+++ branches/1.6.0/include/asterisk/compat.h Tue Mar 24 20:48:17 2009
@@ -67,7 +67,7 @@
 #include <string.h>
 #endif
 
-#ifdef HAVE_SYS_POLL_H
+#ifndef AST_POLL_COMPAT
 #include <sys/poll.h>
 #else
 #include "asterisk/poll-compat.h"

Modified: branches/1.6.0/utils/Makefile
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/utils/Makefile?view=diff&rev=184148&r1=184147&r2=184148
==============================================================================
--- branches/1.6.0/utils/Makefile (original)
+++ branches/1.6.0/utils/Makefile Tue Mar 24 20:48:17 2009
@@ -143,6 +143,10 @@
 aelparse: LIBS+=-lm
 aelparse: aelparse.o aelbison.o pbx_ael.o hashtab.o ael_main.o ast_expr2f.o ast_expr2.o strcompat.o pval.o extconf.o
 
+poll.c: $(ASTTOPDIR)/main/poll.c
+	@cp "$<" "$@"
+poll.o: ASTCFLAGS+=-DSTANDALONE
+
 astobj2.c: $(ASTTOPDIR)/main/astobj2.c
 	@cp "$<" "$@"
 astobj2.o: ASTCFLAGS+=-DSTANDALONE
@@ -160,9 +164,9 @@
 threadstorage.o: ASTCFLAGS+=-DSTANDALONE
 
 hashtest2.o: ASTCFLAGS+=-O0 -DSTANDALONE
-hashtest2: hashtest2.o md5.o utils.o astobj2.o sha1.o strcompat.o threadstorage.o clicompat.o
-
-hashtest: hashtest.o md5.o hashtab.o utils.o sha1.o strcompat.o threadstorage.o clicompat.o
+hashtest2: hashtest2.o md5.o utils.o astobj2.o sha1.o strcompat.o threadstorage.o clicompat.o poll.o
+
+hashtest: hashtest.o md5.o hashtab.o utils.o sha1.o strcompat.o threadstorage.o clicompat.o poll.o
 hashtest.o: ASTCFLAGS+=-O0 -DSTANDALONE
 
 extconf.o: extconf.c




More information about the svn-commits mailing list