Wls9.2 build error in maven

Hi,
I'm doing wls8.1 to wls 9.2 migration with jdk5. When I changed the classpath to point wls9.2 version of weblogic.jar and webservices.jar from wls8.1 version with jdk5 , I'm seeing following build error.
<Error> <J2EE> <BEA-160187> <weblogic.appc failed to compile your application. Recompile with the -verbose option for more details. Please see the error message(s) below.>
[java] com/bea/xml/XmlException
[java] [ERROR] Java Result: 1
But I ran the maven build script with wls8.1 version of jar(weblogic and webservices.jar) and jdk 5, Build is successful.
Pls let me know why this occurs and how I can correct this errror. Also I'm just seeing the exception, not detail of the exception. It is being hard to debug this exception for me. Any help is highly appreciated.Thx.

Hi I am getting the same error when I am trying to migrate to WL 9.2.
The exception thrown is
[java] com/bea/xml/XmlException
[java] <May 5, 2008 12:05:44 PM EDT> <Error> <J2EE> <BEA-160187> <weblogic.appc failed to compile your application. Recompile with the -verbose option for more details. Please see the error message(s) below.>
BUILD FAILED
Java returned: 1
at org.apache.tools.ant.taskdefs.Java.execute(Java.java:110)
at org.apache.tools.ant.Task.perform(Task.java:341)
at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:232)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
at org.apache.commons.jelly.tags.core.CaseTag.doTag(CaseTag.java:116)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
at org.apache.commons.jelly.tags.core.SwitchTag.doTag(SwitchTag.java:105)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
at org.apache.commons.jelly.impl.DynamicTag.doTag(DynamicTag.java:125)
at org.apache.commons.jelly.impl.StaticTagScript.run(StaticTagScript.java:145)
at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:79)
at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:110)
at com.werken.werkz.Goal.fire(Goal.java:639)
at com.werken.werkz.Goal.attain(Goal.java:575)
at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
at org.apache.maven.jelly.tags.werkz.MavenAttainGoalTag.doTag(MavenAttainGoalTag.java:127)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTag.java:79)
at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.performAction(MavenGoalTag.java:110)
at com.werken.werkz.Goal.fire(Goal.java:639)
at com.werken.werkz.Goal.attain(Goal.java:575)
at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:634)
at org.apache.maven.MavenSession.attainGoals(MavenSession.java:266)
at org.apache.maven.cli.App.doMain(App.java:486)
at org.apache.maven.cli.App.main(App.java:1215)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.werken.forehead.Forehead.run(Forehead.java:551)
at com.werken.forehead.Forehead.main(Forehead.java:581)
File...... file:/opt/app/q1phx1m2/phx_97/STG_97/jelly/weblogic.jelly
Please help
Edited by tirathdesai at 05/05/2008 9:43 AM

