Netbeans 6.1 JavaFX build error

Env: Netbeans 6.1, JavaFX, Linux, Java(TM) SE Runtime Environment 1.6.0_06-b02
Hi,
The error below is displayed building the "Practical Guide to JavaFX " project (CrudFX)
http://molgav.nn.ru/index.php?view=article&catid=38%3Aexample&id=229%3Apractical-guide-to-javafx&option=com_content&Itemid=56
/home/dkennedy/NetBeansProjects/CRUDfx/src/crudfx/DataGrid.fx:13: Sorry, I was trying to understand the module contents but I got confused when I saw 'DataGrid' which is an identifier.
operation DataGrid.createView():<<javax.swing.JComponent>>
Any help/suggestions would be greatly appreciated
Thanks
Dave
DataGrid.fx ===================================================================
package crudfx;
import javafx.ui.*;
import java.lang.*;
import javafx.ui.canvas.*;
import javafx.ui.filter.*;
import crudfx.*;
import javax.swing.JTable;
class DataGrid extends Table
operation DataGrid.createView():<<javax.swing.JComponent>>
var jComponent=super.createView();
Tools.adjustTableHeader(jComponent);
return jComponent;
operation DataGrid.createComponent():<<javax.swing.JComponent>>
var jComponent=super.createComponent();
Tools.adjustVerticalScrollBar(jComponent);
return jComponent;
log =========================================================================
Error in syntactic analysis in DataGrid.fx:
java.lang.NullPointerException
at com.sun.tools.javafx.antlr.v3Walker.module(v3Walker.java:294)
at com.sun.tools.javafx.antlr.JavafxSyntacticAnalysis.parse(JavafxSyntacticAnalysis.java:82)
at com.sun.tools.javafx.main.JavafxCompiler.parse(JavafxCompiler.java:478)
at com.sun.tools.javafx.main.JavafxCompiler.parse(JavafxCompiler.java:519)
at com.sun.tools.javafx.main.JavafxCompiler.parseFiles(JavafxCompiler.java:826)
at com.sun.tools.javafx.api.JavafxcTaskImpl.parse(JavafxcTaskImpl.java:196)
at org.netbeans.api.javafx.source.JavaFXSource.moveToPhase(JavaFXSource.java:221)
at org.netbeans.api.javafx.source.CompilationInfoImpl.toPhase(CompilationInfoImpl.java:129)
at org.netbeans.api.javafx.source.CompilationController.toPhase(CompilationController.java:72)
at org.netbeans.modules.javafx.source.scheduler.CompilationJob.run(CompilationJob.java:186)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
at java.util.concurrent.FutureTask.run(FutureTask.java:138)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
at java.lang.Thread.run(Thread.java:619)
============================================================================

The CrudFX code uses the old syntax.
The JavaFX Script Preview version uses new one: [http://java.sun.com/javafx/reference|http://java.sun.com/javafx/reference]
The exception means that a project contains empty file:
=========================================================================
Error in syntactic analysis in DataGrid.fx:
java.lang.NullPointerException
at com.sun.tools.javafx.antlr.v3Walker.module(v3Walker.java:294)
=========================================================================

Similar Messages

  • Build error :package com.sun.javadoc does not exist

    Question from a Turing machine expert who is new to Java.
    Trying to run a sample program from Richardson's book "Java JDK 5 Edition" Chapter 1.
    In Netbeans 5.5 receive build error :package com.sun.javadoc does not exist
    for "import com.sun.javadoc.*;"
    Believe missing classes are in tools.jar in C:\Sun\SDKee5SDK\jdk\lib
    How do I define this to Netbeans and/or JDK?
    Using java_ee_sdk-5_01
    and netbeans-5_5-windows downloads.
    Platform is XP.
    Netbeans has been updated to date.
    Appreciate.

    sony_tj wrote:
    D:\Xyz.java:22: package com.sun.javadoc does not exist
    import com.sun.javadoc.*;After getting this error, I have set my classpath to C:\Program Files\Java\jdk1.5.0_03\lib\tools.jar. But still the error persists. Could anyone please tell me how do I solve this problem.You have failed in setting your classpath in that case.

  • Netbeans 7.2 - JavaFX Tutorial - problems with imports

    I am indeed a newbie. I installed Netbeans 7.2 and created a JavaFX Application project while following a tutorial. I inserted code (as instructed) for a GridPane with alignment and inset adjustments. After inserting the GridPane code from the tutorial, my build got errors (undefined for pos.Center and Insets
            GridPane grid = new GridPane();
            grid.setAlignment(Pos.CENTER);
            grid.setHgap(10);
            grid.setVgap(10);
            grid.setPadding(new Insets(25, 25, 25, 25));
            Scene scene = new Scene(grid, 300, 275);
            primaryStage.setScene(scene);
    {code}
    It took quite a long time for me to discover what includes to code in order to solve these build errors.  I eventually ended up with :
    {code}
    package login;
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    import javafx.scene.layout.GridPane;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.text.Text;
    import javafx.scene.text.Font;
    import javafx.geometry.Insets;
    import javafx.application.Application;
    import javafx.geometry.Pos;
    import javafx.scene.Scene;
    import javafx.scene.control.PasswordField;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.text.Font;
    import javafx.scene.text.FontWeight;
    import javafx.scene.text.Text;
    {code}
    The wizard produced these includes at the start:
    {code}
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    {code}
    My questions:
    Is there a way to specify the includes for javaFX  with
    {code}
    javafx.*;
    {code}
    Is there a simple way in Netbeans 7.2 to find out what include to use to solve the undefined build errors?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I am not a Netbeans user but I think this is what you are looking for.
    http://wiki.netbeans.org/Java_EditorUsersGuide#How_to_add_import_statements_for_one_or_more_classes

  • 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

Maybe you are looking for

  • How can i reset my download setting, to its orignial form. ie: with the option to save and open files

    How can i open files, instead of having them just save. there was a option with save or open, and normally i open but i clicked save and i have tried several ways to fix it, none of them work. any and all help would be nice == This happened == Every

  • Help Zeroing Out Data On eMac

    I'm trying to wipe out the hard drive on my folks' old eMac.  I'm going to recycle the computer but it is important that I at least zero out the data and not just erase it superficially. The disk that came with the mac is 10.1.4, so I gues it doesn't

  • ITunes keeps on prompting me for username and password

    When on the Podcasts page, I press the Refresh button and although I have checked the "Remember my credentials" box.  It actually prompts me for the username and password TWICE for the same site.  The first time it actually does remember the username

  • RD Services vs. Remote Desktop?

    RD Services is basically Remote Desktop except it allows multiple user sessions, correct? Is there a way to make an end-user's experience more clean?  Such as not showing Server Manager or Admin tools?

  • Using NBAR to Prioritize Citrix Traffic

    Hi can anyone help, I am trying to set up NBAR to prioritize Citrix traffic using the ICA tags in the Citrix frame header. But I cannot get it to work. We are using version 6 PDLM, IOS 12.3(4)T on a 7206 when we check the policy map stats there are n