summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Property
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Property')
-rw-r--r--TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.h4
-rw-r--r--TAO/orbsvcs/orbsvcs/Property/Makefile.am34
3 files changed, 37 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.cpp b/TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.cpp
index c8345528754..660ff9e4a0a 100644
--- a/TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.cpp
@@ -13,7 +13,7 @@
//
// ============================================================================
-#include "orbsvcs/Property/CosPropertyService_i.h"
+#include "orbsvcs/orbsvcs/Property/CosPropertyService_i.h"
#include "ace/ACE.h"
#include "ace/OS_NS_string.h"
diff --git a/TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.h b/TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.h
index 0c9b289bb2b..b1b8db89c92 100644
--- a/TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.h
+++ b/TAO/orbsvcs/orbsvcs/Property/CosPropertyService_i.h
@@ -15,13 +15,13 @@
#include /**/ "ace/pre.h"
-#include "orbsvcs/Property/property_export.h"
+#include "orbsvcs/orbsvcs/Property/property_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
-#include "orbsvcs/CosPropertyServiceS.h"
+#include "orbsvcs/orbsvcs/CosPropertyServiceS.h"
#include "ace/Hash_Map_Manager.h"
#include "ace/Null_Mutex.h"
diff --git a/TAO/orbsvcs/orbsvcs/Property/Makefile.am b/TAO/orbsvcs/orbsvcs/Property/Makefile.am
new file mode 100644
index 00000000000..b8235d16383
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Property/Makefile.am
@@ -0,0 +1,34 @@
+##---------------------------------------------------------------------------
+## $Id$
+##
+## Makefile for TAO's Property Service library
+##
+##---------------------------------------------------------------------------
+
+##
+## Process this file with automake to create Makefile.in
+##
+
+## The number in AUTOMAKE_OPTIONS is the minimum required version automake
+## needed to process this file.
+AUTOMAKE_OPTIONS = 1.4
+
+INCLUDES = -I$(top_builddir) -I$(top_srcdir)
+
+lib_LTLIBRARIES = libTAO_Property.la
+
+libTAO_Property_la_LDADD = \
+ $(top_builddir)/ace/libACE.la $(top_builddir)/TAO/tao/libTAO.la
+
+libTAO_Property_la_SOURCES = \
+ CosPropertyService_i.cpp
+
+noinst_HEADERS = \
+ CosPropertyService_i.h
+
+## Clean up some additional files/directories possibly created during
+## the configure script tests.
+clean-local:
+ -rm -f *.bak *.rpo *.sym lib*.*_pure_* Makefile.old core
+ -rm -rf ptrepository Templates.DB gcctemp.c gcctemp so_locations
+