Changeset 3279
- Timestamp:
- 07/19/07 02:31:03 (1 year ago)
- Files:
-
- trunk/freewrt/package/asterisk-12/Makefile (modified) (2 diffs)
- trunk/freewrt/package/asterisk-12/patches/patch-channels_Makefile (modified) (1 diff)
- trunk/freewrt/package/asterisk-12/patches/patch-channels_misdn_Makefile (modified) (1 diff)
- trunk/freewrt/package/asterisk-12/patches/patch-dns_c (modified) (2 diffs)
- trunk/freewrt/package/asterisk-12/patches/patch-utils_c (modified) (2 diffs)
- trunk/freewrt/package/misdnuser/Makefile (modified) (2 diffs)
- trunk/freewrt/package/misdnuser/ipkg/misdnuser.control (moved) (moved from trunk/freewrt/package/misdnuser/ipkg/mISDNuser.control) (1 diff)
- trunk/freewrt/package/zaptel-12/extra (deleted)
- trunk/freewrt/package/zaptel-12/files/qozap.modules (deleted)
- trunk/freewrt/package/zaptel-12/files/zaphfc.modules (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/package/asterisk-12/Makefile
r3239 r3279 8 8 9 9 PKG_NAME:= asterisk 10 PKG_VERSION:= 1.2.2 1.111 PKG_RELEASE:= 212 PKG_MD5SUM:= c0b86be1fcb84bdb54a8946e765ab0fd10 PKG_VERSION:= 1.2.22 11 PKG_RELEASE:= 1 12 PKG_MD5SUM:= 1e0f25a9914c1fc8c9339a1a414119be 13 13 MASTER_SITES:= http://ftp.digium.com/pub/asterisk/old-releases/ \ 14 14 ftp://ftp.digium.com/pub/asterisk/old-releases/ … … 65 65 MAKE_FLAGS+= WITHOUT_ZAPTEL=1 66 66 endif 67 if neq (${FWRT_PACKAGE_ASTERISK_12_MISDN},)68 MAKE_FLAGS+= WITH _MISDN=167 ifeq (${FWRT_PACKAGE_ASTERISK_12_CHAN_MISDN},) 68 MAKE_FLAGS+= WITHOUT_MISDN=1 69 69 endif 70 70 INSTALL_STYLE:= auto trunk/freewrt/package/asterisk-12/patches/patch-channels_Makefile
r3220 r3279 3 3 substitute crappy static paths with the right variable 4 4 5 --- asterisk-1.2.2 1.1.orig/channels/Makefile 2007-03-26 12:21:56.000000000 +02006 +++ asterisk-1.2.2 1.1/channels/Makefile 2007-07-16 07:02:44.000000000 +02007 @@ -8 3,7 +83,7 @@ ifneq ($(wildcard h323/libchanh323.a),)5 --- asterisk-1.2.22.orig/channels/Makefile 2007-07-11 19:15:11.000000000 +0200 6 +++ asterisk-1.2.22/channels/Makefile 2007-07-19 00:48:12.000000000 +0200 7 @@ -87,7 +87,7 @@ ifneq ($(wildcard h323/libchanh323.a),) 8 8 CHANNEL_LIBS+=chan_h323.so 9 9 endif 10 10 11 11 -ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/mISDNuser/mISDNlib.h),) 12 +if eq ($(WITH_MISDN),1)12 +ifneq ($(WITHOUT_MISDN),1) 13 13 CHANNEL_LIBS+=chan_misdn.so 14 14 CFLAGS+=-Imisdn 15 15 endif 16 @@ -24 5,7 +245,7 @@ misdn/chan_misdn_lib.a:16 @@ -249,7 +249,7 @@ misdn/chan_misdn_lib.a: 17 17 make CROSS_COMPILE_TARGET=$(CROSS_COMPILE_TARGET) -C misdn 18 18 trunk/freewrt/package/asterisk-12/patches/patch-channels_misdn_Makefile
r2114 r3279 3 3 make misdn support build correctly 4 4 5 --- asterisk-1.2. 15.orig/channels/misdn/Makefile 2006-08-17 23:57:19.000000000 +02006 +++ asterisk-1.2. 15/channels/misdn/Makefile 2007-02-28 19:25:08.000000000 +01007 @@ - 18,11 +18,11 @@ all: chan_misdn_lib.a5 --- asterisk-1.2.22.orig/channels/misdn/Makefile 2007-03-26 12:21:56.000000000 +0200 6 +++ asterisk-1.2.22/channels/misdn/Makefile 2007-07-19 00:48:12.000000000 +0200 7 @@ -21,11 +21,11 @@ all: chan_misdn_lib.a 8 8 9 9 trunk/freewrt/package/asterisk-12/patches/patch-dns_c
r1815 r3279 1 1 $FreeWRT$ 2 --- asterisk-1.2. 14.orig/dns.c 2005-11-29 19:24:39.000000000 +01003 +++ asterisk-1.2. 14/dns.c 2007-01-28 15:36:08.000000000 +01004 @@ - 175,7 +175,13@@ static int dns_parse_answer(void *contex2 --- asterisk-1.2.22.orig/dns.c 2007-07-16 22:46:58.000000000 +0200 3 +++ asterisk-1.2.22/dns.c 2007-07-19 01:09:18.000000000 +0200 4 @@ -234,10 +234,16 @@ static int dns_parse_answer(void *contex 5 5 6 6 #if defined(res_ninit) 7 7 #define HAS_RES_NINIT 8 -#else9 8 +#endif 10 9 + … … 13 12 +#endif 14 13 + 14 #if defined(res_ndestroy) 15 #define HAS_RES_NDESTROY 16 #endif 17 -#else 15 18 +#ifndef HAS_RES_NINIT 16 19 AST_MUTEX_DEFINE_STATIC(res_lock); trunk/freewrt/package/asterisk-12/patches/patch-utils_c
r1815 r3279 1 1 $FreeWRT$ 2 --- asterisk-1.2. 14.orig/utils.c 2006-10-31 07:18:36.000000000 +01003 +++ asterisk-1.2. 14/utils.c 2007-01-28 18:32:11.000000000 +01004 @@ -83 5,7 +835,6 @@ uint64_t strtoq(const char *nptr, char *2 --- asterisk-1.2.22.orig/utils.c 2007-02-26 01:34:31.000000000 +0100 3 +++ asterisk-1.2.22/utils.c 2007-07-19 00:48:12.000000000 +0200 4 @@ -837,7 +837,6 @@ uint64_t strtoq(const char *nptr, char * 5 5 } 6 6 #endif /* !HAVE_STRTOQ */ … … 10 10 /* Alternative method of getting load avg on Linux only */ 11 11 int getloadavg(double *list, int nelem) 12 @@ -8 69,7 +868,6 @@ int getloadavg(double *list, int nelem)12 @@ -871,7 +870,6 @@ int getloadavg(double *list, int nelem) 13 13 return -1; 14 14 } trunk/freewrt/package/misdnuser/Makefile
r2988 r3279 9 9 PKG_NAME:= mISDNuser 10 10 PKG_VERSION:= 1.1.4 11 PKG_RELEASE:= 111 PKG_RELEASE:= 2 12 12 PKG_MD5SUM:= 9bfbafce0230d12f14c43e764aab9c8b 13 13 MASTER_SITES:= http://www.misdn.org/downloads/releases/ … … 17 17 include ${TOPDIR}/mk/package.mk 18 18 19 $(eval $(call PKG_template,MISDNUSER,m ISDNuser,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))19 $(eval $(call PKG_template,MISDNUSER,misdnuser,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 20 20 21 21 BUILD_STYLE:= auto trunk/freewrt/package/misdnuser/ipkg/misdnuser.control
r2114 r3279 1 1 Package: misdnuser 2 2 Priority: optional 3 Section: misc3 Section: telephony 4 4 Description: The Modular ISDN Stack


