@SuppressWarnings annotation causing compiler error

Anyone know why it is illegal to put a @SuppressWarnings annotation as shown in this example? I know this is a retarded example, and that you could just place the annotation on the method instead of inline with the code, so I am not looking for alternatives. I am just curious why it is illegal in the place shown.
public class SuppressTest {
     public void addFoo(Object bar) {
          List list = (List<String>) bar;
          @SuppressWarnings("unchecked")
          list.add("foo");
}

Here is the correct way, to solve this problem. Maybe this makes clear, why the other way is not supported. The @SuppressWarnings affects only the definition of list.
Anyway - you should be sure, that the cast, that is suppressed, is correct. And you cannot assure it in this special case, because everyone could call addFoo with nearly everything as parameter.
public class SuppressTest {
    public void addFoo(Object bar) {
     @SuppressWarnings("unchecked")
     List<String> list = (List<String>) bar;
     list.add("foo");
}Edited by: yawah on 10.12.2009 07:58

Similar Messages

  • Adding Engine component causes: "Compiler errors occurred when generating a Windows Forms wrapper...​"

    I got this error when I tried to drop a TestStand Engine class onto my main form in VisualStudio.NET.
    Compiler errors occurred when generating a Windows Forms wrapper for ActiveX control 'AxNationalInstruments.TestStand.Interop.API'
    The error message went on to say that it saved the source in ./obj/AxInterop.TS.cs so I added that to the project. When I try to build it, I get this error:
    The designer must create an instance of type 'System.Windows.Forms.AxHost' but it cannot because the type is declared as abstract.
    I am using TestStand 3.0 evaluation, Version 7.1.3088 of Microsoft Development Environment 2003, and .NET Framework 1.1 Version 1.1.4322 SP1.
    Is this aximp.exe problem?
    Can someone suggest how to fix this?
    Thanks,
    Jeff

    TestStand installs pre-built interop wrappers for the TestStand engine and all the TestStand UserInterface controls. You can find them in \API\DotNet\Assemblies\CurrentVersion\.
    However, the best thing to do is usually to add the ApplicationMgr control to your .NET form and then call form.axApplicationMgr1.GetEngine() to get the engine. Doing this automatically adds references to the interop assemblies to your project. You can find this control in the TestStand tab of your .NET toolbox when you have a form active.
    Ideally, you should start with the .NET simple operator interface examples which are in \OperatorInterfaces\NI\Simple\CSharp\ and \OperatorInterfaces\NI\Simple\VB.Net\
    - James

  • Db link in trigger causes compilation error

    Using Forms 10.1.2.0.2
    Post-Query trigger
    BEGIN
    SELECT item_desc
    INTO :block1.item_desc
    FROM items@database100
    WHERE item_code = :block1.item_code;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    item_code := 'No description for this item';
    END;
    Compilation error
    Error 201: Identifier 'items@database100' must be declared.
    The select statement works in Toad and Sqlplus, but giving me compilation errors in Forms 10g.
    So is this a bug? If yes, is there a patch?
    Can somebody please post a link to a metalink where this problem is discussed/solved?
    Thanks in advance.

    Well, yeah, that had been considered as a work-around.
    However, at this point, the decision is still to use the db link, and we are still trying to figure out how to make it work.
    Edited by: vanilla.villain on May 21, 2009 11:20 AM

  • Annotation-caused compiler crash

    Hi,
    When attempting to build against a class that uses runtime annotations, javac is crashing with:
    An exception has occurred in the compiler (1.6.0-rc). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report. Thank you.
    com.sun.tools.javac.code.Symbol$CompletionFailure: class file for test.annotation.TestAnnotation not found
    The test case that generates this error can be found at:
    http://www.cjtucker.com/annotation-bug.tgz
    Synopsis:
    Attempting to build against a class that contains a runtime annotation requires the definition of the annotation to be available to the compiler. If the definition is not available, the compiler crashes.
    Test case:
    The test case attempts to build three classes in three separate packages: a simple RUNTIME scoped annotation, a "core" class, and a "ui" class that builds against the core class. The "ui" class neither knows nor cares about the annotated properties of the "core" class. The annotation class is build in isolation; the core class is built only against the annotation class; the ui class is built only against the core class.
    The test case tarball contains the necessary .java files and directory structure for compilation. The compilation commands are contained in compile.sh.
    The crash can be avoided by including the annotation class in the classpath when building the ui component. The crash has been reproduced in 1.5.0_04, 1.5.0_05, and 1.6.0b61. Other JDKs have not been tested. The crash occurs with both RUNTIME and CLASS scoped annotations, though not with SOURCE scope (as expected: the compiler is correctly stripping annotations in that case). The crash does not occur if the annotation does not take parameters (i.e. is an empty "marker" annotation).
    This raises some additional questions I'd be interested in hearing comment on. What is the expected behavior here? I would expect the annotation class should not be required as a dependency, in the same way I'm not expected to declare a dependency on every class used by a class I interact with. This behavior with annotations seems to breach encapsulation (for example, a client would have to know that my libraries happened to be using a Hibernate persistence layer whether or not this is of interest to them). Perhaps one of the Java gurus here could shed some further light on this?
    Cheers,
    Chris Tucker

