diff options
author | Mark Spruiell <mes@zeroc.com> | 2015-08-24 14:18:57 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2015-08-24 14:18:57 -0700 |
commit | 80de72d7bcab8092fe438a494916f6223141d851 (patch) | |
tree | 94ce1a6aec094ea843b0a91e5442d6c5a574f52e /python | |
parent | Add back slice2py command (diff) | |
download | ice-80de72d7bcab8092fe438a494916f6223141d851.tar.bz2 ice-80de72d7bcab8092fe438a494916f6223141d851.tar.xz ice-80de72d7bcab8092fe438a494916f6223141d851.zip |
ICE-6738 - RemoteLogger missing from scripting languages
Diffstat (limited to 'python')
-rw-r--r-- | python/python/Ice.py | 1 | ||||
-rw-r--r-- | python/python/Makefile | 1 | ||||
-rw-r--r-- | python/python/Makefile.mak | 4 |
3 files changed, 6 insertions, 0 deletions
diff --git a/python/python/Ice.py b/python/python/Ice.py index 2ef4dbfcd47..feb060efa54 100644 --- a/python/python/Ice.py +++ b/python/python/Ice.py @@ -448,6 +448,7 @@ import Ice_ObjectAdapter_ice import Ice_ObjectFactory_ice import Ice_Process_ice import Ice_Properties_ice +import Ice_RemoteLogger_ice import Ice_Router_ice import Ice_ServantLocator_ice import Ice_Connection_ice diff --git a/python/python/Makefile b/python/python/Makefile index 70b1af73af7..6d3a0b17f10 100644 --- a/python/python/Makefile +++ b/python/python/Makefile @@ -49,6 +49,7 @@ ICE_SRCS = Ice_BuiltinSequences_ice.py \ Ice_Properties_ice.py \ Ice_PropertiesAdmin_ice.py \ Ice_PropertiesF_ice.py \ + Ice_RemoteLogger_ice.py \ Ice_Router_ice.py \ Ice_RouterF_ice.py \ Ice_ServantLocator_ice.py \ diff --git a/python/python/Makefile.mak b/python/python/Makefile.mak index 3ae8fe9f40c..6bf91c42d9a 100644 --- a/python/python/Makefile.mak +++ b/python/python/Makefile.mak @@ -45,6 +45,7 @@ ICE_SLICES = Ice\BuiltinSequences.ice \ Ice\Properties.ice \ Ice\PropertiesAdmin.ice \ Ice\PropertiesF.ice \ + Ice\RemoteLogger.ice \ Ice\Router.ice \ Ice\RouterF.ice \ Ice\ServantLocator.ice \ @@ -218,6 +219,9 @@ Ice_ImplicitContext_ice.py: "$(slicedir)/Ice/ImplicitContext.ice" "$(SLICEPARSER Ice_ImplicitContextF_ice.py: "$(slicedir)/Ice/ImplicitContextF.ice" "$(SLICEPARSERLIB)" "$(SLICE2PY)" $(SLICE2PYFLAGS) --prefix Ice_ --no-package "$(slicedir)/Ice/ImplicitContextF.ice" +Ice_RemoteLogger_ice.py: "$(slicedir)/Ice/RemoteLogger.ice" "$(SLICEPARSERLIB)" + "$(SLICE2PY)" $(SLICE2PYFLAGS) --prefix Ice_ --no-package "$(slicedir)/Ice/RemoteLogger.ice" + Ice_Router_ice.py: "$(slicedir)/Ice/Router.ice" "$(SLICEPARSERLIB)" "$(SLICE2PY)" $(SLICE2PYFLAGS) --prefix Ice_ --no-package "$(slicedir)/Ice/Router.ice" |