Compilation error after installing Sun patches

hello,
One of our customer installed teh following Sun patches:
119254-73
124867-14
124863-23
124870-03
124872-07
126495-04
126995-04
127000-13
127001-04
127143-03
118683-05
119963-20
120753-08Now when they compile the application they get the following error:
cd /usr/opt/temip/mmtoolkit/examples/
make -f temip_ef_user_library.make
/opt/SUNWspro/bin/CC -c -m64 -xcode=pic32 -g -xO0 -D_POSIX_PTHREAD_SEMANTICS -mt -pto -I/usr/opt/temip/tfc/include -I//usr/opt/temip/mmtoolkit/include -I//usr/opt/temip/acloc/include -I//usr/opt/temip/ocs/include -D_RWCONFIG_m -o temip_ef_user_library.o temip_ef_user_library.cxx
**"/opt/SUNWspro/prod/include/CC/Cstd/rw/traits", line 535: Error: The function "wcsstr" must have a prototype.*
*1 Error(s) detected.
*** Error code 1
The following command caused the error:
`echo "/opt/SUNWspro/bin/CC -c -m64 -xcode=pic32 -g -xO0 -D_POSIX_PTHREAD_SEMANTICS -mt -pto -I/usr/opt/temip/tfc/include -I//usr/opt/temip/mmtoolkit/include -I//usr/opt/temip/acloc/include -I//usr/opt/temip/ocs/include -D_RWCONFIG_m " | sed 's/[    ][      ]*/ /g'` -o temip_ef_user_library.o temip_ef_user_library.cxx
make: Fatal error: Command failed for target `temip_ef_user_library.o'
does anyone has an idea ?
thank you for your help.
regards,
Christine

Notes for future posting:
1. When you have a question about patches, please also provide the one-line patch description. Otherwise, anyone who might be inclined to help first has to look them up. Making volunteers do extra work to help you for free is not the best strategy. 119254-73 Install and Patch Utilities Patch (unlikely to affect compiling programs)
124867-14 Patch for C 5.9 compiler (unlikely to affect C++ compiling)
124863-23 Patch for Sun C++ 5.9 Compiler (Aha!)   <-----------
124870-03 Patch for Sun Performance Library (unlikely to affect compiling programs)
124872-07 Patch for dbx 7.6 Debugger (unlikely to affect compiling programs)
126495-04 Patch for debuginfo handling  (unlikely to affect compiling programs)
126995-04 Patch for Performance Analyzer Tools (unlikely to affect compiling programs)
127000-13 Patch for Fortran 95 8.3 Compiler (unlikely to affect C++ compiling)
127001-04 Patch for Fortran 95 8.3 Dynamic Libraries (unlikely to affect compiling programs)
127143-03 Patch for Fortran 95 8.3 Support Library (unlikely to affect compiling programs)
118683-05 Patch for profiling libraries and assembler (could possibly affect compiling C++)  <----------
119963-20 Shared library patch for C++ (unlikely to affect C++ compiling)
120753-08 Microtasking libraries (libmtsk) patch (unlikely to affect compiling programs)If you had gone through this exercise, you could have eliminated many of these patches from consideration. For example, a Fortran runtime library patch or a dbx patch cannot cause the C++ compiler to generate a compile-time error that it did not generate before.
2. Put all source code and error messages in "code" tags, as you did with the list of patches. The non-alphanumeric characters in source code and messages can be interpreted as formatting directives instead of being displayed. The result is often nonsense or is hard to read.
Notes on the command line:
1. The -xO0 option is not supported, and has unpredictable results. If you do not want optimization because you want to debug the code, use either no -xOn option, or use -xO1. Using no option is generally preferred: compilation is faster, and the generated code is usually better than with -xO1.
2. The -pto (-instances=static) option is generally a really bad idea. Unless you have a specific reason why you need this template compilation mode, you should remove the -pto option from all command lines (to use the default -instances=global mode), delete all your binaries, and rebuild the application.
Neither of these problems causes the error message, however.
What could be wrong
Also on the command line is a macro definition that appears to be -D_RWCONFIG_m
Is that the correct rendering of the option? If not, please show the command line again inside "code" tags.
I'm concerned that you are trying to override a configuration macro for libCstd, the C++ runtime library. Doing so is not supported and has unpredictable results. If -D_RWCONFIG_m is what is really on the command line, it will not cause a problem with the library.
Except for the possible macro definition issue, finding the problem will require looking at the source code. Since the error message refers to one of the compiler's own headers, the most likely possibilities are
1. A bug in the headers that might be fixed in a later patch -- 124863-23 is not the most recent patch.
2. An error in your code that worked only by accident before. I'm thinking of an inappropriate macro definition.
If you strip everything out of the temip_ef_user_library.cxx file after all the #include directives, you should be able to compile the resulting file and see the same error message. If so, please post that small file here (inside "code" tags).

Similar Messages

  • Compiler Error after Upgrading Sun Studio 12 to Solaris Studio 12.3

    This code compiled with Solaris Studio CC: Sun C++ 5.9 SunOS_sparc Patch 124863-02 2007/12/18
    but fails to compile under CC: Sun C++ 5.12 SunOS_sparc Patch 148506-14 2013/09/24
    CC -features=zla -mt -g -library=Cstd  -DACE_HAS_KSTAT -DACE_HAS_CUSTOM_EXPORT_MACROS=0 -D_POSIX_PTHREAD_SEMANTICS   -I/export/home/ttp/ACE_wrappers -DACE_HAS_SCTP -DACE_HAS_LKSCTP -D__ACE_INLINE__ -I../jpeg-6b -I../tiff-v3.5.7/libtiff/ -I../tags/ -I/RogueWave/SourcePro/12.5 -D_XPG4_2 -D__EXTENSIONS__ -D_RWCONFIG_15d -DRW_MULTI_THREAD -D_REENTRANT -DTTPVERSIONKEY=\"7.00-alpha-2013/11/15\" -DRW_USER_TRACE_LEVEL=5  -c -KPIC -o .shobj/julian.o julian.cc
    Error Message: "/opt/solarisstudio12.3/prod/include/CC/Cstd/rw/traits", line 538: Error: The function "wcsstr" must have a prototype
    If I add the -H to trace the headers this is what I get below. I have been fighting with this for a week now and really don't know what to do at this point. We use the RogueWave libraries with the Solaris Studio Compiler for more additional libraries but RogueWave says our version is compatible with Solaris Studio 12.3 and in fact we successfully compiled the RogueWave libraries with this compiler. I"m sure it something in our code but I can't quite figure it out.
    =~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2013.11.15 17:45:03 =~=~=~=~=~=~=~=~=~=~=~=
    gmake -f GNUmakefile.TTPLib
    GNUmakefile: /export/home/ttp/ttproot/ttp/TTPLib/GNUmakefile.TTPLib MAKEFLAGS=
    CC -features=zla -H -mt -g -library=Cstd  -DACE_HAS_KSTAT -DACE_HAS_CUSTOM_EXPORT_MACROS=0 -D_POSIX_PTHREAD_SEMANTICS   -I/export/home/ttp/ACE_wrappers -DACE_HAS_SCTP -DACE_HAS_LKSCTP -D__ACE_INLINE__ -I../jpeg-6b -I../tiff-v3.5.7/libtiff/ -I../tags/ -I/RogueWave/SourcePro/12.5 -D_XPG4_2 -D__EXTENSIONS__ -D_RWCONFIG_15d -DRW_MULTI_THREAD -D_REENTRANT -DTTPVERSIONKEY=\"7.00-alpha-2013/11/15\" -DRW_USER_TRACE_LEVEL=5  -c -KPIC -o .shobj/julian.o julian.cc
    julian.h
            /usr/include/time.h
                    /usr/include/sys/feature_tests.h
                            /usr/include/sys/ccompile.h
                            /usr/include/sys/isa_defs.h
                    /usr/include/iso/time_iso.h
                    /usr/include/sys/types.h
                            /usr/include/sys/machtypes.h
                            /usr/include/sys/int_types.h
                            /usr/include/sys/select.h
                                    /usr/include/sys/time_impl.h
                                    /usr/include/sys/time.h
                                            /usr/include/sys/types.h
                                            /usr/include/sys/select.h
            defines.h
                    /opt/solarisstudio12.3/prod/include/CC/Cstd/deque
                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/stddefs.h
                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/stdcomp.h
                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/compnent.h
                                    /usr/include/stddef.h
                                            /usr/include/iso/stddef_iso.h
                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/rwdispatch.h
                            /opt/solarisstudio12.3/prod/include/CC/Cstd/algorithm
                                    /usr/include/stdlib.h
                                            /usr/include/iso/stdlib_iso.h
                                            /usr/include/iso/stdlib_c99.h
                                            /usr/include/sys/wait.h
                                                    /usr/include/sys/resource.h
                                                    /usr/include/sys/siginfo.h
                                                            /usr/include/sys/machsig.h
                                                    /usr/include/sys/procset.h
                                                            /usr/include/sys/signal.h
                                                                    /usr/include/sys/iso/signal_iso.h
                                                                            /usr/include/sys/unistd.h
                                                                    /usr/include/sys/ucontext.h
                                                                            /usr/include/sys/regset.h
                                                                                    /usr/include/v7/sys/privregs.h
                                                                                            /usr/include/v7/sys/psr.h
                                                                                            /usr/include/sys/fsr.h
                                                                            /usr/include/sys/signal.h
                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/iterator
                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/iterator
                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/ostream
                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/ios
                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/rwstderr.h
                                                                    /usr/include/stdarg.h
                                                                            /usr/include/iso/stdarg_iso.h
                                                                                    /usr/include/sys/va_impl.h
                                                                                            /usr/include/sys/va_list.h
                                                                            /usr/include/iso/stdarg_c99.h
                                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/rwstderr_macros.h
                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/rwlocale
                                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/string
                                                                            /usr/include/string.h
                                                                                    /usr/include/iso/string_iso.h
                                                                            /usr/include/ctype.h
                                                                                    /usr/include/iso/ctype_iso.h
                                                                                    /usr/include/iso/ctype_c99.h
                                                                            /usr/include/wchar.h
                                                                                    /usr/include/iso/wchar_iso.h
                                                                                            /usr/include/stdio_tag.h
                                                                                            /usr/include/wchar_impl.h
                                                                                            /usr/include/stdio.h
                                                                                                    /usr/include/iso/stdio_iso.h
                                                                                                            /usr/include/stdio_impl.h
                                                                                                    /usr/include/iso/stdio_c99.h
                                                                                    /usr/include/iso/wchar_c99.h
                                                                            /usr/include/wctype.h
                                                                                    /usr/include/iso/wctype_iso.h
                                                                                    /usr/include/iso/wctype_c99.h
                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/string_ref
                                                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/memory
                                                                                            /usr/include/limits.h
                                                                                                    /usr/include/iso/limits_iso.h
                                                                                                    /usr/include/sys/int_limits.h
                                                                                            /opt/solarisstudio12.3/prod/include/CC/new
                                                                                                    /opt/solarisstudio12.3/prod/include/CC/exception
                                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/utility
                                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/stdmutex.h
                                                                                                    /usr/include/pthread.h
                                                                                                            /usr/include/sched.h
                                                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/traits
                                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/iotraits
                                                                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/iosfwd
                                                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/traits
    "/opt/solarisstudio12.3/prod/include/CC/Cstd/rw/traits", line 538: Error: The function "wcsstr" must have a prototype.
                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/stdexcept
                                                                    /opt/solarisstudio12.3/prod/include/CC/typeinfo
                                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/locimpl
                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/locvector
                                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/vendor
                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/ctype
                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/numeral
                                                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/iosbase
                                                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/limits
                                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/math.h
                                                                                                    /usr/include/math.h
                                                                                                            /usr/include/iso/math_iso.h
                                                                                                            /usr/include/iso/math_c99.h
                                                                                                            /usr/include/floatingpoint.h
                                                                                                                    /usr/include/sys/ieeefp.h
                                                                                            /usr/include/float.h
                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/codecvt
                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/usefacet
                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/streambuf
                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/istream
                    /opt/solarisstudio12.3/prod/include/CC/Cstd/set
                            /opt/solarisstudio12.3/prod/include/CC/Cstd/functional
                            /opt/solarisstudio12.3/prod/include/CC/Cstd/rw/tree
                    /usr/include/sys/param.h
            messages.h
                    /usr/include/assert.h
                    /opt/solarisstudio12.3/prod/include/CC/Cstd/list
                    /RogueWave/SourcePro/12.5/rw/trace/trace.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceSetState.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceEventSeverity.h
                                    /RogueWave/SourcePro/12.5/rw/trace/pkgdefs.h
                                            /RogueWave/SourcePro/12.5/rw/config/rwconfig_trace.h
                                                    /RogueWave/SourcePro/12.5/rw/config/rwconfig.h
                                                    /RogueWave/SourcePro/12.5/rw/config/rwc_trace_15d.h
                                                            /RogueWave/SourcePro/12.5/rw/config/rwconfig_tls.h
                                                                    /RogueWave/SourcePro/12.5/rw/config/rwc_tls_15d.h
                                            /RogueWave/SourcePro/12.5/rw/defs.h
                                                    /usr/include/assert.h
                                                    /RogueWave/SourcePro/12.5/rw/compiler.h
                                                            /RogueWave/SourcePro/12.5/rw/config/rwconfig_tls.h
                                                                    /RogueWave/SourcePro/12.5/rw/config/rwc_tls_15d.h
                                                    /RogueWave/SourcePro/12.5/rw/typedefs.h
                                                            /RogueWave/SourcePro/12.5/rw/config/rwconfig_tls.h
                                                                    /RogueWave/SourcePro/12.5/rw/config/rwc_tls_15d.h
                                                    /RogueWave/SourcePro/12.5/rw/limits.h
                                                            /RogueWave/SourcePro/12.5/rw/config/rwconfig_tls.h
                                                                    /RogueWave/SourcePro/12.5/rw/config/rwc_tls_15d.h
                                                    /RogueWave/SourcePro/12.5/rw/rwwind.h
                                                    /RogueWave/SourcePro/12.5/rw/compat.h
                                                            /RogueWave/SourcePro/12.5/rw/defs.h
                                                    /RogueWave/SourcePro/12.5/rw/utility.h
                                                            /RogueWave/SourcePro/12.5/rw/defs.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceEvent.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceEventClient.h
                                    /RogueWave/SourcePro/12.5/rw/trace/except.h
                                            /RogueWave/SourcePro/12.5/rw/rwerr.h
                                    /RogueWave/SourcePro/12.5/rw/trace/fwd.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceEventClientImp.h
                                    /RogueWave/SourcePro/12.5/rw/trace/RWTraceEventFilter.h
                                    /RogueWave/SourcePro/12.5/rw/ref.h
                                            /RogueWave/SourcePro/12.5/rw/tools/atomic.h
                                                    /RogueWave/SourcePro/12.5/rw/tools/atomics/atomic_sunpro.h
                                                            /RogueWave/SourcePro/12.5/rw/tools/atomicorder.h
                                                            /usr/include/sys/atomic.h
                                                                    /usr/include/sys/inttypes.h
                                                                            /usr/include/sys/int_const.h
                                                                            /usr/include/sys/int_fmtio.h
                                                            /usr/include/stdint.h
                                                                    /usr/include/sys/stdint.h
                                    /RogueWave/SourcePro/12.5/rw/mutex.h
                                            /usr/include/synch.h
                                                    /usr/include/sys/machlock.h
                                                    /usr/include/sys/synch.h
                                            /usr/include/thread.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceOstreamClient.h
                                    /RogueWave/SourcePro/12.5/rw/rstream.h
                                            /RogueWave/SourcePro/12.5/rw/tools/ristream.h
                                            /RogueWave/SourcePro/12.5/rw/tools/rostream.h
                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/iostream
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceOstreamClientImp.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceEventFilterImp.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceSingleClientFilter.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceSingleClientFilterImp.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceLevelFilter.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceLevelFilterImp.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceMultiClientFilter.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceMultiClientFilterImp.h
                                    /RogueWave/SourcePro/12.5/rw/tvordvec.h
                                            /RogueWave/SourcePro/12.5/rw/epersist.h
                                                    /RogueWave/SourcePro/12.5/rw/vstream.h
                                                    /RogueWave/SourcePro/12.5/rw/rwfile.h
                                                    /RogueWave/SourcePro/12.5/rw/toolerr.h
                                                            /RogueWave/SourcePro/12.5/rw/message.h
                                                    /RogueWave/SourcePro/12.5/rw/rwstore.h
                                                            /RogueWave/SourcePro/12.5/rw/rwassert.h
                                                            /RogueWave/SourcePro/12.5/rw/rwset.h
                                                                    /RogueWave/SourcePro/12.5/rw/hashtab.h
                                                                            /opt/solarisstudio12.3/prod/include/CC/Cstd/vector
                                                                            /RogueWave/SourcePro/12.5/rw/colclass.h
                                                                                    /RogueWave/SourcePro/12.5/rw/collect.h
                                                                                            /RogueWave/SourcePro/12.5/rw/stringid.h
                                                                                                    /RogueWave/SourcePro/12.5/rw/edefs.h
                                                                                                            /RogueWave/SourcePro/12.5/rw/tools/traits/RWTIdentity.h
                                                                                                            /RogueWave/SourcePro/12.5/rw/tools/traits/RWTIsSame.h
                                                                                                                    /RogueWave/SourcePro/12.5/rw/tools/traits/RWFalseType.h
                                                                                                                    /RogueWave/SourcePro/12.5/rw/tools/traits/RWTrueType.h
                                                                                                            /RogueWave/SourcePro/12.5/rw/tools/traits/RWTRemoveReference.h
                                                                                                                    /RogueWave/SourcePro/12.5/rw/tools/traits/RWTIsLvalueReference.h
                                                                                                                    /RogueWave/SourcePro/12.5/rw/tools/traits/RWTIsRvalueReference.h
                                                                                                    /RogueWave/SourcePro/12.5/rw/cstring.h
                                                                                                            /RogueWave/SourcePro/12.5/rw/tools/stdcstring.h
                                                                                                                    /RogueWave/SourcePro/12.5/rw/tools/hash.h
                                                                                                                            /RogueWave/SourcePro/12.5/rw/tools/traits/RWTConditional.h
                                                                                                                    /RogueWave/SourcePro/12.5/rw/tools/cstrutil.h
                                                                                            /RogueWave/SourcePro/12.5/rw/mempool.h
                                                                                    /RogueWave/SourcePro/12.5/rw/iterator.h
                                            /RogueWave/SourcePro/12.5/rw/epfunc.h
                                            /RogueWave/SourcePro/12.5/rw/tools/algorithm.h
                                                    /RogueWave/SourcePro/12.5/rw/tools/iterator.h
                                            /RogueWave/SourcePro/12.5/rw/tools/traits/RWTEnableIf.h
                                            /RogueWave/SourcePro/12.5/rw/tools/traits/RWTIsIntegral.h
                                                    /RogueWave/SourcePro/12.5/rw/tools/traits/RWTRemoveCV.h
                                                            /RogueWave/SourcePro/12.5/rw/tools/traits/RWTRemoveConst.h
                                                                    /RogueWave/SourcePro/12.5/rw/tools/traits/RWTIsConst.h
                                                            /RogueWave/SourcePro/12.5/rw/tools/traits/RWTRemoveVolatile.h
                                                                    /RogueWave/SourcePro/12.5/rw/tools/traits/RWTIsVolatile.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceManager.h
                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceManagerImp.h
                                    /RogueWave/SourcePro/12.5/rw/once.h
                                    /RogueWave/SourcePro/12.5/rw/tvslist.h
                                            /RogueWave/SourcePro/12.5/rw/stdex/slist.h
                            /RogueWave/SourcePro/12.5/rw/trace/userdefs.h
                                    /RogueWave/SourcePro/12.5/rw/trace/tracemacros.h
                                            /RogueWave/SourcePro/12.5/rw/tools/cstrstrm.h
                                                    /opt/solarisstudio12.3/prod/include/CC/Cstd/sstream
                                            /RogueWave/SourcePro/12.5/rw/trace/RWTraceEntryExit.h
                    /RogueWave/SourcePro/12.5/rw/sync/RWMutexLock.h
                            /RogueWave/SourcePro/12.5/rw/sync/pkgdefs.h
                                    /RogueWave/SourcePro/12.5/rw/config/rwconfig_sync.h
                                            /RogueWave/SourcePro/12.5/rw/config/rwc_sync_15d.h
                                                    /RogueWave/SourcePro/12.5/rw/config/rwconfig_tls.h
                                                            /RogueWave/SourcePro/12.5/rw/config/rwc_tls_15d.h
                                                    /RogueWave/SourcePro/12.5/rw/config/rwconfig_trace.h
                                                            /RogueWave/SourcePro/12.5/rw/config/rwc_trace_15d.h
                                                    /RogueWave/SourcePro/12.5/rw/config/rwconfig_threxcept.h
                                                            /RogueWave/SourcePro/12.5/rw/config/rwc_threxcept_15d.h
                                                                    /RogueWave/SourcePro/12.5/rw/config/rwconfig_tls.h
                                                                            /RogueWave/SourcePro/12.5/rw/config/rwc_tls_15d.h
                                                                    /RogueWave/SourcePro/12.5/rw/config/rwconfig_trace.h
                                                                            /RogueWave/SourcePro/12.5/rw/config/rwc_trace_15d.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWSynchObject.h
                                    /RogueWave/SourcePro/12.5/rw/sync/RWCancellationState.h
                                    /RogueWave/SourcePro/12.5/rw/threxcept/threxcept.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRBoundsError.h
                                                    /RogueWave/SourcePro/12.5/rw/threxcept/pkgdefs.h
                                                            /RogueWave/SourcePro/12.5/rw/config/rwconfig_threxcept.h
                                                                    /RogueWave/SourcePro/12.5/rw/config/rwc_threxcept_15d.h
                                                    /RogueWave/SourcePro/12.5/rw/threxcept/thrmsg.h
                                                    /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRIllegalUsage.h
                                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRxmsg.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRExternalError.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRIllegalAccess.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRInternalError.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRInvalidPointer.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHROperationAborted.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHROperationCanceled.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHROperationNotAvailable.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHROperationNotImplemented.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHROperationNotSupported.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHROperationTerminated.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRPermissionError.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRResourceLimit.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRThreadActive.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTHRThreadNotActive.h
                                            /RogueWave/SourcePro/12.5/rw/threxcept/RWTTHRCompatibleException.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWTLockGuard.h
                                    /RogueWave/SourcePro/12.5/rw/sync/RWTLockGuardBase.h
                                            /RogueWave/SourcePro/12.5/rw/sync/RWTGuardBase.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWTReadLockGuard.h
                                    /RogueWave/SourcePro/12.5/rw/sync/RWTReadLockGuardBase.h
                                            /RogueWave/SourcePro/12.5/rw/sync/RWTReadGuardBase.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWTWriteLockGuard.h
                                    /RogueWave/SourcePro/12.5/rw/sync/RWTWriteLockGuardBase.h
                                            /RogueWave/SourcePro/12.5/rw/sync/RWTWriteGuardBase.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWTTryLockGuard.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWTTryReadLockGuard.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWTTryWriteLockGuard.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWTUnlockGuard.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWTReadUnlockGuard.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWTWriteUnlockGuard.h
                            /RogueWave/SourcePro/12.5/rw/sync/RWThreadId.h
                    messageutilities.h
    "messages.h", line 248: Warning: Implicit int is not supported in C++.
    1 Error(s) and 1 Warning(s) detected.
    gmake: *** [.shobj/julian.o] Error 2
    tip1[~/ttproot/ttp/TTPLib]$

    I resolved this issue. The 2 defines: -D_XPG4_2 -D__EXTENSIONS__ are no longer needed and actually shouldn't be used.
    Dave

  • Process.conf file not found after installing Sun One Portal Server 6.0

    This extract is from the Sun One Portal Server development guide for logging error or logs in log file. This says that to generate the log, entry should be done to enable logging in process.conf file. I could not find any such file after installing Sun One Portal Server 6.0.
    Any help will be appreciated...
    Reporting Errors to the Robot Log File
    When problems occur, robot application functions should return an appropriate response status code (such as REQ_ABORTED), and they should also log an error inthe error log file.
    To use the error-logging functionality, you must include the file log.h in thesdk/robot/include/libcs directory. After you have ensured that log.h exists in the correct place, you can use the cslog_error macro to report errors. The prototype is in the following format:
    cslog_error(int n, int loglevel, char* errorMessage)
    The first parameter is not currently used (may be used in the future) You can pass
    this as any integer.
    The second parameter is the log level. When the log level is less than or equal to the log level setting in the file process.conf, the error message is written in the robot.log.

    Since removing the log settings from magnus.conf failed to fix the problem, the log settings are probably not the source of the problem.
    Did anything else - e.g. ColdFusion configuration changes - occur at about the same time you changed the log settings?

  • Relinking errors after installing 12.1.1 on XP with VC++ (VS2008 Express)

    Hi,
    I am facing a lot of relinking errors after installing 12.1.1 on XP with VC++ (VS2008 Express Edition).
    I had followed Oracle E-Business Suite R12 Installation Steps on Windows XP (Oracle E-Business Suite R12 Installation Steps on Windows XP and for VS2008 have followed metalink note MS Visual Studio 2008 and Visual C++ 2008 Express for Oracle E-Business Suite Release 12 on Windows [ID 1070674.1]
    After applying the patch from section 1 9491976, there are a lot of relinking issues as follows:
    =========================
    Relinking module 'ADCONV.exe' in product fnd ...
    gnumake -f
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk
    D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/ADCONV.exe
    Starting link of fnd executable 'ADCONV.exe' on Thu Apr 22 15:28:28 IST 2010
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk:758:
    *** target pattern contains no `%'. Stop.
    Done with link of fnd executable 'ADCONV.exe' on Thu Apr 22 15:28:28 IST 2010
    Relink of module "ADCONV.exe" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Relinking module 'AFTBLGEN.exe' in product fnd ...
    gnumake -f
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk
    D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/AFTBLGEN.exe
    Starting link of fnd executable 'AFTBLGEN.exe' on Thu Apr 22 15:28:28 IST
    2010
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk:758:
    *** target pattern contains no `%'. Stop.
    Done with link of fnd executable 'AFTBLGEN.exe' on Thu Apr 22 15:28:28 IST
    2010
    Relink of module "AFTBLGEN.exe" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Relinking module 'APPR60UE.dll' in product fnd ...
    Removing any existing temp directory
    rm -rf temp
    creating the temp directory
    mkdir temp
    changing permissions for the temp directory
    chmod 777 temp
    Getting the object file names for this APPR60UE.dll
    gnumake -f
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk
    appr60ue.LIST
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_2360.mk:758:
    *** target pattern contains no `%'. Stop.
    Unable to get the objects for module "APPR60UE.dll".
    See error messages above (also recorded in log file)
    for possible reasons for the failure.
    adrelink is exiting with status 1
    =========================================
    Has anyone faced something similar in the past?
    Regards,
    Neeraj

    Hi Helios,
    That got resolved after I added the location of the dll in the PATH.
    Now i m getting LINK : fatal error LNK1181: cannot open input file 'LIB/KERNEL32.LIB'
    The log looks like:
    Relinking module 'fndcpesr.exe' in product fnd ...
    gnumake -f
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk
    D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.exe
    Starting link of fnd executable 'fndcpesr.exe' on Thu Apr 22 17:35:31 IST
    2010
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk:2908:
    warning: overriding commands for target
    `D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk:759:
    warning: ignoring old commands for target
    `D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk:2955:
    warning: overriding commands for target
    `D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    D:/oracle/LADPCDEV/apps/apps_st/appl/admin/LADPCDEV/out/link_fnd_5384.mk:1340:
    warning: ignoring old commands for target
    `D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    link.exe
    -MAP:D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.map
    -NODEFAULTLIB -NOLOGO -SUBSYSTEM:CONSOLE -ENTRY:mainCRTStartup
    -OUT:D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.exe
    D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/lib/fdpesr.obj \
         D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/lib/FNDCORE.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/precomp/lib/msvc/orasql10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/precomp/lib/msvc/orasqx10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/RDBMS/lib/oraclient10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/RDBMS/lib/oracommon10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/NETWORK/lib/oranro10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/NETWORK/lib/oran10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/NETWORK/lib/oranl10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/lib/oranls10.lib
    D:/oracle/LADPCDEV/apps/tech_st/10.1.2/lib/oracore10.lib /LIB/MSVCRT.LIB
    /LIB/OLDNAMES.LIB "LIB"/KERNEL32.LIB "LIB"/USER32.LIB "LIB"/ADVAPI32.LIB
    "LIB"/WINSPOOL.LIB "LIB"/COMDLG32.LIB "LIB"/GDI32.LIB "LIB"/VERSION.LIB
    LINK : warning LNK4044: unrecognized option '/LIB/MSVCRT.LIB'; ignored
    LINK : warning LNK4044: unrecognized option '/LIB/OLDNAMES.LIB'; ignored
    LINK : fatal error LNK1181: cannot open input file 'LIB/KERNEL32.LIB'
    gnumake: ***
    [D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.exe] Error 157
    Done with link of fnd executable 'fndcpesr.exe' on Thu Apr 22 17:35:31 IST
    2010
    Relink of module "fndcpesr.exe" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory D:/oracle/LADPCDEV/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Regards,
    Neeraj

  • TNS Error after Install

    Hi All,
    Platform - Oracle 10gR2 Ent Edition on RHEL 5.5 (64-Bit)
    After Installing we patched with the PSU - p6810189_10204_Linux-x86-64 and p8576156_10204_Linux-x86-64
    After creating the database; we got the error;
    ORA-01102: cannot mount database in EXCLUSIVE mode
    so we followed the workaround as in [ID 1034037.6] and able to start the database properly.
    We created 2 instances on the same server (VMWARE)
    I am keep on getting this ERROR continuously in alert_log file  and generating so many trace file's .
      This is happening just after creating the database ,
    please help me in this ,  and attaching cfglog files also.
    IN THE ALERT_LOG this is the error............
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    MMNL started with pid=12, OS id=2920
    Fri Jan  7 12:44:07 2011
    starting up 1 shared server(s) ...
    Fri Jan  7 12:44:07 2011
    dispatcher 'D000' encountered error getting listening address
    Fri Jan  7 12:44:07 2011
    Errors in file /app/oracle/admin/UBI/bdump/ubimast_ora_2922.trc:
    ORA-07445: exception encountered: core dump [kslgetl()+131] [SIGSEGV] [Address not mapped to object] [0x000000208] [] []
    ORA-00108: failed to set up dispatcher to accept connection asynchronously
    IN THE TRACE FILE this is the error.................
    Warning: keltnfy call to ldmInit failed with error 46
    *** 2011-01-07 12:09:25.178
    network error encountered getting listening address:
      NS Primary Error: TNS-12533: TNS:illegal ADDRESS parameters
      NS Secondary Error: TNS-12560: TNS:protocol adapter error
      NT Generic Error: TNS-00503: Illegal ADDRESS parameters
    OPIRIP: Uncaught error 108. Error stack:
    ORA-00108: failed to set up dispatcher to accept connection asynchronously
    Exception signal: 11 (SIGSEGV), code: 1 (Address not mapped to object), addr: 0x208, PC: [0x7a0633, kslgetl()+131]
    *** 2011-01-07 12:09:25.183
    ksedmp: internal or fatal error
    ORA-07445: exception encountered: core dump [kslgetl()+131] [SIGSEGV] [Address not mapped to object] [0x000000208] [] []
    ORA-00108: failed to set up dispatcher to accept connection asynchronously

    Hi user;
    ORA-07445: exception encountered: core dump [kslgetl()+131] [SIGSEGV] [Address not mapped to object] [0x000000208] [] []
    ORA-00108: failed to set up dispatcher to accept connection asynchronouslyPelase check below notes:
    Master Note for Diagnosing ORA-7445 [ID 1092855.1]
    Master Note for Diagnosing ORA-7445 [ID 1092855.1]
    alo see below thread for ORA-00108: error
    budmp is getting filled with all trace files
    If those note and link doesnt help i suggest log a SR
    Regard
    Helios

  • 'CRT not initialized' error after installing MS Office 2010

    Hi,
    I encountered 'CRT not initialized error' after installing MS Office 2010. I think that with previous version of CVI there were no problems. But, with Labwindows/CVI 2012 error has outbroken. The details are as follows.
    - OS : windows 7 Enterprise (32bit)
    - Labwindows/CVI (v12.0.0 (422))
    - MS Office 2010 (word, powerpoint, excel)
    #1. clean install windows 7 (32 bit)
    #2. install Labwindows/CVI v12.0.0 and device drivers (DAQ, Motion)
    #3. compile and run attached test program : SUCCESS
    #4. online update windows 7 (service pack, explorer 9, and etc)
    #5. compile and run attached test program : SUCCESS
    #6. install MS Office 2010
    #7. compile and run attached test program : 'CRT error'
    #8. uninstall MS Office 2010
    #9. compile and run attached test program : SUCCESS
    I think there are some conflicts between office 2010 and labwindows v12.0.0. How can I solve this problem?
    Thank you in advance.
    Attachments:
    step7-CRT error.jpg ‏31 KB
    test program.zip ‏3305 KB

    More specifically, I decided that some parts of MS Office files and features of NI's motion library conflicts. Because in the attacted sample program, if I exclude NI-Motion functions then the program excutes nicely. But if I include NI-Motion fucntion, for example flex_select_signal, then the 'CRT not initialized' error occurs.
    To solve this problem I tried step by step installation check for MS Office 2010. During each step I included more optional features in MS Office and after each installation I compiled and executed my sample program. At finally, I found that the addtional part of MS Office 2010, if I install Office Sharing Function>Microsoft IME(Korean), then the 'CRT not initialized' error occurs.
    Temporarly, I solved the problem with NOT installing 'Office Sharing Function>Microsoft IME(Korean)' optional feature in the MS Office 2010.
    Could you tell me why this problem occur?

  • Hello, I trying to update Adobe Creative Cloud Desktop but there is an error after instalation (error code: 50)

    Hello, I trying to update Adobe Creative Cloud Desktop but there is an error after instalation (error code: 50)
    Uninstalling and installing again - nothing change.

    Hi slawek,
    Please refer to the thread below where this issue has been discussed:
    Error code 50
    Regards,
    Sheena

  • Error after Install SAP NetWeaver 7.01 ABAP Trial Version

    Hi Everyone,
    I am new on SAP and I am getting this error after install SAP Netweaver 7.01 ABAP Trial version in my notebook.
    It is Windows Vista Basic, 3GB of RAM, 2.1 Core Duo 2.
    Installed successfully, but when I go to "Start" in sevidor it returns the following error, and not start:
    Error! Connection failed to node (local) for database NSP:
    -24700,ERR_DBMSRV_NOSTART: Could not start DBM server.
    -24832,ERR_SHMNOTAVAILABLE: Shared memory not available
    -24827,ERR_SHMALLOCFAILED: ID C:\sapdb\data\wrk\NSP.dbm.shi, requested size 2560
    Someone could help me?

    Hello Marques Polastri ,
    ->Please check/stop all database applications and tools, like DBMGUI and dbmcli ... Then check/kill all processes left with name dbmsrv.exe, if you will still have them. After that rename C:\sapdb\data\wrk\NSP.dbm.shi and C:\sapdb\data\wrk\NSP.dbm.shm, shared memory files, to  C:\sapdb\data\wrk\NSP.dbm.shi.old and C:\sapdb\data\wrk\NSP.dbm.shm.old.
    Try to connect to the database NSP & let us know the results.
    -> Please update with output of the following commands:
           dbmcli db_enum
           dbmcli -d NSP -u <control>,<pwd> db_state
    Thank you and best regards, Natalia Khlopina

  • Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110

    eth0      Link encap:Ethernet  HWaddr 00:15:17:F7:81:53 
              inet addr:192.1.1.11  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::215:17ff:fef7:8153/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:220 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:100
              RX bytes:0 (0.0 b)  TX bytes:15868 (15.4 KiB)
              Memory:dfcc0000-dfce0000
    eth1      Link encap:Ethernet  HWaddr B8:AC:6F:92:C2:0C 
              inet addr:192.1.1.9  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::baac:6fff:fe92:c20c/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:263812 errors:0 dropped:0 overruns:0 frame:0
              TX packets:58 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:18959341 (18.0 MiB)  TX bytes:9476 (9.2 KiB)
              Interrupt:169 Memory:dfbf0000-dfc00000
    lo        Link encap:Local Loopback 
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:1393 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1393 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:4035655 (3.8 MiB)  TX bytes:4035655 (3.8 MiB)Any help please. I am a first time Linux user.
    Thanks
    A/A

    This looks like a follow up of Re: Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110
    Can you give more details what you are trying to do or trying to accomplish. Where are you trying to ping to?
    It could be that you have not defined your gateway or DNS server for name to IP mapping. What is the output of
    # netstat -rn
    # cat /etc/resolv.conf

  • After installing Sun Studio 11, libfsu.a in Sun Forte  6 is removed.

    I have Sun compilers 5.0 and 6.2 on my Sun Solaris 8 Ultra Sparc machine. After installing Sun Studio 11, some library files (e.g., libfsu.a in Sun Forte 6) from the old compilers were removed. What is wrong with my installation?
    Note that I install the different versions of compilers in separate directories.

    After the 1st failed installation of Sun studio 11,
    did you making sure that Sun studio 11 is not exist
    on your system before re-install Sun studio 11? The
    rule is you can have different Sun studio releases
    on the same system, but you can not have the
    multiple copy of the same release on the same
    system, even though they are in a totally separate
    directory. If Sun Studio 11 exist after 1st fail
    installation, you need to un-install it first before
    you re-start 2nd installation attemp.
    Installation of Sun Studio 11 should not remove files
    from older releases, but we know the case it did mess
    up package of the older release before.
    -NgocNo, after 1st install failed due to insufficient disk space, I did not uninstall Studio 11. After I deleted some user files to free up disk space, I run the install again, specified the same directory for installation, and just select Sun Performance Libraries. The installation seems to finished successfully. Perhaps this is one scenario where old versions can get messed up.

  • Can't detect my build-in touchpad after installing grub patch

    Hi
    I have installed on my HP Compaq nx8220 solaris 10 01/06 and I had a problem with USB that was solved by installing the pathces required for installing recomanded patch cluster.The problem is that after installing those patches and respecting the README files from every patch my touchpad is not recognise anymore.The mouse should be found in /devices/isa/i8042\@1\,60/mouse\@0.
    Can anyone help me

    Hi
    I have installed on my HP Compaq nx8220 solaris 10 01/06 and I had a problem with USB that was solved by installing the pathces required for installing recomanded patch cluster.The problem is that after installing those patches and respecting the README files from every patch my touchpad is not recognise anymore.The mouse should be found in /devices/isa/i8042\@1\,60/mouse\@0.
    Can anyone help me

  • Getting error after installing admt 3.2

    hi team
    i am getting error after installing the admt 3.2 on server 2008 R2 where i have installed sql server 2008 sp1 with express edition
    the server is a DC
    the error is "Unable to check for failed actions. :DBManager.IManageDB.1 Unable to retrieve the database file pagth from the registry. the system cannot find the file specified"
    Thanks,
    viraj

    You should change the forum type on this to a question.  The way you have this labled as a discussion not a problem.
    See if the link below helps you out.
    http://support.microsoft.com/kb/2266373
    Paul Bergson
    MVP - Directory Services
    MCITP: Enterprise Administrator
    MCTS, MCT, MCSE, MCSA, Security+, BS CSci
    2008, Vista, 2003, 2000 (Early Achiever), NT4
    http://www.pbbergs.com    Twitter @pbbergs
    http://blogs.dirteam.com/blogs/paulbergson
    Please no e-mails, any questions should be posted in the NewsGroup. This posting is provided "AS IS" with no warranties, and confers no rights.

  • My Xperia Mini Pro Touchscreen error after install Custom Rom , and now Bricked / Bootloop

    Hi There. .
    I've some problem here. .
    My Xperia Mini Pro SK17i Touchscreen error after install Custom Rom , and now Bricked / Bootloop
    I've tryin' to use Flashtool and flash Stock Firmware, but it still bricked. .
    Any body may have a sollution for me?

    *Moved to Android development*
    Hopefully you can get some help here.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Error while installing Sun Access Manager

    Hi All,
    I am getting an error while installing Sun Java System Access Manager.The error is ns-slapd.exe is not responding.
    How to resolve my error?
    Thanks in advance.
    regards,
    Keets.

    The ns-slapd.exe process belongs to the Directory Server. You should therefore check if your DS instance is set up properly.
    Michael

  • Getting a reistry error after installing telling me to reinstall itunes

    I am getting a registry error after installing iTunes and tells me that the drivers and data associated with importing CDS or Burning CDs cannot be recoginized and to reinstall Itunes... I have done this about five times now and have removed my computer of all traces of iTunes and am still getting this error. if someone could help it would be greatly apperciated.
    Thanks,

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

Maybe you are looking for