    Hi,
    I know this is an old post but I am having the exact same problem with 1.6.0_11 and have not been able to find a solution.
    Any assistance would be much appreciated.
    Thanks.

  • Removing Exception Handling Causes Compiler Error

    I am very new to Java. I have a background in other programming languages including Ruby. I am in need of a convenient means to parse XML code. I picked up the code shown at the end of this message on the Internet. In its original form, it works perfectly. I experimented by trying to comment out the try block as you can see. I was surprised to find that in that form it wouldn't compile. In essence, I thought what I was doing was simply removing exception handling. I figured that since the code worked and there were no exceptions being thrown, it would work just fine for experimentation purposes. (I understand that I would not want to do this in production mode.) Can someone please explain to me why removing the exception handling causes the program to fail to compile?
    Thanks for any input.
    ... doug
    /* Experimental Code */
    /* http://www.mkyong.com/java/how-to-read-xml-file-in-java-dom-parser/ */
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.w3c.dom.Document;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.Node;
    import org.w3c.dom.Element;
    import java.io.File;
    public class ReadXMLFile {
    public static void main(String argv[]) {
    try {
    File fXmlFile = new File("ReadXMLFile.xml");
    DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
    Document doc = dBuilder.parse(fXmlFile);
    doc.getDocumentElement().normalize();
    System.out.println("Root element :" + doc.getDocumentElement().getNodeName());
    NodeList nList = doc.getElementsByTagName("staff");
    System.out.println("-----------------------");
    for (int temp = 0; temp < nList.getLength(); temp++) {
    Node nNode = nList.item(temp);     
    if (nNode.getNodeType() == Node.ELEMENT_NODE) {
    Element eElement = (Element) nNode;
    System.out.println("First Name : " + getTagValue("firstname",eElement));
    System.out.println("Last Name : " + getTagValue("lastname",eElement));
    System.out.println("Nick Name : " + getTagValue("nickname",eElement));
    System.out.println("Salary : " + getTagValue("salary",eElement));
    } catch (Exception e) {
    e.printStackTrace();
    private static String getTagValue(String sTag, Element eElement){
    NodeList nlList= eElement.getElementsByTagName(sTag).item(0).getChildNodes();
    Node nValue = (Node) nlList.item(0);
    return nValue.getNodeValue();
    }

    877757 wrote:
    I figured that since the code worked and there were no exceptions being thrown, it would work just fine for experimentation purposes. The compiler doesn't know that your code works. It only knows that some method you call can throw some checked exception, and it requires you to catch it or declare that you don't.

  • Using Web Service in BPEL Causes Compile Error

    I am trying to use a document style web service (accepts an
    org.w3c.dom.Element as a parameter) in a BPEL process. I am using JDeveloper
    to generate the web service, and to build the BPEL process. When I
    incorporate the web service as a partnerlink and compile, I get the
    following error:
    [Error ORABPEL-10902]: compilation failed [Description]: in "bpel.xml", XML
    parsing failed because "undefined part element. In WSDL at
    "file.../myws.wsdl", message part element
    "{htt//www.w3.org/2001/XMLSchema}any" is not defined in any of the schemas.
    Please make sure the spelling of the element QName is correct and the WSDL
    import is complete. ". [Potential fix]: n/a.
    Basically, JDeveloper baulks at the wsdl it generated for the web service!
    Files pasted in below.
    The project is using Oracle Fusion Middleware. The target AS is Oracle AS
    10.1.2.0.2 (J2EE1.3). My IDE is JDeveloper 10.1.2 (FYI, generates Oracle's
    own style of web service).
    Thanks
    Ramen
    Web Service WSDL:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!--Generated by the Oracle JDeveloper 10g Web Services WSDL Generator-->
    <!--Date Created: Tue Oct 10 10:12:57 BST 2006-->
    <definitions
    name="pvresourcews"
    targetNamespace="http://ResourceServiceImpl.wsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://ResourceServiceImpl.wsdl"
    xmlns:ns1="http://IPvresourcews.xsd">
    <types>
    <schema
    targetNamespace="http://IPvresourcews.xsd"
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns="http://www.w3.org/2001/XMLSchema"/>
    </types>
    <message name="loadResources0Request">
    <part name="resourceDoc" element="xsd:any"/>
    </message>
    <message name="loadResources0Response"/>
    <portType name="ResourceServiceImplPortType">
    <operation name="loadResources">
    <input name="loadResources0Request"
    message="tns:loadResources0Request"/>
    <output name="loadResources0Response"
    message="tns:loadResources0Response"/>
    </operation>
    </portType>
    <binding name="ResourceServiceImplBinding"
    type="tns:ResourceServiceImplPortType">
    <soap:binding style="rpc"
    transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="loadResources">
    <soap:operation soapAction="" style="rpc"/>
    <input name="loadResources0Request">
    <soap:body use="literal" namespace="pvresourcews"/>
    </input>
    <output name="loadResources0Response">
    <soap:body use="encoded" namespace="pvresourcews"
    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
    </binding>
    <service name="pvresourcews">
    <port name="ResourceServiceImplPort"
    binding="tns:ResourceServiceImplBinding">
    <soap:address
    location="http://localhost:9700/Proto-context-root/Pvresour
    cews"/>
    </port>
    </service>
    </definitions>
    BPEL XML
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="TestProtoWSBPEL-03" src="TestProtoWSBPEL-03.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="client">
    <property name="wsdlLocation">TestProtoWSBPEL-03.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="PartnerLink_1">
    <property name="wsdlLocation">IPvresourcewsRef.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>
    --

    Can you please elaborate on that since I am facing a similar issue. I am going as per the instructions in Order Booking Guide and while deploying the process I face this error "Error:
    [Error ORABPEL-10902]: compilation failed
    [Description]: in "bpel.xml", XML parsing failed because "undefined part element.
    In WSDL at "http://dscp02513.TechMahindra.com:9700/orabpel/default/CreditRatingService/CreditRatingService?wsdl", message part element "{http://services.otn.com}rating" is not defined in any of the schemas.
    Please make sure the spelling of the element QName is correct and the WSDL import is complete.
    [Potential fix]: n/a.

  • [SOLVED] building SAGA GIS with wxgtk 3.0.0 causes compile errors

    My pkgbuild is on pastebin that I'm using to update saga-gis 2.1.1 and it won't compile against wxgtk 3.0.0
    My compile output and the resulting error is on pastebin too.
    I've been told that this could be because saga-gis is looking for or referencing the old wxgtk2.8 libs but I can't tell why.
    I have the following packages related to wxwidgets installed on my Arch box:
    1 extra/wxgtk 3.0.0-2 [installed]
    GTK+ implementation of wxWidgets API for GUI
    2 extra/wxgtk2.8 2.8.12.1-1 [installed]
    GTK+ implementation of wxWidgets API for GUI
    4 extra/wxpython 3.0.0.0-2 [installed]
    A wxWidgets GUI toolkit for Python
    5 extra/wxpython2.8 2.8.12.1-1 [installed]
    A wxWidgets GUI toolkit for Python
    Last edited by saultdon (2014-01-20 14:17:36)

    Yup, saga compiles against wxgtk when it's built without the --enable-slt flag. Luckily for me, saga-gis is the only package I have that relies on wxgtk>=3.0.0 so it shouldn't be affected.

  • [Bindable] causes compilation errors (definition not found) ?

    I'm trying to build a simple actionscript project, where an
    embedded gif is moving around the screen.
    Without the [Bindable] tag it works fine, with [Bindable] it
    throws:
    1172: Definition mx.binding:BindingManager could not be
    found. hello2.as hello2 line 1
    1172: Definition mx.binding:BindingManager could not be
    found. hello2.as hello2 line 1
    1172: Definition mx.core:IPropertyChangeNotifier could not be
    found. hello2.as hello2 line 1
    1172: Definition mx.core:IPropertyChangeNotifier could not be
    found. hello2.as hello2 line 1
    1172: Definition mx.events:PropertyChangeEvent could not be
    found. hello2.as hello2 line 1
    1172: Definition mx.events:PropertyChangeEvent could not be
    found. hello2.as hello2 line 1
    1172: Definition mx.utils:ObjectProxy could not be found.
    hello2.as hello2 line 1
    1172: Definition mx.utils:ObjectProxy could not be found.
    hello2.as hello2 line 1
    1172: Definition mx.utils:UIDUtil could not be found.
    hello2.as hello2 line 1
    1172: Definition mx.utils:UIDUtil could not be found.
    hello2.as hello2 line 1
    1120: Access of undefined property PropertyChangeEvent.
    hello2.as hello2 line 12
    I looked in the docs, there is no mx.binding package at all.
    Is this a flex bug or what? Source is below.
    package {
    import flash.display.Sprite;
    import flash.events.*;
    import mx.core.BitmapAsset;
    public class hello2 extends Sprite
    [Embed(source="assets/back.gif")]
    [Bindable]
    private var bar:Class;
    private var foo:BitmapAsset;
    public function hello2()
    foo = new bar();
    foo.smoothing = true;
    addChild(foo);
    foo.y =100;
    addEventListener(Event.ENTER_FRAME, this.onEnterFrame);
    stage.frameRate = 50;
    private function onEnterFrame(event:Event):void
    foo.x++;

    I think you need to bind the asset outside of your class
    declaration like this:
    package {
    import flash.display.Sprite;
    import flash.events.*;
    import mx.core.BitmapAsset;
    [Embed(source="assets/back.gif")]
    [Bindable]
    private var bar:Class;
    private var foo:BitmapAsset;
    public class hello2 extends Sprite
    public function hello2()
    foo = new bar();
    foo.smoothing = true;
    addChild(foo);
    foo.y =100;
    addEventListener(Event.ENTER_FRAME, this.onEnterFrame);
    stage.frameRate = 50;
    private function onEnterFrame(event:Event):void
    foo.x++;
    Let me know if that doesnt work, i have allot of questions
    about packages myself and havent got much help on this forum yet.
    Hopefully as more people get better at flex that will
    change.

  • Af:serverListener on jspx page - compilation error - jDeveloper 11.1.1.4.0

    I have a weird problem that adding a serverListerner component on jspx page causes compilation error:
    The class of the deferred-methods return type "{0}" can not be found.
    No property editor found for the bean "javax.el.MethodExpression"
    If I remove serverListener (to pass compilation) and then add it again in run-time, it works normally (the backing bean method is being triggered correctly, including passing params, etc).
    It is happening only on the current project, but when I make a test case it works normally. I suspect it has something with the project settings, but I couldn't find the cause regarding that the project has advanced and there are so many differences to be able to do simple comparison.
    Does anyone know what could be the reason for af:serverListener to break compilation, please?
    ... from jspx page...
    <af:resource type="javascript">
    function aaa(event) {
    var esrc = event.getSource();
    AdfCustomEvent.queue(esrc, "bbb", {fvalue : "TEST"},true);
    event.cancel();
    </af:resource>
    <af:inputText label="Label 1" id="it1">
    <af:clientListener method="aaa" type="click"/>
    <af:serverListener type="bbb" method="#{backing_bean.onClick}"/>
    </af:inputText>
    ... from BB ...
    public void onClick(ClientEvent clientEvent) {
    String message = (String) clientEvent.getParameters().get("fvalue");
    System.out.println(message);
    }

    Hi,
    Try like this
    <trh:script>clientListenerMethoName= function(event) {
    var source = event.getSource();
    AdfCustomEvent.queue( source, "serVerListenerType", {}, false); }
    </trh:script>
    Next :
    <af:clientListener method="clientListenerMethoName" type="click"/>
    <af:serverListener type="serVerListenerType" method="#{beanName.methodName}"/>
    Edited by: Raj Gopal K on May 4, 2011 4:05 PM

  • Compilation error[ORA-02289: sequence does not exist] ,even if dbVersion '9.3.350',so strange!

    I know the reason is that PL/SQL is pre-compilation, so now dbVersion < '9.3.350', even if I don't need get REFDESIG_ID_SEQ.nextval ,
    it will also cause this compilation error. So my question is how should I code that?
    When dbVersion < '9.3.350' , no sequence REFDESIG_ID_SEQ, just print '1####';
    else get REFDESIG_ID_SEQ.nextval , then print '2####'
    But now even if dbVersion < '9.3.350', it will cause compilation error[ORA-02289: sequence does not exist] .
    How to resolve this? Thanks a lot.
    declare
        maxid   number;
        nextid number;
        agileid number;
        v_date  date;
        dbVersion varchar(8):=0;
    begin
      select substr(value,1,7) into dbVersion from propertytable where parentid = 5001 and propertyid=37;
            DBMS_OUTPUT.PUT_LINE(dbVersion);
            if (dbVersion < '9.3.350') then
                  DBMS_OUTPUT.PUT_LINE('1####');
            else
                  DBMS_OUTPUT.PUT_LINE('2####');
                  select REFDESIG_ID_SEQ.nextval into agileid from dual;
            end if;
    end;

    In my DB, If dbVersion < '9.3.350' , no sequence REFDESIG_ID_SEQ
    When dbVersion >= '9.3.350' ,sequence REFDESIG_ID_SEQ will exist,
    Now my dbVersion < '9.3.350' , and this pl/sql also cause this error.
    SO how should I to resolve it ?
    Now I need a test case, if dbVersion < '9.3.350' , then print '1####';
    else , get REFDESIG_ID_SEQ.nextval   firstly , then print '2####'
    How should I code?Thanks  a lot.

  • Error message in excel 2003 : compile error in hidden module could be caused by Adobe Acroate add in

    The error message in excel 2003 : "compile error in hidden module AutoExecNew" could be caused by Adobe Acroate add ins, thats waht microsoft told me.I use windows xp service pack3.I have got reader newest version and photoshop 6.0. With this and also with an older reader version I got the error message when opening excel. what can I do?
    Best regards Ray

    If you have Adobe Reader, you (probably) don't have Adobe Acrobat, a
    commercial ($$) product. 5.0 is a very old release.
    But you can check if the files are there anyway from long ago. See
    http://support.microsoft.com/kb/307410
    Aandi Inston

  • Make is compiling files multiple times causing a compilation error

    I'm trying to compile Wine ver 1.3.13 using Solaris Studio 12.3 with the default tools and I'm getting very peculiar results.
    dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    config.status: creating tools/Makefile
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../include -I../include -I/usr/include/freetype2 -D__WINESRC__ -g -D__i386__ -o makedep.o makedep.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../include -I../include -I/usr/include/freetype2 -D__WINESRC__ -g -D__i386__ -o makedep.o makedep.c
    /opt/solarisstudio12.3/bin/cc -g -D__i386__ -o makedep makedep.o
    ../tools/makedep -C. -S.. -T.. -I/usr/include/freetype2 fnt2bdf.c fnt2fon.c make_ctests.c makedep.c relpath.c sfnt2fnt.c
    `makedep' is up to date.
    config.status: creating dlls/acledit/Makefile
    ../../tools/makedep -C. -S../.. -T../.. main.c
    config.status: creating libs/port/Makefile
    ../../tools/makedep -C. -S../.. -T../.. ffs.c fstatvfs.c futimes.c getopt.c getopt1.c getpagesize.c interlocked.c isinf.c isnan.c lstat.c memcpy_unaligned.c memmove.c mkstemps.c poll.c pread.c pwrite.c readlink.c spawn.c statvfs.c strcasecmp.c strerror.c strncasecmp.c symlink.c usleep.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o c_037.o c_037.c <---- first example
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o c_10000.o c_10000.c <---- second example
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o c_10000.o c_10000.c <---- again
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o c_10006.o c_10006.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o c_037.o c_037.c <---- here it is again
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o c_10007.o c_10007.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o c_10006.o c_10006.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o ldt.o ldt.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o debug.o debug.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o loader.o loader.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o ldt.o ldt.c
    "ldt.c", line 211: warning: statement not reached
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o mbtowc.o mbtowc.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o loader.o loader.c
    "loader.c", line 827: warning: assignment type mismatch:
         pointer to function(void) returning void "=" pointer to void
    version=`(GIT_DIR=../../.git git describe HEAD 2>/dev/null || echo "wine-1.3.13") | sed -n -e '$s/\(.*\)/const char wine_build[] = "\1";/p'` && (echo $version | cmp -s - version.c) || echo $version >version.c || (rm -f version.c && exit 1)
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o version.o version.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o wctype.o wctype.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o version.o version.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../include -I../include -I/usr/include/freetype2 -D__WINESRC__ -g -D__i386__ -o relpath.o relpath.c
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../include -I../include -I/usr/include/freetype2 -D__WINESRC__ -g -D__i386__ -o relpath.o relpath.c
    /opt/solarisstudio12.3/bin/cc -g -D__i386__ -o relpath relpath.o ../libs/port/libwine_port.a
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o config.o ./config.c -DBINDIR='"/usr/local/bin"' -DDLLDIR='"/usr/local/lib/wine"' -DLIB_TO_BINDIR=\"`../../tools/relpath /usr/local/lib /usr/local/bin`\" -DLIB_TO_DLLDIR=\"`../../tools/relpath /usr/local/lib /usr/local/lib/wine`\" -DBIN_TO_DLLDIR=\"`../../tools/relpath /usr/local/bin /usr/local/lib/wine`\" -DBIN_TO_DATADIR=\"`../../tools/relpath /usr/local/bin /usr/local/share/wine`\"
    /opt/solarisstudio12.3/bin/cc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DWINE_UNICODE_API="" -D_REENTRANT -fPIC -g -D__i386__ -o config.o ./config.c -DBINDIR='"/usr/local/bin"' -DDLLDIR='"/usr/local/lib/wine"' -DLIB_TO_BINDIR=\"`../../tools/relpath /usr/local/lib /usr/local/bin`\" -DLIB_TO_DLLDIR=\"`../../tools/relpath /usr/local/lib /usr/local/lib/wine`\" -DBIN_TO_DLLDIR=\"`../../tools/relpath /usr/local/bin /usr/local/lib/wine`\" -DBIN_TO_DATADIR=\"`../../tools/relpath /usr/local/bin /usr/local/share/wine`\"
    "./config.c", line 134: warning: argument #1 is incompatible with prototype:
         prototype: pointer to void : "/usr/include/dlfcn.h", line 104
         argument : pointer to function(void) returning pointer to char
    /opt/solarisstudio12.3/bin/cc -shared -Wl,-soname,libwine.so.1 c_037.o c_10000.o c_10006.o c_10007.o c_10029.o c_1006.o c_10079.o c_10081.o c_1026.o c_1250.o c_1251.o c_1252.o c_1253.o c_1254.o c_1255.o c_1256.o c_1257.o c_1258.o c_1361.o c_20127.o c_20866.o c_20932.o c_21866.o c_28591.o c_28592.o c_28593.o c_28594.o c_28595.o c_28596.o c_28597.o c_28598.o c_28599.o c_28600.o c_28603.o c_28604.o c_28605.o c_28606.o c_424.o c_437.o c_500.o c_737.o c_775.o c_850.o c_852.o c_855.o c_856.o c_857.o c_860.o c_861.o c_862.o c_863.o c_864.o c_865.o c_866.o c_869.o c_874.o c_875.o c_878.o c_932.o c_936.o c_949.o c_950.o casemap.o collation.o compose.o config.o cptable.o debug.o fold.o ldt.o loader.o mbtowc.o mmap.o port.o sortkey.o string.o utf8.o wctomb.o wctype.o version.o ../../libs/port/libwine_port.a -lsocket -lnsl -o libwine.so.1.0 <--- and here's where things start to go wrong
    /opt/solarisstudio12.3/bin/cc -shared -Wl,-soname,libwine.so.1 c_037.o c_10000.o c_10006.o c_10007.o c_10029.o c_1006.o c_10079.o c_10081.o c_1026.o c_1250.o c_1251.o c_1252.o c_1253.o c_1254.o c_1255.o c_1256.o c_1257.o c_1258.o c_1361.o c_20127.o c_20866.o c_20932.o c_21866.o c_28591.o c_28592.o c_28593.o c_28594.o c_28595.o c_28596.o c_28597.o c_28598.o c_28599.o c_28600.o c_28603.o c_28604.o c_28605.o c_28606.o c_424.o c_437.o c_500.o c_737.o c_775.o c_850.o c_852.o c_855.o c_856.o c_857.o c_860.o c_861.o c_862.o c_863.o c_864.o c_865.o c_866.o c_869.o c_874.o c_875.o c_878.o c_932.o c_936.o c_949.o c_950.o casemap.o collation.o compose.o config.o cptable.o debug.o fold.o ldt.o loader.o mbtowc.o mmap.o port.o sortkey.o string.o utf8.o wctomb.o wctype.o version.o ../../libs/port/libwine_port.a -lsocket -lnsl -o libwine.so.1.0 <--- permanent failure
    ld: fatal: symbol 'global_asm0' is multiply-defined:
         (file ldt.o type=FUNC; file port.o type=FUNC);
    ld: fatal: file processing errors. No output written to libwine.so.1.0
    *** Error code 2
    dmake: Fatal error: Command failed for target `libwine.so.1.0'
    Current working directory /export/aux/winaux/downloads/wine-1.3.13/libs/wine
    *** Error code 1
    The following command caused the error:
    cd libs/wine && /opt/solarisstudio12.3/bin/dmake
    dmake: Fatal error: Command failed for target `libs/wine'
    MAKE FAILED (exit value 1, total time: 6s)

    ### Dependencies
    c_037.o : c_037.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_10000.o : c_10000.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_10006.o : c_10006.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_10007.o : c_10007.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_10029.o : c_10029.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1006.o : c_1006.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_10079.o : c_10079.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_10081.o : c_10081.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1026.o : c_1026.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1250.o : c_1250.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1251.o : c_1251.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1252.o : c_1252.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1253.o : c_1253.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1254.o : c_1254.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1255.o : c_1255.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1256.o : c_1256.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1257.o : c_1257.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1258.o : c_1258.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_1361.o : c_1361.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_20127.o : c_20127.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_20866.o : c_20866.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_20932.o : c_20932.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_21866.o : c_21866.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28591.o : c_28591.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28592.o : c_28592.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28593.o : c_28593.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28594.o : c_28594.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28595.o : c_28595.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28596.o : c_28596.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28597.o : c_28597.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28598.o : c_28598.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28599.o : c_28599.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28600.o : c_28600.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28603.o : c_28603.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28604.o : c_28604.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28605.o : c_28605.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_28606.o : c_28606.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    c_424.o : c_424.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_437.o : c_437.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_500.o : c_500.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_737.o : c_737.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_775.o : c_775.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_850.o : c_850.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_852.o : c_852.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_855.o : c_855.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_856.o : c_856.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_857.o : c_857.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_860.o : c_860.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_861.o : c_861.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_862.o : c_862.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_863.o : c_863.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_864.o : c_864.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_865.o : c_865.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_866.o : c_866.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_869.o : c_869.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_874.o : c_874.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_875.o : c_875.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_878.o : c_878.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_932.o : c_932.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_936.o : c_936.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_949.o : c_949.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    c_950.o : c_950.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    casemap.o : casemap.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    collation.o : collation.c
    compose.o : compose.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    config.o : config.c ../../include/config.h ../../include/wine/port.h \
    ../../include/wine/library.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h
    cptable.o : cptable.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    debug.o : debug.c ../../include/config.h ../../include/wine/port.h \
    ../../include/wine/debug.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/wine/library.h ../../include/winbase.h \
    ../../include/winerror.h
    fold.o : fold.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    ldt.o : ldt.c ../../include/config.h ../../include/wine/port.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/wine/library.h
    loader.o : loader.c ../../include/config.h ../../include/wine/port.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/wine/library.h
    mbtowc.o : mbtowc.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    mmap.o : mmap.c ../../include/config.h ../../include/wine/port.h \
    ../../include/wine/library.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/wine/list.h
    port.o : port.c ../../include/config.h ../../include/wine/port.h \
    ../../include/wine/library.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h
    sortkey.o : sortkey.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    string.o : string.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    utf8.o : utf8.c ../../include/wine/unicode.h ../../include/windef.h \
    ../../include/winnt.h ../../include/basetsd.h ../../include/guiddef.h \
    ../../include/pshpack2.h ../../include/poppack.h \
    ../../include/pshpack8.h ../../include/pshpack4.h \
    ../../include/winbase.h ../../include/winerror.h \
    ../../include/winnls.h
    wctomb.o : wctomb.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h
    wctype.o : wctype.c ../../include/wine/unicode.h \
    ../../include/windef.h ../../include/winnt.h ../../include/basetsd.h \
    ../../include/guiddef.h ../../include/pshpack2.h \
    ../../include/poppack.h ../../include/pshpack8.h \
    ../../include/pshpack4.h ../../include/winbase.h \
    ../../include/winerror.h ../../include/winnls.h

  • One cause for "Error Compiling Movie: Unknown Error"

    I just finished a huge promotional video project, one which was fraught with problems.
    To start out with, most of my interview footage was RED Epic material, and my b-roll was comprised of a combination of RED Epic (some at 4kHD and some at 5k), RED ONE (some at 4k, some at 3k), XDCAM-EX 1080p, HDV 1080i, Sony AVCHD 1080p, previously exported Vimeo HD h.264 material, and still shots. Needless to say, quite a mess of codecs and odd file types to combine into one project.
    Since much of my b-roll was 1080p, I decided to do my entire edit on a 1080p timeline; however, since all my interview footage was RED, I decided to use a RED Epic 1080p timeline. In doing so, I discovered something important about Premiere, and I don't know if this is a bug, or if it's meant to work this way: when you put 5k RED Epic material on a 1080p timeline and use the zoom controls in the motion effects panel to bring it to size, and attempt to export, you'll get the "Error Compiling Movie: Unknown Error" every time. This may happen with other types of footage that's too big for the timeline too, i'm not sure. However, when you instead right click on the clip and use the "scale to frame size" command, it exports just fine, with no errors.
    I also discovered that (at least with my setup), PrPro can't handle large stills on the timeline; I contiually got OpenGL crash errors until I resized all my images in Photoshop to be no more than 1920px wide.
    The promo video is 11:30, and comprised of five segments. I edited each segment (interview and b-roll) in it's own sequence, and then nested the sequences along with the transition/motion graphics/title slides between them on my master sequence. However, I kept getting crashes and freezes when attempting to export that master sequence which I couldn't explain. Ultimately I had to export each of the individual sequences as a Lagarith UT AVI file, and then import that file back in and place it in the master sequence where the nested sequence had been. Once that was done it exported fine, so I'm still not sure what the problems were, since each individaul sequence exported okay, and the master exported just fine after replacing the nested sequences with the Lagarith clips...
    Anyway, I think I've got a pretty good promo done, and it's definitely a TON better than our last one. When I get it online I'll post a link over in the Lounge and ask for feedback...

    So, I ran into this the first time recently. I discovered it when I copied an adjustment layer for quick grading with an RGB Color Corrector and Color Balance effects in it from a rehearsal cut of a short film.The effects worked fine and rendered out without issue. I imported the sequence into my 'final' cut so I could reuse the titles and adjustment layer. I copied the adjustment layer to the new rough cut of the final sequence and ran into this error when I tried to render it, but only after applying the adjustment layer. I found that if I turned off the Color Balance, the sequence rendered fine. I found that if I moved the Color Balance above the RGB Color Corrector, the effect of the RGB effect completely disappeared AND it rendered correctly (both effects turned on) - so reversing the order worked, but effects were weird. I also found that if I added ANY non-GPU accelerated effects to the RGB Color Corrector that I'd get the same compile error (unknown).
    I went through and deleted clips until I got to 0 on the timeline, added a new one back on, and it still wouldn't render. So, I created an entirely NEW sequence, copied all video and audio (not adjustment layer) from the original failing rough cut of the final sequence, and pasted it into this new sequence. I also copied the adjustment layer again from the rehearsal cut into this new sequence and it is rendering just fine.
    HOURS WASTED DOING THIS! It would be awesome if Adobe actually tested their products before releasing them instead of forcing us to do it for them. My project consisted of about 30-40 different clips and audio, all from the same DSLR (Nikon D810), nothing fancy, two effects in an adjustment layer applied to the entire sequence, and Premiere couldn't handle it. Given this and some of the comments I read while troubleshooting this on this forum, gives me pause in trusting Adobe products for any real work that has a deadline (unless, of course, you build in the required Adobe testing time into your budget).
    So, just another data point; something else to try. Create a new sequence, and copy everything from your non-working one to it, and see if this will jump-start Premier. Worked for me. Good luck.

  • TSQL code that causes table data to be deleted rather than fail with a compilation error

    Afternoon,
    I recently did this by accident and it felt as though it should have failed with a compilation error rather than run
    A query of the form
    delete from jobs
    where id in
    select id from calibrations
    will delete all rows in the jobs table when the id column exists in the jobs table, but not the calibrations table. This should fail with a compilation error.
    the following sql can be used to generate a test database to show the problem
    USE [test]
    GO
    /****** Object:  Table [dbo].[calibrations]    Script Date: 28/11/2014 13:32:59 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[calibrations](
        [JobId] [int] NULL,
        [textfield] [nvarchar](50) NULL
    ) ON [PRIMARY]
    GO
    /****** Object:  Table [dbo].[jobs]    Script Date: 28/11/2014 13:32:59 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[jobs](
        [Id] [int] NOT NULL,
        [Name] [nchar](10) NULL
    ) ON [PRIMARY]
    GO
    INSERT [dbo].[calibrations] ([JobId], [textfield]) VALUES (1, N'something')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (1, N'a         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (2, N'b         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (3, N'c         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (4, N'd         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (5, N'e         ')
    GO
    INSERT [dbo].[jobs] ([Id], [Name]) VALUES (6, N'f         ')
    GO
    Simon
    simon

    will delete all rows in the jobs table when the id column exists in the jobs table,
    but not the calibrations table. This should fail with a compilation error.
    Hello Simon,
    That's a bug in your T-SQL Statement, not in SQL Server. The Statement as it is valid and column "id" exists, so why should it fail on compilation?
    And that is the reason why we always should use full qualified object name, e.g. like
    delete from jobs AS J
    where J.id in
    select SUB.id from calibrations AS SUB
    and this Statement should fail on compilation.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Adding import fl.video causes a compiler error

    So I added this to my action script:
    import fl.video;
    And got these compile errors:
    1172: Definition fl:video could not be found.
    1172: Definition fl:video could not be found.
    Checked my version, and I DO have CS3 Professional.
    I'm assuming I'm missing something really easy. Help?
    Thanks,
    Scott Osborn

    myIP,
    Tried that, and no go.
    Went to Edit->Preferences...->ActionScript
    Clicked the "ActionScript 3.0 Settings..." button.
    Looked in that path, and it wasn't there. Did a search on my
    Flash CS3 folder and found what looked to be the video playback
    code in:
    ...\Component Source\ActionScript 3.0\FLVPlayback
    Added that to path to the "ActionScript 3.0 Settings".
    Tried it, and I'm in.
    I THINK this is the solution, but will have to wait until
    I've tested all the functionality.....
    Thanks man,
    Scott

Maybe you are looking for

  • ADF - HierarchyViewer - Children not displayed

    Hello, I want to use the ADF hierarchy viewer component. Following some tutorials on the net, I tried to realize mine. 1.I create the component from a VO (call it, DepartementsVO) with their children (call them ManagersVO and EmployeesVO). 2.I test,

  • Usage Decision QA32

    Hi, After doing Usage Decision in QA32 and when trying to save system is asking for a serial number. Why is the system asking the Serial number at this stage..?? Should I need to define the Serial number earlier only..?? If so when and where should I

  • In a RT motion and data system, what is the best variable handling structure(s)?

    I built a system that applies motion control to two axes and also takes data from a third axis encoder.  The program structure is parallel timed loops (one motion control loop, one data collection loop, one host communication loop) with front panel.

  • Importing Spreadsheet's

    I put my tables in sys and was trying to move them to my development area using export and import. The export worked fine but the import keeps taking me to a page with a web address. When I select that address, it shows me the license. I read the ent

  • Importing existing dimensions into OWB

    Does any body know how to import an existing Dimension, created in an Oracle database into OWB so that the dimension definition appears under the dimension tab.