[Asterisk-cvs] asterisk/utils smsq.c,1.6,1.7

kpfleming at lists.digium.com kpfleming at lists.digium.com
Sat May 14 23:26:50 CDT 2005


Update of /usr/cvsroot/asterisk/utils
In directory mongoose.digium.com:/tmp/cvs-serv1112/utils

Modified Files:
	smsq.c 
Log Message:
fix build with older popt.h (bug #4225)


Index: smsq.c
===================================================================
RCS file: /usr/cvsroot/asterisk/utils/smsq.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- smsq.c	17 Mar 2005 23:12:15 -0000	1.6
+++ smsq.c	15 May 2005 03:32:20 -0000	1.7
@@ -13,7 +13,9 @@
 #include <solaris-compat/compat.h>
 #define     POPT_ARGFLAG_SHOW_DEFAULT 0x00800000
 #endif
-
+#if !defined(POPT_ARGFLAG_SHOW_DEFAULT)
+#define     POPT_ARGFLAG_SHOW_DEFAULT 0x00800000
+#endif
 
 /* SMS queuing application for use with asterisk app_sms */
 /* by Adrian Kennard, 2004 - 2005 */




More information about the svn-commits mailing list