-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rpt_install.sh: Fix broken Makefile patches. (#438)
* Recreate patches, since the channels patch fails with Asterisk 21 due to a change within the patch context. * Update install command to include --alsa, which is required.
- Loading branch information
1 parent
15141ab
commit 604328d
Showing
5 changed files
with
38 additions
and
31 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/apps/Makefile b/apps/Makefile | ||
index 50b3fccc8f..207a568933 100644 | ||
--- a/apps/Makefile | ||
+++ b/apps/Makefile | ||
@@ -49,6 +49,8 @@ include $(ASTTOPDIR)/Makefile.moddir_rules | ||
|
||
$(call MOD_ADD_C,app_confbridge,$(wildcard confbridge/*.c)) | ||
|
||
+$(call MOD_ADD_C,app_rpt,$(wildcard app_rpt/rpt_*.c)) | ||
+ | ||
app_confbridge.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) | ||
app_meetme.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) | ||
app_minivm.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/channels/Makefile b/channels/Makefile | ||
index 0f8d1328c5..c9523f6d69 100644 | ||
--- a/channels/Makefile | ||
+++ b/channels/Makefile | ||
@@ -22,6 +22,9 @@ include $(ASTTOPDIR)/Makefile.moddir_rules | ||
$(call MOD_ADD_C,chan_iax2,$(wildcard iax2/*.c)) | ||
iax2/parser.o: _ASTCFLAGS+=$(call get_menuselect_cflags,MALLOC_DEBUG) | ||
|
||
+chan_simpleusb.so: LIBS+=-lusb -lasound | ||
+chan_usbradio.so: LIBS+=-lusb -lasound | ||
+ | ||
$(call MOD_ADD_C,chan_pjsip,$(wildcard pjsip/*.c)) | ||
$(call MOD_ADD_C,chan_dahdi,$(wildcard dahdi/*.c) sig_analog.c sig_pri.c sig_ss7.c) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters