[asterisk-scf-commits] asterisk-scf/integration/slice.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Wed Aug 18 13:50:48 CDT 2010
branch "master" has been updated
via 8d1cbe2bfb3ed106496a64b76e5871da1f77151b (commit)
from 8fc477a5484ebf65457dfd4fbb1783a54e664421 (commit)
Summary of changes:
CMakeLists.txt | 6 +++---
System/Component/ComponentServiceIf.ice | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
- Log -----------------------------------------------------------------
commit 8d1cbe2bfb3ed106496a64b76e5871da1f77151b
Author: Ken Hunt <ken.hunt at digium.com>
Date: Wed Aug 18 13:48:10 2010 -0500
Changed order of add_subdirectory so that System preceeds Core.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c8abc9e..805249a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,14 +1,14 @@
# Make all of our slice definitions available to... themselves!
hydra_slice_include_directories(${CMAKE_CURRENT_SOURCE_DIR})
+# Slice definitions for system infrastructure
+add_subdirectory(System)
+
# Slice definitions for core functionality
add_subdirectory(Core)
# Slice definitions for media functionality
add_subdirectory(Media)
-# Slice definitions for system infrastructure
-add_subdirectory(System)
-
# Slice definitions for session-oriented communications
add_subdirectory(Session)
diff --git a/System/Component/ComponentServiceIf.ice b/System/Component/ComponentServiceIf.ice
index 0cd1a12..4e3c4cf 100644
--- a/System/Component/ComponentServiceIf.ice
+++ b/System/Component/ComponentServiceIf.ice
@@ -13,7 +13,7 @@ module V1
* ShuttingDown is thrown when an operation is performed when a service is in the process
* of shutting itself down. This exception may be thrown from other interface methods
*/
- exception ShuttingDown {};
+ exception ShuttingDown {};
/**
* Suspended is thrown when a service cannot perform an operation because it is a suspended
-----------------------------------------------------------------------
--
asterisk-scf/integration/slice.git
More information about the asterisk-scf-commits
mailing list