Similar Messages

  • Build problem with Maven

    Hi.
    I have upgraded from 1.5 APT to the 1.6 method of doing compile time annotations, and I am runing into a problem trying to build a jar containing my annotations processor.
    I get the error from maven (mvn package)
    [INFO] Compilation failure
    error: Bad service configuration file, or exception thrown while constructing Processor object: javax.annotation.processing.Processor: Provider annotations.processing.processors.CodeAnnotationProcessor not found
    I have the following directory structure
    src
    --main
    ----java
    ------annotations
    --------processing
    ----------processors
    ------------CodeAnnotationProcessor.java
    ----------annotations
    ------------CodeAnnotation.java
    ----resources
    ------META-INF
    --------service
    ----------javax.annotation.processing.Processor
    I build this with the following with maven
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <groupId>mygroup</groupId>
        <artifactId>annotations-processor</artifactId>
        <packaging>jar</packaging>
        <version>1.0.0</version>
        <name>annotations-processor</name>
        <url>http://maven.apache.org</url>
        <dependencies>
            <dependency>
                <groupId>com.sun</groupId>
                <artifactId>tools</artifactId>
                <version>1.4.2</version>
                <scope>system</scope>
                <systemPath>C:/Java/jdk1.6.0_10/lib/tools.jar</systemPath>
            </dependency>
        </dependencies>
        <build>
            <plugins>
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </project>The javax.annotation.processing.Processor file contains
    annotations.processing.processors.CodeAnnotationProcessorAny my
    package annotations.processing.processors;
    import javax.annotation.processing.AbstractProcessor;
    import javax.annotation.processing.RoundEnvironment;
    import javax.annotation.processing.SupportedSourceVersion;
    import javax.annotation.processing.SupportedAnnotationTypes;
    import javax.lang.model.element.TypeElement;
    import javax.lang.model.SourceVersion;
    import java.util.Set;
    @SupportedAnnotationTypes(
            "annotations.processing.annotations.CodeAnnotation")
    @SupportedSourceVersion(SourceVersion.RELEASE_6)
    public class CodeAnnotationProcessor extends AbstractProcessor {
        public boolean process(Set<? extends TypeElement> annotations,
                               RoundEnvironment roundEnv) {
            return true;
    }And my CodeAnnotation is as follows
    package annotations.processing.annotations;
    import java.lang.annotation.Target;
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    @Target(ElementType.TYPE)
    @Retention(RetentionPolicy.SOURCE)
    public @interface CodeAnnotation {
    }

    Milesy wrote:
    Hi.
    I have upgraded from 1.5 APT to the 1.6 method of doing compile time annotations, and I am runing into a problem trying to build a jar containing my annotations processor.
    I get the error from maven (mvn package)
    [INFO] Compilation failure
    error: Bad service configuration file, or exception thrown while constructing Processor object: javax.annotation.processing.Processor: Provider annotations.processing.processors.CodeAnnotationProcessor not foundFor me it worked when I used the settings
    <plugins>
      <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <source>1.6</source>
            <target>1.6</target>
            <fork>true</fork>
            <executable>${java.home}/../bin/javac</executable>
            <compilerArgument>-proc:none</compilerArgument>
          </configuration>
        </plugin>
    </plugins>
    ...Forking the compiler is perhaps not the best option, but its just for the annotation processor.

  • Report Generation Toolkit and Office 10 - build errors

    Using LabView 2011 and Report Generation Toolkit 2011.
    After installing Office 10, I would get build error for Excel-Print.Vi and Excel-SetCell.vi and build is then aborted.
    2011/vi.lib/addons/_office/_excelsub.llb/Excel-Print.vi.
    Says it is unable to save a vi without a block diagram.
    Uninstalled Office 10 and reinstalled Office 2003 and build went thru just fine.
    I can program using Excel 2003 and the compiled executable will work on another computer with Excel 2011 but once I install Office 10 on my LabVIEW computer I cannot build.
    Can't believe I could be the only one to experience this. Any workarounds?

    Duplicate Post

  • Build error: an input parameter is invalid

    I am looking for help with a build error. I am getting the following error message when I try to build a project in 8.5.1:
    Error 1 occurred at Open VI Reference in AB_Source_VI.lvclasspen_Reference.vi->AB_Build.lvclass:Copy_Files.vi->​AB_Application.lvclass:Copy_Files.vi->AB_Build.lvc​lass:Build.vi->AB_EXE.lvclass:Build.vi->AB_Engine_​Build.vi->AB_Build_Invoke.vi->AB_Build_Invoke.vi.P​roxyCaller
    Possible reason(s):
    LabVIEW:  An input parameter is invalid. For example if the input is a path, the path might contain a character not allowed by the OS such as ? or @.
    =========================
    NI-488:  Command requires GPIB Controller to be Controller-In-Charge.
    VI Path:
    Tom Rhoads
    Goodrich FUS
    Vergennes, Vermont

    Arducopter:
    Did you check to see if the KB Hunter posted resolves the issue?
    If you're opening a project in a newer version of LabVIEW, then there's a chance the mass compile tool might work. It will open and save all of the VIs within a specified folder. The tool is fairly self-explanatory, and you can access it from within LabVIEW by going to "Tools --> Advanced --> Mass Compile..."
    Good luck!
    Caleb Harris
    National Instruments | Mechanical Engineer | http://www.ni.com/support

  • Wp8 build error="The name 'InitializeComponent' does not exist in the current context" in app.xaml.cs."

    I added a new xaml page to my project and copy and pasted some regular snippets to it that I've done before to many other pages.  After all the changes looked good to me, I did a rebuild and got this error in the app.xaml.cs which I hadn't changed.
    I also get the same error in the new page I created.  It seems that the xaml design and code are not linked because there are other build errors in the new page's code file that reference other controls in it's design.  Those references also look
    ok to me but they get the similar "The name '.....' does not exist." error. 
    walter fink

    Hi,
    You don’t have “x:Class="DIYMedAPP.App"”
    in your App.xaml file, which caused such error in App.xaml.cs. Please add it.
    <Application
     x:Class="DIYMedAPP.App"
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
     xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">
    <!--Application Resources-->
    <Application.ApplicationLifetimeObjects>
    <!--Required object that handles lifetime events for the application-->
    <shell:PhoneApplicationService
     Launching="Application_Launching"
    Closing="Application_Closing"
     Activated="Application_Activated"
    Deactivated="Application_Deactivated"/>
    </Application.ApplicationLifetimeObjects>
    </Application>
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error 7 Build Error - File not found

    I am trying to build my software to another computer over the network. I am able to  access the directory I am installing to and the program is not indicating any build errors(all VI's are not broken). This error only occurs when building. Any suggestions would be great.
    Thanks,
    Nate 
    The Build was unsuccessful
    Possible Reasons: An included VI or one of its dependencies does not exist. Open all  Startup/Exported/Dynamically called VIs, recompile them  (Ctrl-Shift Click the run arrow), and save them to update their dependencies.
      \\PAINESTORAGE\Engineering\Test & Manufacturing Software\AutoTest Software\Current Version\AutoTest ...
     Extended Details: Visit the Request Support page at ni.com/ask to learn more about resolving this problem. Use the following information as a reference:
      Error 7 occurred at ABAPI Dist Report Read Link Info Error.vi -> ABAPI Dist Cmp Settings to Disk Hier.vi -> ABAPI Get Settings From File2.vi -> EBEP_Invoke_Build_Engine.vi -> EBUIP_Build_Invoke.vi -> EBUIP_Build_Rule_Editor.vi -> EBUIP_Item_OnDoProperties.vi -> EBUIP_Item_OnDoProperties.vi.ProxyCaller
      Possible reason(s):
      LabVIEW:  File not found. The file might have been moved or deleted, or the file path might be incorrectly formatted for the operating system. For example, use \ as path separators on Windows, : on Mac OS, and / on Linux. Verify that the path is correct using the command prompt or file explorer.
    =========================
    NI-488:  Non-existent board.
    -Nate
    Solved!
    Go to Solution.

    Is there a way to see a report of the dynamically called VI's? I inherited this software and am relatively new to LabView...
    -Nate

  • Build Error while trying to import a dc from the track.

    Hi All,
              I  imported a Java perspective Dc from a track to local developement,
              When i tried to build locally developed dc, but i was getting a build error as
    "error reading C:\Documents and Settings
    .dtc\0\DCs\dc_ext_lib\_comp\gen\default\public\Excel_API\lib\java\Jexcel-install.jar; error in opening zip file"
    There was a error in opening the JExcel file.
    Any Ideas?
    Thanks,
    Anil

    Hi Anil,
    I think the jar file(Jexcel-install.jar) is zipped.Unzip the zar file from the folder......lib/java.
    Or else remove the jar file and import the application into NWDS,then add the jar externally from the NWDS.
    Make sure that the dc does not have any files.
    Once you import the dc rightclick on the prj-.properties-.add the external  jar file or directly place the jar file in java folder.
    Regards,
    Lavanya.G

  • How to remove build errors while creating an Order App. for Handhelds

    Hi Friends,
    As per the Tutorial: Developing an Order Application for Handhelds provided at the given link http://help.sap.com/saphelp_nwmobile71/helpdata/en/8F/0B674240449C60E10000000A1550B0/frameset.htm
    I am creating mobile application for PDA . I have finished many steps but at one step I am getting build errors.
    The step is when we create service and paste the code provided in the document.
    public void generateTestData() {
    //@@begin implementation
          if( !(((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).getOrderOrderheaders().size() > 0))
             OrderOrderheader order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0023378");
             order.setLongtext("Repair front door");
             order.setServiceunit("SU01");
             order.setCreatedOn(Date.valueOf("2007-06-30"));
             order.setCreatedAt(Time.valueOf("08:45:00"));
             order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0024897");
             order.setLongtext("Analyse malfunction");
             order.setServiceunit("SU01");
             order.setCreatedOn(Date.valueOf("2007-07-01"));
             order.setCreatedAt(Time.valueOf("09:00:00"));
             order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0034534");
             order.setLongtext("Repair escalator");
             order.setServiceunit("SU03");
             order.setCreatedOn(Date.valueOf("2007-07-03"));
             order.setCreatedAt(Time.valueOf("19:45:00"));
             order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0024589");
             order.setLongtext("Analyse computer problem");
             order.setServiceunit("SU04");
             order.setCreatedOn(Date.valueOf("2007-07-01"));
             order.setCreatedAt(Time.valueOf("15:45:00"));
             order = ((Order_srvModel)OcaRoot.getInstance().getModel(Order_srvModel.class)).createOrderOrderheader();
             order.setOrderid("0027890");
             order.setLongtext("Repair door lock");
             order.setServiceunit("SU03");
             order.setCreatedOn(Date.valueOf("2007-07-05"));
             order.setCreatedAt(Time.valueOf("10:00:00"));
             OcaRoot.getInstance().commit();
    //@@end
    The issue is I am getting a red line below each set methods as I have shown by underlining. I am struggling with how to rectify the error.When I write ORDER and write . after it , it shows only get methods in the popup not the set methods.
    Please suggest .
    It will be a great help.
    Regards,
    Nitesh

    Hi Nitesh
    Check if the data object you created is bi directional in DOE?
    Regards
    Vidyadhar

  • Build error while creating 32-64 universal binary

    Hi All,
    I have to build a bundle in Xcode as part of development.
    While building 32-bit universal, it is not giving any issues. But when I keep 32-64bit universal, I am getting so many build errors. As I have windows background, pretty new to Mac, so any help suggestions will be appreciated.
    Build MSGSmartIssue of project SMASmartIssue with configuration Development
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /GUID.o GUID.cp normal x86_64 c++ com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -I /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework /Versions/A/Frameworks/OSServices.framework/Versions/A/Headers -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/GUID.cp -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/GUID.o
    In file included from /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework /Versions/A/Frameworks/OSServices.framework/Versions/A/Headers/OpenTransportProv iders.h:20,
                     from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/GUID.cp:9:
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::Close()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4369: error: 'OTCloseProvider' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::SetNonBlocking()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4371: error: 'OTSetNonBlocking' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::SetBlocking()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4372: error: 'OTSetBlocking' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsBlocking()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4373: error: 'OTIsBlocking' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsNonBlocking()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4374: error: 'OTIsBlocking' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::SetSynchronous()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4375: error: 'OTSetSynchronous' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::SetAsynchronous()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4376: error: 'OTSetAsynchronous' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsSynchronous()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4377: error: 'OTIsSynchronous' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsAsynchronous()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4378: error: 'OTIsSynchronous' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::AckSends()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4380: error: 'OTAckSends' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::DontAckSends()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4381: error: 'OTDontAckSends' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsAckingSends()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4382: error: 'OTIsAckingSends' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void TProvider::CancelSynchronousCalls(OSStatus)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4385: error: 'OTCancelSynchronousCalls' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::InstallNotifier(void (*)(void*, OTEventCode, OTResult, void*), void*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4388: error: 'OTInstallNotifier' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::UseSyncIdleEvents()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4391: error: 'OTUseSyncIdleEvents' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::DontUseSyncIdleEvents()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4394: error: 'OTUseSyncIdleEvents' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void TProvider::RemoveNotifier()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4397: error: 'OTRemoveNotifier' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::EnterNotifier()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4400: error: 'OTEnterNotifier' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void TProvider::LeaveNotifier()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4403: error: 'OTLeaveNotifier' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'SInt32 TProvider::Ioctl(UInt32, void*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4414: error: 'OTIoctl' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'SInt32 TProvider::Ioctl(UInt32, long int)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4416: error: 'OTIoctl' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::GetEndpointInfo(TEndpointInfo*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4456: error: 'OTGetEndpointInfo' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::GetProtAddress(TBind*, TBind*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4459: error: 'OTGetProtAddress' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::ResolveAddress(TBind*, TBind*, OTTimeout)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4462: error: 'OTResolveAddress' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::GetEndpointState()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4465: error: 'OTGetEndpointState' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::Look()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4468: error: 'OTLook' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void* TEndpoint::AllocInContext(OTStructType, UInt32, OSStatus*, OpaqueOTClientContextPtr*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4478: error: 'OTAllocInContext' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void* TEndpoint::Alloc(OTStructType, UInt32, OSStatus*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4483: error: 'OTAllocInContext' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::Free(void*, OTStructType)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4490: error: 'OTFree' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::OptionManagement(TOptMgmt*, TOptMgmt*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4495: error: 'OTOptionManagement' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Bind(TBind*, TBind*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4500: error: 'OTBind' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Unbind()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4503: error: 'OTUnbind' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Connect(TCall*, TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4508: error: 'OTConnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvConnect(TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4511: error: 'OTRcvConnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Listen(TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4514: error: 'OTListen' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Accept(TEndpoint*, TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4517: error: 'OTAccept' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::SndDisconnect(TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4520: error: 'OTSndDisconnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::SndOrderlyDisconnect()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4523: error: 'OTSndOrderlyDisconnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvDisconnect(TDiscon*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4526: error: 'OTRcvDisconnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvOrderlyDisconnect()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4529: error: 'OTRcvOrderlyDisconnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::Snd(void*, OTByteCount, OTFlags)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4534: error: 'OTSnd' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::Rcv(void*, OTByteCount, OTFlags*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4537: error: 'OTRcv' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::SndUData(TUnitData*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4542: error: 'OTSndUData' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvUData(TUnitData*, OTFlags*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4545: error: 'OTRcvUData' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvUDErr(TUDErr*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4548: error: 'OTRcvUDErr' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::CountDataBytes(OTByteCount*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4596: error: 'OTCountDataBytes' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TMapper::RegisterName(TRegisterRequest*, TRegisterReply*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4609: error: 'OTRegisterName' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TMapper::DeleteName(TNetbuf*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4612: error: 'OTDeleteName' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TMapper::DeleteName(OTNameID)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4615: error: 'OTDeleteNameByID' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TMapper::LookupName(TLookupRequest*, TLookupReply*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4618: error: 'OTLookupName' was not declared in this scope
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GUID.cp: In constructor 'GUID::GUID()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GUID.cp:25: error: 'OTInetGetInterfaceInfo' was not declared in this scope
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /MSGSmartIssue.o MSGSmartIssue.mm normal x86_64 objective-c++ com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x objective-c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -I /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/keychain -I /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/custom/CloseWindow -I /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/proxyconfig -I /Developer/Headers/FlatCarbon -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/MSGSmartIssue.mm -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/MSGSmartIssue.o
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/../../subagent/MSGAppController.h:12,
                     from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/MSGSmartIssue.mm:13:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../webkit/MSGDocument.h:25:19: warning: missing whitespace after the macro name
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/MSGSmartIssue.mm:13:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../subagent/MSGAppController.h:36:1: warning: "kMSGInCriticalValue" redefined
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/../../subagent/MSGAppController.h:12,
                     from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/MSGSmartIssue.mm:13:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../webkit/MSGDocument.h:26:1: warning: this is the location of the previous definition
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue guid](MSGSmartIssue*, objc_selector*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:35: warning: 'stringWithCString:' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:386)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue replaceTemplateVarsWithValues:](MSGSmartIssue*, objc_selector*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:206: warning: 'stringWithContentsOfFile:' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:379)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:207: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:217: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:222: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:224: warning: comparison between signed and unsigned integer expressions
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'std::string splitAndDelete(std::string&, std::string)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:250: warning: comparison between signed and unsigned integer expressions
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue splitAndDeleteNS:delimiter:](MSGSmartIssue*, objc_selector*, NSMutableString*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:259: warning: conflicting types for '-(NSString *)splitAndDeleteNS:(NSMutableString *)s delimiter:(NSString *)delimiter'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.h:55: warning: previous declaration of '-(NSString *)splitAndDeleteNS:(NSMutableString **)s delimiter:(NSString *)delimiter'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'std::string stringReplace(std::string, std::string, std::string)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:275: warning: comparison between signed and unsigned integer expressions
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue replaceXMLQuotedVarsWithValues:](MSGSmartIssue*, objc_selector*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:297: warning: 'stringWithContentsOfFile:' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:379)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:307: warning: unused variable 'aE'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'int -[MSGSmartIssue postSmartIssue:key:dataPath:siTemplate:conversion:](MSGSmartIssue*, objc_selector*, NSString*, NSString*, NSString*, NSString*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:466: error: cannot convert 'long int*' to 'SInt32*' for argument '5' to 'OSErr FindFolder(FSVolumeRefNum, OSType, Boolean, FSVolumeRefNum*, SInt32*)'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:472: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:475: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:487: warning: unused variable 'siResponse'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue httpPost:withdata:](MSGSmartIssue*, objc_selector*, NSString*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:502: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:503: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /GetSystemInfo.o GetSystemInfo.cp normal x86_64 c++ com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -I /Users/admin/Perforce/saurabh/sdc/trunk/ridev/macos/SubscriberAgent2/MoreFiles/ Sources -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/GetSystemInfo.cp -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/GetSystemInfo.o
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/GetSystemInfo.cp:9:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:153: error: field 'PB' has incomplete type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:154: error: 'CInfoPBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:155: error: 'DTPBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:156: error: 'HParamBlockRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:157: error: 'CMovePBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:158: error: 'WDPBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:159: error: 'FCBPBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:160: error: 'XVolumeParam' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:536: error: 'HParmBlkPtr' has not been declared
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:571: error: 'XVolumeParamPtr' has not been declared
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:604: error: 'CInfoPBPtr' has not been declared
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp: In function 'long int GetOSVersion()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp:15: error: cannot convert 'long int*' to 'SInt32*' for argument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp: In function 'long int GetRAMSize()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp:68: error: cannot convert 'long int*' to 'SInt32*' for argument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp: In function 'long int GetCPUClockSpeed()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp:75: error: cannot convert 'long int*' to 'SInt32*' for argument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp: In function 'long int GetCPUType()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp:82: error: cannot convert 'long int*' to 'SInt32*' for argument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /SmartIssue.o SmartIssue.cp normal x86_64 c++ com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/SmartIssue.cp -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/SmartIssue.o
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp: In function 'std::string HTTPPost(std::string&, std::string&)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp:132: error: 'URLNewReference' was not declared in this scope
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp:134: error: 'URLSetProperty' was not declared in this scope
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp:136: error: 'URLDownload' was not declared in this scope
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp:137: error: 'URLDisposeReference' was not declared in this scope
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /MoreFilesExtras.o ../../MoreFiles/Sources/MoreFilesExtras.c normal x86_64 c com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x c -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -I /Developer/SDKS/MacOSX10.6u.sdk/Developer/Headers/FlatCarbon -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/MoreFilesExtras.o
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:103:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:153: error: field 'PB' has incomplete type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:154: error: expected specifier-qualifier-list before 'CInfoPBRec'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:536: error: expected declaration specifiers or '...' before 'HParmBlkPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:571: error: expected declaration specifiers or '...' before 'XVolumeParamPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:604: error: expected declaration specifiers or '...' before 'CInfoPBPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GenerateUniqueName':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:499: error: 'CInfoPBRec' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:499: error: (Each undeclared identifier is reported only once
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:499: error: for each function it appears in.)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:499: error: expected ';' before 'cinfo'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:514: error: 'cinfo' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:530: warning: implicit declaration of function 'PBGetCatInfoSync'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'TruncPString':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:558: warning: implicit declaration of function 'CharacterByteType'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GetTempBuffer':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:612: warning: implicit declaration of function 'FreeMem'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:614: warning: implicit declaration of function 'MaxBlock'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: At top level:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:657: error: expected declaration specifiers or '...' before 'HParmBlkPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GetVolumeInfoNoName':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:663: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:673: warning: implicit declaration of function 'BlockMoveData'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:677: warning: implicit declaration of function 'PBHGetVInfoSync'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: At top level:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:699: error: expected declaration specifiers or '...' before 'XVolumeParamPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'XGetVolumeInfoNoName':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:705: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:741: warning: implicit declaration of function 'PBXGetVolInfoSync'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: At top level:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:758: error: expected declaration specifiers or '...' before 'CInfoPBPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GetCatInfoNoName':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:767: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'DetermineVRefNum':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:788: error: 'HParamBlockRec' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:788: error: expected ';' before 'pb'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:791: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:791: error: too many arguments to function 'GetVolumeInfoNoName'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'XGetVInfo':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:849: error: 'XVolumeParam' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:849: error: expected ';' before 'pb'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:857: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'CheckVolLock':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:950: error: 'HParamBlockRec' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:950: error: expected ';' before 'pb'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:953: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:953: error: too many arguments to function 'GetVolumeInfoNoName'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GetVolFileSystemID':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1330: error: 'HParamBlockRec' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1330: error: expected ';' before 'pb'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1333: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1333: error: too many arguments to function 'GetVolumeInfoNoName'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'UnmountAndEject':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1354: error: 'HParamBlockRec' undeclared (first use in this func

    That code is ancient. It will never build on 32-bit. You need a re-write.

  • An internal build error has occurred. Right-click for more information

    Greetings!
    We are using Eclipse 3.4 or 3,5 with Flash 4 plugin and Flex SDK 3.3.0.
    Project set comprises several, more than a couple dozen, dependent  Flex and Java projects.
    Time-to-time we run across an internal build error on all Flex projects.
    The stack trace where topmost entries are:
    So far we did not find how to get around the problem except delete project set and start from
    scratch.
    Pleas help!
    !ENTRY com.adobe.flexbuilder.project 4 43 2010-07-23 14:40:38.353
    !MESSAGE Uncaught exception in compiler
    !STACK 0
    java.lang.NullPointerException
    at com.adobe.flexbuilder.multisdk.compiler.internal.ASBuilder.applySettings(ASBuilder.java:3 25)
    at com.adobe.flexbuilder.multisdk.compiler.internal.ASApplicationBuilder.setup(ASApplication Builder.java:67)
    at com.adobe.flexbuilder.multisdk.compiler.internal.ASItemBuilder.setup(ASItemBuilder.java:5 4)
    at com.adobe.flexbuilder.project.compiler.BuilderFactory.createBuilder(BuilderFactory.java:8 0)
    at com.adobe.flexbuilder.project.compiler.BuilderFactory.createBuilder(BuilderFactory.java:5 9)
    at com.adobe.flexbuilder.project.compiler.BuilderManager.getBuilder(BuilderManager.java:192)
    When it happens you can not open project "Properties | Flex Compiler"  dialog because error
    message pops up saying "The currently displayed page contains invalid values."
    I am not sure how "an internal build error..." relates to "...displayed page contains invalid values"
    but  it worth to mention anyway.
    Thanks for your help.

    Getting the same error and deleting bin-debug files doesn't help. All switch statements have a case so that isn't an issue either.
    Says to right click on the error for more info but that brings ups broken webpage.
    Adobe I think you really rushed Flash Builder out to fast.  These weird errors and the namespace debacle is just totally unprofessional.

  • Build error while creating a DC

    Hi All
    I am trying to expose a project component in some other project using the <i><b>development components (DCs)</b></i> but when I try to build the DC after putting the required component in the Public part of the project it removes the external jar files that I added in the classpath and gives a build error. This error is coming due to unavailablity of the external jar files.
    Is there any way to keep the classpath unchanged while building the development component or is there any other way of including the external jar files in those projects where we are using the DCs?
    Please reply!
    Thanks

    Hi
    In Developer Studio
    1) Go to NAVIGATOR TAB
    2) Create a folder lib[if it is not available] in the same level as bin
    3)*just paste your external library file there in lib directory which you have created
    4)* Go to WebDynpro Explorer>Select Project name>right click>properties>java build path-->add external jars..select the pasted jar file in the list
    Regards
    Chaitanya.A

  • Internal Build error after creating a new project

    I just installed Flex using the plugin install to Rational
    Software Architect v7.0 (Eclipse 3.2) on Windows. The system
    requirements page says Rational Software Architect is supported.
    when I create an MXML application, I immediate have an "Internal
    Build error has occurred message. It tells me to check the log
    file" But I'm not sure where that is.
    My MXML file only has the following code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    </mx:Application>

    Please see the suggested solutions in the following docs.
    Entity Maps Not Defined For Attachment Error When Selecting A Deliverable (Doc ID 358385.1)
    Corrupt Personalization - No Entities Found Entitymaps Not Defined For Attachment Item (Doc ID 1085011.1)
    R12:Supplier Page Unexpected Error: 'No Entities Found EntityMaps not Defined for Attachment Item' (Doc ID 1361320.1
    Geography Hierarchy No Entities Found, EntityMaps Not Defined For Attachment Item (Doc ID 831088.1)
    Depot Repair Bulk Receiving Error: "No entities found, entityMaps not defined for attachment item" (Doc ID 1357977.1)
    Thanks,
    Hussein

  • Lot of build errors in project created for debug CRM 5.0

    Hi SDN!
    I want to setup java debugging for CRM 5.0 modified application. According to note 1154496 I created project "crm_b2b".
    I took file src.zip from
    server\usr\sap\<system name>\<instance>\j2ee\cluster\<server number>\apps\sap.com\crmb2b at first try and from
    server\usr\sap\<system name>\<instance>\j2ee\cluster\<server number>\apps\sap.com\crmcrb2b at second try. After import NWDS performed building for my project and shows lot of build errors (more than 12 thousands for 1-st try and near 2 thousands for 2-nd try). I reduced some of error by adding jar files from crm war file to build path. But I don't know how to resolve errors like "The method hasPermissions(Permission[]) in the type UserBase is not applicable for the arguments(EserviceHierarchyPermission[])" (error in com.sap.eservice.common.user.permission.CommonPermission.java, line 186). Also some of errors concerned with requierd libraries in build path.
    My NWDS is 7.0.14
    CRM 5.0 SP 11
    Regards, Lev
    Edited by: Lev Kulaev on Jul 3, 2008 2:03 PM

    Hi!
    Here are my doings:
    1) set breakpoint in standart code
    2) run my debug configuartion
    3) run CRM 5.0
    4) NWDS stopped execution on breakpoint
    5) I right-click on variable, choose "Watch"
    6) NWDS shows me "error during evaluation" in "Expression" tab for selected variable
    I'm confusing since it was possible to use "Watch" for variables in CRM 4.0.
    Yes, you right, I can view all variabe values on "Variables" tab. I wanted to use "Expression" tab because it's more comfortable for me but it seems that I can use only "Variables" tab.
    So, thanks for help! My question is answered, but if you can give me more information about subject, you're welcome.
    Regards, Lev

  • OAS 407 Build Error on RedHat 6.0

    Hi All,
    Furhter to my last post, can someone tell me if there is
    something I am missing here. Below is the build error I get
    when trying to build OAS407. I have RedHat 6.0 and I have made
    sure I have the latest glibc installed, based on the notes for
    the patch for oracle 8.0.5.1.
    Any information would be hugely appreciated.
    thanks
    Wayne
    Error during action 'Relinking executable dbsnmp'.
    Command: make -f ins_oemagent.mk idbsnmp
    i386-glibc20-linux-gcc -L/oracle/product/8.0.5/lib/ -
    L/oracle/product/8.0.5/lib/ -L/oracle/product/8.0.5/rdbms/lib -
    L/oracle/product/8.0.5/network/lib -o
    dbsnmp /oracle/product/8.0.5/network/lib/s0nmi.o /oracle/product/
    8.0.5/network/lib/waat0.o -lnmi -lnms -lnmd \
    lnms0 /oracle/product/8.0.5/rdbms/lib/defopt.o /oracle/product
    /8.0.5/rdbms/lib/ssdbaed.o \
    /oracle/product/8.0.5/lib/nautab.o /oracle/product/8.0.5/lib/naee
    t.o /oracle/product/8.0.5/lib/naect.o /oracle/product/8.0.5/lib/n
    aedhs.o `cat /oracle/product/8.0.5/lib/naldflgs` -lnetv2 -
    lnttcp -lnetwork -lncr -lnetv2 -lnttcp -lnetwork -lclient -
    lvsn -lcommon -lgeneric -lmm -lnlsrtl3 -lcore4 -lnlsrtl3 -
    lcore4 -lnlsrtl3 -lnetv2 -lnttcp -lnetwork -lncr -lnetv2 -
    lnttcp -lnetwork -lclient -lvsn -lcommon -lgeneric -lepc -
    lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lclient -lvsn -
    lcommon -lgeneric -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -
    lnlsrtl3 `cat /oracle/product/8.0.5/lib/sysliblist` -ldl -lm -
    ltcl -lm -ldl -lc -lcrypt
    /oracle/product/8.0.5/lib//libcore4.a(lcd.o): In function
    `lcdprm':
    lcd.o(.text+0xacb): the `gets' function is dangerous and should
    not be used.
    /usr/lib/libtcl.so: undefined reference to `getgrnam@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `atexit@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `chown@@GLIBC_2.1'
    /usr/lib/libtcl.so: undefined reference to
    `__strtod_internal@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `rename@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strchr@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `fdopen@@GLIBC_2.1'
    /usr/lib/libtcl.so: undefined reference to
    `__ctype_tolower@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `localtime@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strcmp@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `fprintf@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `getenv@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to
    `getservbyname@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strerror@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `getpwuid@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `getgrgid@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `memchr@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to
    `gethostbyaddr@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `inet_ntoa@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `mkfifo@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `listen@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `tmpnam@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strftime@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strpbrk@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `stdout@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `stderr@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `abort@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `__xstat@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to
    `setsockopt@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `time@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strstr@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `__lxstat@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strcspn@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `uname@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to
    `__strtol_internal@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to
    `__ctype_toupper@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `execvp@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strncmp@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `inet_addr@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `__environ@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `bind@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `memcpy@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to
    `getsockname@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strrchr@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `endpwent@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to
    `gethostbyname@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `getpwnam@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `exit@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `gmtime@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `sscanf@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `utime@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `memset@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `__ctype_b@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `_exit@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `__xmknod@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to
    `__strtoul_internal@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `endgrent@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `sprintf@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `__bzero@@GLIBC_2.0'
    /usr/lib/libtcl.so: undefined reference to `strcpy@@GLIBC_2.0'
    collect2: ld returned 1 exit status
    make: *** [dbsnmp] Error 1
    null

    Sorry, but officialy the OAS 4071 is not supported under RedHad 6
    (because of the glibc 2.1). We ran into the same problems. Oracle
    Support has no possibilities (in Germany) to build a version
    which runs under glibc21. We shall wait to version 4.08.
    I hope this will help you. Downgrade to RedHad 5.2 an it3s
    running.
    Greetings
    Sven
    George (guest) wrote:
    : Wayne Stanton (guest) wrote:
    : : Hi All,
    : : Furhter to my last post, can someone tell me if there is
    : : something I am missing here. Below is the build error I get
    : : when trying to build OAS407. I have RedHat 6.0 and I have
    : made
    : : sure I have the latest glibc installed, based on the notes
    for
    : : the patch for oracle 8.0.5.1.
    : : Any information would be hugely appreciated.
    : : thanks
    : : Wayne
    : : Error during action 'Relinking executable dbsnmp'.
    : : Command: make -f ins_oemagent.mk idbsnmp
    : : i386-glibc20-linux-gcc -L/oracle/product/8.0.5/lib/ -
    : : L/oracle/product/8.0.5/lib/ -
    : L/oracle/product/8.0.5/rdbms/lib -
    : : L/oracle/product/8.0.5/network/lib -o
    : dbsnmp /oracle/product/8.0.5/network/lib/s0nmi.o
    /oracle/product/
    : : 8.0.5/network/lib/waat0.o -lnmi -lnms -lnmd \
    : lnms0 /oracle/product/8.0.5/rdbms/lib/defopt.o
    /oracle/product
    : : /8.0.5/rdbms/lib/ssdbaed.o \
    : : /oracle/product/8.0.5/lib/nautab.o
    /oracle/product/8.0.5/lib/na
    : ee
    : t.o /oracle/product/8.0.5/lib/naect.o
    /oracle/product/8.0.5/lib/n
    : : aedhs.o `cat /oracle/product/8.0.5/lib/naldflgs` -lnetv2 -
    : : lnttcp -lnetwork -lncr -lnetv2 -lnttcp -lnetwork -lclient -
    : : lvsn -lcommon -lgeneric -lmm -lnlsrtl3 -lcore4 -lnlsrtl3 -
    : : lcore4 -lnlsrtl3 -lnetv2 -lnttcp -lnetwork -lncr -lnetv2 -
    : : lnttcp -lnetwork -lclient -lvsn -lcommon -lgeneric -lepc -
    : : lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lclient -lvsn
    : : lcommon -lgeneric -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -
    : : lnlsrtl3 `cat /oracle/product/8.0.5/lib/sysliblist` -ldl -
    : lm -
    : : ltcl -lm -ldl -lc -lcrypt
    : : /oracle/product/8.0.5/lib//libcore4.a(lcd.o): In function
    : : `lcdprm':
    : : lcd.o(.text+0xacb): the `gets' function is dangerous and
    : should
    : : not be used.
    : : /usr/lib/libtcl.so: undefined reference to
    : `getgrnam@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `atexit@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to `chown@@GLIBC_2.1'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `__strtod_internal@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `rename@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `strchr@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `fdopen@@GLIBC_2.1'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `__ctype_tolower@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `localtime@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `strcmp@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `fprintf@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `getenv@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `getservbyname@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `strerror@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `getpwuid@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `getgrgid@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `memchr@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `gethostbyaddr@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `inet_ntoa@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `mkfifo@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `listen@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `tmpnam@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `strftime@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `strpbrk@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `stdout@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `stderr@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to `abort@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `__xstat@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `setsockopt@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to `time@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `strstr@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `__lxstat@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `strcspn@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to `uname@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `__strtol_internal@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `__ctype_toupper@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `execvp@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `strncmp@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `inet_addr@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `__environ@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to `bind@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `memcpy@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `getsockname@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `strrchr@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `endpwent@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `gethostbyname@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `getpwnam@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to `exit@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `gmtime@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `sscanf@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to `utime@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `memset@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `__ctype_b@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to `_exit@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `__xmknod@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : : `__strtoul_internal@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    : `endgrent@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `sprintf@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `__bzero@@GLIBC_2.0'
    : : /usr/lib/libtcl.so: undefined reference to
    `strcpy@@GLIBC_2.0'
    : : collect2: ld returned 1 exit status
    : : make: *** [dbsnmp] Error 1
    : Is that bacause of the Glibc 2.1 and Glibc 2.0? I think OAS is
    : link with Glibc 2.0 not 2.1, so it does not work here.
    : I meet the same problem when I install webdb on RH6.0.
    : RGS
    null

  • [SOLVED] [mkinitcpio] initramfs "build error" messages since v.18-1

    Hi everybody,
    Since the update from mkinitcpio 17-1 to 18-1 I get those build error messages while running mkinitcpio:
    # mkinitcpio -p linux
    ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    ==> Starting build: 3.15.8-1-ARCH
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [autodetect]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    -> Running build hook: [keymap]
    -> Running build hook: [encrypt]
    -> Running build hook: [lvm2]
    -> Running build hook: [filesystems]
    -> Running build hook: [keyboard]
    -> Running build hook: [fsck]
    ==> Generating module dependencies
    ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux.img
    ==> WARNING: errors were encountered during the build. The image may not be complete.
    ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    ==> Starting build: 3.15.8-1-ARCH
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    ==> WARNING: Possibly missing firmware for module: aic94xx
    ==> WARNING: Possibly missing firmware for module: smsmdtv
    -> Running build hook: [keymap]
    -> Running build hook: [encrypt]
    -> Running build hook: [lvm2]
    -> Running build hook: [filesystems]
    -> Running build hook: [keyboard]
    -> Running build hook: [fsck]
    ==> Generating module dependencies
    ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-fallback.img
    ==> WARNING: errors were encountered during the build. The image may not be complete.
    However I can still boot and everything seems mostly fine. I haven't changed anything to my /etc/mkinitcpio.conf, here are the only customized parts:
    MODULES="i915 dm_snapshot"
    HOOKS="base udev autodetect modconf block keymap encrypt lvm2 filesystems keyboard fsck
    I'm using an encrypted root (ext4 over LVM over LUKS) and boot partition is contained in an (unencrypted) LVM logical volume. I also specify a few i915 module options in an /etc/modprobe.d/modprobe.conf file as per the Intel Graphics wiki page:
    # Intel graphics driver power-saving option :
    options i915 i915_enable_rc6=7 i915_enable_fbc=1 lvds_downclock=1
    Never had any such warnings before, but now it appears each and every time I update or reinstall my kernel (the default one). I went through Mkinitcpio wiki page, tried putting question marks after the listed modules and rebuilding but it didn't change anything... Any ideas?
    Btw, I don't use any specific compression option and had the regular lzo name change during the same full system upgrade that updated mkinitcpio and linux.
    Thanks
    Last edited by Neitsab (2014-08-04 11:51:19)

    Yes indeed, removing /etc/modprobe.d/modprobe.conf~ hidden backup file solved the warning issue. Strange but thanks ukhippo, I hadn't thought about checking other subforums!
    Last edited by Neitsab (2014-08-04 11:52:08)

Maybe you are looking for

  • Cannot install windows XP

    Ok I have been at this for a day and a half now and I just want straight answers. I have the 865PE Neo2 LS mother board and the Maxtor 80GB SATA hard drive. I have updated the bios to v1.3 on the mobo. The hd is on SATA 1. I have enabled bus master I

  • How to attach a word file in JAVA mail

    I am a JAVA rookie and I have a problem in attaching a word file using javamail. I searched almost all the forum but still couldn't find the solution. Sorry for the reposting. But can anybody please help me out? Your any words or links will be highly

  • MB pro Airport utililty cannot recongnize my AX in remote base mode

    I set up my AX as remote base of a existent wirless d link network, it worked for 2 days and now it is no more recognized from my macbook, is there an recent update trouble? Can u help me please?

  • Photos not uploading to iphoto

    I uploaded a few pictures from my camera on december 24th and on the 25th it was no longer uploading pictures from my camera.  I have not changed any setting on my camera at all and do not understand why this is not working. When I connect my camera,

  • I am having problems viewing hotmail in mountain lion

    - it makes no difference if i use safari or firefox. I have updates all the software but i still get an odd view and i cant access my mail. please help