diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-06-13 18:06:45 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-06-13 18:06:45 +0200 |
commit | 8edb1cd5a6a03b391003a1047e0b3ca6d22acd45 (patch) | |
tree | 751b35f97d8dcc1c9da4f0c81d9707701e8d6710 /package/asterisk/patches | |
parent | 92dd4fee15cb7c33868c7d7213f82136955397b1 (diff) |
bulk package update
Diffstat (limited to 'package/asterisk/patches')
-rw-r--r-- | package/asterisk/patches/patch-Makefile | 13 | ||||
-rw-r--r-- | package/asterisk/patches/patch-apps_app_followme_c | 26 |
2 files changed, 0 insertions, 39 deletions
diff --git a/package/asterisk/patches/patch-Makefile b/package/asterisk/patches/patch-Makefile deleted file mode 100644 index 1ba02c900..000000000 --- a/package/asterisk/patches/patch-Makefile +++ /dev/null @@ -1,13 +0,0 @@ ---- asterisk-1.6.2.1.orig/Makefile 2009-12-10 22:04:20.000000000 +0100 -+++ asterisk-1.6.2.1/Makefile 2010-02-05 21:05:41.313084404 +0100 -@@ -366,8 +366,8 @@ makeopts: configure - @exit 1 - - menuselect.makeopts: menuselect/menuselect menuselect-tree makeopts build_tools/menuselect-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) -- menuselect/menuselect --check-deps $@ -- menuselect/menuselect --check-deps $@ $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) -+ ./menuselect/menuselect --check-deps $@ -+ ./menuselect/menuselect --check-deps $@ $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS) - - $(MOD_SUBDIRS_EMBED_LDSCRIPT): - +@echo "EMBED_LDSCRIPTS+="`$(SILENTMAKE) -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules diff --git a/package/asterisk/patches/patch-apps_app_followme_c b/package/asterisk/patches/patch-apps_app_followme_c deleted file mode 100644 index 8ecfa9226..000000000 --- a/package/asterisk/patches/patch-apps_app_followme_c +++ /dev/null @@ -1,26 +0,0 @@ ---- asterisk-1.6.2.1.orig/apps/app_followme.c 2009-09-15 18:06:24.000000000 +0200 -+++ asterisk-1.6.2.1/apps/app_followme.c 2010-02-14 10:33:51.540422962 +0100 -@@ -172,7 +172,9 @@ static int ynlongest = 0; - - static const char *featuredigittostr; - static int featuredigittimeout = 5000; /*!< Feature Digit Timeout */ --static const char *defaultmoh = "default"; /*!< Default Music-On-Hold Class */ -+static const char *defaultmoh; /*!< Default Music-On-Hold Class */ -+ -+ - - static char takecall[20] = "1", nextindp[20] = "2"; - static char callfromprompt[PATH_MAX] = "followme/call-from"; -@@ -236,6 +238,7 @@ static struct call_followme *alloc_profi - - static void init_profile(struct call_followme *f) - { -+ defaultmoh = "default"; - f->active = 1; - ast_copy_string(f->moh, defaultmoh, sizeof(f->moh)); - } -@@ -1195,3 +1198,4 @@ AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MO - .unload = unload_module, - .reload = reload, - ); -+ |