diff options
author | Francois Tigeot <ftigeot@wolfpond.org> | 2011-04-16 09:08:29 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-04-18 16:59:48 +0200 |
commit | d7bc3048ee87ca5cb190fe8236b354db9b9ef39e (patch) | |
tree | 2bebb42454825cb97b2c9b58ee08e9218e4bcd03 /sal/qa/osl/process | |
parent | 0b943523249455c876fefdf19ba345d85f190a29 (diff) |
Remove OS/2 support.
Diffstat (limited to 'sal/qa/osl/process')
-rw-r--r-- | sal/qa/osl/process/makefile.mk | 8 | ||||
-rw-r--r-- | sal/qa/osl/process/osl_process.cxx | 4 |
2 files changed, 2 insertions, 10 deletions
diff --git a/sal/qa/osl/process/makefile.mk b/sal/qa/osl/process/makefile.mk index 8e050cfbb..cf78cd5f5 100644 --- a/sal/qa/osl/process/makefile.mk +++ b/sal/qa/osl/process/makefile.mk @@ -75,16 +75,8 @@ SHL2DEPN=$(APP3TARGETN) \ #------------------------------- All object files ------------------------------- # do this here, so we get right dependencies -.IF "$(GUI)" == "OS2" - -SLOFILES=$(SHL2OBJS) - -.ELSE - SLOFILES=$(SHL1OBJS) $(SHL2OBJS) -.ENDIF - # --- Targets ------------------------------------------------------ .INCLUDE : target.mk diff --git a/sal/qa/osl/process/osl_process.cxx b/sal/qa/osl/process/osl_process.cxx index 13e11361d..2535c4cd6 100644 --- a/sal/qa/osl/process/osl_process.cxx +++ b/sal/qa/osl/process/osl_process.cxx @@ -70,7 +70,7 @@ # endif #endif -#if defined(WNT) || defined(OS2) +#if defined(WNT) const rtl::OUString EXECUTABLE_NAME (RTL_CONSTASCII_USTRINGPARAM("osl_process_child.exe")); #else const rtl::OUString EXECUTABLE_NAME (RTL_CONSTASCII_USTRINGPARAM("osl_process_child")); @@ -672,7 +672,7 @@ public: void osl_execProc_test_batch() { oslProcess process; -#if defined(WNT) || defined(OS2) +#if defined(WNT) rtl::OUString suBatch = suCWD + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/")) + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("batch.bat")); #else rtl::OUString suBatch = suCWD + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/")) + rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("batch.sh")); |