forked from SIPfoundry/legacy-sipxecs
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
XX-9567 - ruby install issues, other improvements
- Loading branch information
1 parent
e181c3d
commit 54c8744
Showing
73 changed files
with
105 additions
and
262 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,14 +1,22 @@ | ||
# Require utility.am be included. Do not include it here because having all top-level makefile | ||
# include nec. files helps readablity. We have to avoid a network of includes that include other | ||
# includes | ||
utility_am_required ?= $(error Please include utility.am) | ||
$(utility_am_required) | ||
|
||
|
||
EXTRA_DIST = \ | ||
config/revision-gen \ | ||
CONTRIBUTORS \ | ||
$(@PACKAGE@_EXTRA_DIST) | ||
|
||
# defined as empty target so if a package does not override, it's a nop | ||
%-dist-hook:; | ||
dist-hook: @PACKAGE@-dist-revision @PACKAGE@-dist-specfile | ||
|
||
dist-hook: @PACKAGE@-dist-hook | ||
%-dist-revision : | ||
echo $(PACKAGE_REVISION) > $(distdir)/.tarball-revision | ||
@$(LocalizeSipXconfig) $(srcdir)/@[email protected] > $(distdir)/@[email protected] | ||
|
||
%-dist-specfile : | ||
@$(call SearchAndReplace,$(srcdir)/@[email protected],$(distdir)/@[email protected], $(dist_EXTRA_REPLACE)) | ||
|
||
# CONFIG_DISTCLEANFILES are files to be added to DISTCLEANFILES in any | ||
# makefile that includes config as an external subdirectory. | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include $(top_srcdir)/config/project.am | ||
|
||
SUBDIRS = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
SUBDIRS = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
SUBDIRS = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
@PACKAGE@_EXTRA_DIST = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
SUBDIRS = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
@PACKAGE@_EXTRA_DIST = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
@PACKAGE@_EXTRA_DIST = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
SUBDIRS = \ | ||
|
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 |
---|---|---|
@@ -1,16 +1,19 @@ | ||
include config/utility.am | ||
include $(top_srcdir)/config/project.am | ||
include $(top_srcdir)/config/utility.am | ||
include $(top_srcdir)/config/ruby.am | ||
include $(top_srcdir)/common.am | ||
|
||
@PACKAGE@_EXTRA_DIST = \ | ||
$(callresolver_SRC) | ||
$(sipxcallresolver_SRC) | ||
|
||
SUBDIRS = \ | ||
java-client \ | ||
bin \ | ||
etc \ | ||
. | ||
|
||
callresolver_SRC = $(shell cd $(srcdir); find lib -type f -name '*.rb') | ||
callresolver_VER = 1.0.0 | ||
sipxcallresolver_SRC = $(shell cd $(srcdir); find lib -type f -name '*.rb') | ||
|
||
noinst_DATA = \ | ||
callresolver-$(callresolver_VER).gem | ||
sipxcallresolver-$(sipxcallresolver_VER).gem |
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
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 @@ | ||
sipxcallresolver_VER = 2.0.0 |
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 |
---|---|---|
|
@@ -17,5 +17,7 @@ CHECK_POSTGRES | |
AC_CONFIG_FILES([ | ||
Makefile | ||
java-client/Makefile | ||
etc/Makefile | ||
bin/Makefile | ||
]) | ||
AC_OUTPUT |
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 |
---|---|---|
@@ -1,25 +1,15 @@ | ||
include $(top_srcdir)/config/utility.am | ||
|
||
SUBDIRS = \ | ||
. \ | ||
database | ||
|
||
EXTRA_DIST = \ | ||
$(proc_DATA:.xml=.xml.in) \ | ||
$(cfg_DATA:=.in) | ||
$(proc_DATA:.xml=.xml.in) | ||
|
||
procdir = \ | ||
$(SIPX_DATADIR)/process.d | ||
|
||
proc_DATA = \ | ||
sipxcallresolver-agent-process.xml \ | ||
sipxcallresolver-process.xml | ||
|
||
cfgdir = @SIPX_CONFDIR@ | ||
cfg_DATA = \ | ||
sipxcallresolver-agent-config | ||
|
||
$(cfg_DATA) $(proc_DATA) : % : %.in | ||
@$(call SearchAndReplace, $<, $@) | ||
$(proc_DATA) : % : %.in Makefile | ||
@$(call SearchAndReplace, $<, $@) | ||
|
||
CLEANFILES = $(proc_DATA) $(cfg_DATA) | ||
CLEANFILES = $(proc_DATA) |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
@PACKAGE@_EXTRA_DIST = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include $(top_srcdir)/config/project.am | ||
|
||
SUBDIRS = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include $(top_srcdir)/config/project.am | ||
|
||
SUBDIRS = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
@PACKAGE@_EXTRA_DIST = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
@PACKAGE@_EXTRA_DIST = \ | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include config/utility.am | ||
include config/project.am | ||
|
||
@PACKAGE@_EXTRA_DIST = \ | ||
|
Oops, something went wrong.