summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorPatrick Luby <pluby@openoffice.org>2001-02-12 02:37:34 +0000
committerPatrick Luby <pluby@openoffice.org>2001-02-12 02:37:34 +0000
commit3107cf9c034feb355062c3176e1d1c3ff5edc945 (patch)
treec4aaf37ec77605f8c98c9f4f799e2ffcd4db8de7 /cppuhelper
parent390e9fa9e5cb66137466f17b9b72e808d555ceaa (diff)
Updates to make cppuhelper test program compile on Mac OS X
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/test/testhelper.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/cppuhelper/test/testhelper.cxx b/cppuhelper/test/testhelper.cxx
index 995621ce1e14..370d619612ec 100644
--- a/cppuhelper/test/testhelper.cxx
+++ b/cppuhelper/test/testhelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testhelper.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: jbu $ $Date: 2001-02-05 13:23:12 $
+ * last change: $Author: pluby $ $Date: 2001-02-12 03:37:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -96,7 +96,11 @@ int __cdecl main( int argc, char * argv[] )
#ifdef UNX
#define REG_PREFIX "lib"
+#ifdef MACOSX
+#define DLL_POSTFIX ".dylib.framework"
+#else
#define DLL_POSTFIX ".so"
+#endif
#else
#define REG_PREFIX ""
#define DLL_POSTFIX ".dll"