diff options
author | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-23 21:41:10 +0000 |
---|---|---|
committer | kirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-23 21:41:10 +0000 |
commit | f73c029ebe4c4da5d45d2fbda3a039112f9a61a5 (patch) | |
tree | fe103d613a1e03ade9f2ede456be5a9c748aa7a5 /tests/DLL_Test.cpp | |
parent | e9f6832972d1962ff9548598b22dd3d6056b5032 (diff) | |
download | ATCD-f73c029ebe4c4da5d45d2fbda3a039112f9a61a5.tar.gz |
*** empty log message ***
Diffstat (limited to 'tests/DLL_Test.cpp')
-rw-r--r-- | tests/DLL_Test.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/DLL_Test.cpp b/tests/DLL_Test.cpp index 96b01cd6b08..e049a46af3d 100644 --- a/tests/DLL_Test.cpp +++ b/tests/DLL_Test.cpp @@ -40,8 +40,10 @@ USELIB("..\ace\aced.lib"); #if defined (ACE_WIN32) # define OBJ_SUFFIX ".exe" +# define OBJ_PREFIX "" #else # define OBJ_SUFFIX ".o" +# define OBJ_PREFIX ".obj/" #endif /*ACE_WIN32*/ class Hello @@ -95,7 +97,7 @@ main (int argc, char *argv[]) ACE_DLL dll; - int retval = dll.open ("DLL_Test" OBJ_SUFFIX); + int retval = dll.open (OBJ_PREFIX "DLL_Test" OBJ_SUFFIX); if (retval != 0) ACE_ERROR_RETURN ((LM_ERROR, dll.error ()), |