Unable to compile a package calling a package procedure in different schema

Hello,
I'm unable to compile a package referencing a package located in another schema. I get the message: PLS-00201: identifier 'pkg1' must be declared
Facts:
0. I'm running Oracle DB 10.2.0.4.0 Enterprise Edition
1. There is one schema ('schema1') containing a package ('pkg1').
2. This package 'pkg1' has a public synonym ('pkg1' as well).
3. The EXECUTE grant is given to a role ('role1').
4. There is another schema 'schema2', which is granted the role 'role1' (and set as default).
5. This schema 'schema2' contains a package ('pkg2').
6. This package 'pkg2' calls a procedure of 'pkg1'.
7. When compiling 'pkg2', I get error message saying 'pkg1' does not exist.
Of course, if I execute 'GRANT EXECUTE ON pkg1 TO PUBLIC' or 'GRANT EXECUTE ON pkg1 TO schema2', I can compile the package 'pkg2'. But I don't want this.
And what's weird is that, connected as 'schema2', I can execute the statement 'execute pkg1.proc1' without any trouble. So I guess the role setup is okay.
What would let me compile 'pkg2' properly?
Regards,
Arnaud

user3347638 wrote:
Hello,
I'm unable to compile a package referencing a package located in another schema. I get the message: PLS-00201: identifier 'pkg1' must be declared
Facts:
0. I'm running Oracle DB 10.2.0.4.0 Enterprise Edition
1. There is one schema ('schema1') containing a package ('pkg1').
2. This package 'pkg1' has a public synonym ('pkg1' as well).
3. The EXECUTE grant is given to a role ('role1').
4. There is another schema 'schema2', which is granted the role 'role1' (and set as default).
5. This schema 'schema2' contains a package ('pkg2').
6. This package 'pkg2' calls a procedure of 'pkg1'.
7. When compiling 'pkg2', I get error message saying 'pkg1' does not exist.
Of course, if I execute 'GRANT EXECUTE ON pkg1 TO PUBLIC' or 'GRANT EXECUTE ON pkg1 TO schema2', I can compile the package 'pkg2'. But I don't want this.
And what's weird is that, connected as 'schema2', I can execute the statement 'execute pkg1.proc1' without any trouble. So I guess the role setup is okay.
What would let me compile 'pkg2' properly?
Regards,
Arnaudprivileges acquired via ROLE do NOT apply within named PL/SQL procedures.
above is just a restriction built into PL/SQL.
accept it & get on with reality

Similar Messages

  • Unable to compile a package

    I have a package , it has got only specification.
    When i am trying to compile that package either through command window or SQL developer , i am not able to compile.
    It stucks and the window hangs.
    I have looked  into v$locked_object , and the object is not locked.
    I have tried to compile other objects of same schema and it went successful.
    i am not clear on what could be the reason?
    I am on 11g

    It's already there.
    As i posted , i am not able to compile it through sql developer tool also.ie.UI
    It has got a pragma declared name EXCEPTION_INIT.....
    it declares only exceptions

  • Problem while executing my package from a different schema

    Hi,
    I developed a package.
    Now when i try to execute my package( which is in Schema1) from a different schema(Sc2) in the same database(9.2.0.1)
    i.e. execute <Sc1>.<package_name.Package_main_proc>;
    I'm able to execute the package successfully.. but .. my package is deleting all records in all the tables used by the package !!
    If I run the same package from my schema(Sc1).. everything is working fine.
    i.e. its deleted only unwanted records after executing the whole package.
    Can anyone pls help me.
    Regards
    Jack

    Guido,
    I'm sorry for asking a really vague question.
    I included all the dbms_output.put_line() in my code. As i executed in my schema. I couldnt find any error.
    So now, instead of calling my package from Sc1.
    I compiled my package in Sc2( I dint get any errors) and then executed it.
    Even now data is deleted from the tables.
    So now i tried thru another schema(SC3)..
    again compiled it and executed it.. now everything is working fine.
    So to my understanding i just there is some dependency is Schema 2. But i'm not able to figure it out as i'm not getting any error.
    Am i going is right direction. If not please correct me .
    Thanks

  • Accessing database packages in a different schema

    This is frustrating me...
    I've created a forms 6 application under the username vimich.
    In order to access the tables using a different user name I simply created public synonyms for the tables.
    This process does not seem to work for packages in the vimich schema.
    How can I get around this?
    Thanks for your help.
    Lesley.

    Lesley;
    I'm not a fan of creating public synonyms. The technique for making your forms schema independent that I perfer is as follows. Your tables are in the vimich schema. So when you log into the database from Forms log in as the SYSTEM user (default password is MANAGER... hopefully you've changed it).
    SYSTEM is the default DBA and has privileges on all tables. When you use the Data Block Wizard to create your data blocks, the fact that you're not logged in as vimich will cause the wizard to preface all table names with vimich. in the SQL that it generates. Then anyone with priviledges on your tables can use the forms. I have not tried this with packages, but it might work.
    One thing to remember about this approach is that if you log in as vimich using the forms, they will work fine until you try to reference a sequence. Oracle does not like you to prefix your own sequences with schema. even though it has no problems with you prefixing your own tables.
    Best!

  • Calling PL/SQL Procedure In Another Schema Gives Unexpected Result

    I have a SQL Script that does this:
    conn pnr/<password for user pnr>;
    set serveroutput on;
    exec vms.disable_all_fk_constraints;
    SELECT owner, constraint_name, status FROM user_constraints WHERE constraint_type = 'R';
    and the disable_all_fk_constraints procedure that is owned by user 'vms' is defined as:
    create or replace
    procedure disable_all_fk_constraints is
    v_sql   VARCHAR2(4000);
    begin
    dbms_output.put_line('Disabling all referential integrity constraints.');
    for rec in (SELECT table_name, constraint_name FROM user_constraints WHERE constraint_type='R') loop
    dbms_output.put_line('Disabling constraint ' || rec.constraint_name || ' from ' || rec.table_name || '.');
    v_sql := 'ALTER TABLE ' || rec.table_name || ' DISABLE CONSTRAINT ' || rec.constraint_name;
    execute immediate(v_sql);
    end loop;
    end;
    When I run the SQL script, the call to vms.disable_all_fk_constraints disables the FK constrains in the 'vms' schema, whereas I wanted it to disable the FK constraints in the 'pnr' schema (the invoker of the procedure). I know that I could make this work by copying the disable_all_fk_constraints procedure to the 'pnr' schema and calling it as "+exec disable_all_fk_constraints;+" from within the SQL script but I want to avoid having to duplicate the PL/SQL procedure in each schema that uses it.
    What can I do?
    Thank you

    You have two issues to solve.
    First you need to write a packaged procedure that works with INVOKER rights. The default is DEFINER rights.
    The difference is excatly what you need. Usually the package has the rights from the schema where it is defined (=Definer rights). In your case schema VMS. Whereas you need the privileges from the user that calls the package (PNR).
    => Check out the documentation for INVOKER rights
    The second problem is that the view "user_constraints" will not give the results you expect when called from inside a procedure in another schema. An alternative could be to use the view DBA_CONSTRAINTS with a filter on the owner (where owner = 'PNR'). Not sure if there are other working possibilities. Well you could create a list of constraint names that you want to disable, instead of creating the list dynamically.
    And you could have another potential disaster creeping up upon you. If you run this thing, then at this moment you don't have any referential integrity anymore. You can't be sure that you can create the FKs again after this action. This is EXTREMLY DANGEROUS. I would never ever do this in any kind of production or test database. I would be very careful when I do it on a development database.

  • JAXB unable to compile generated package

    following the tutorial I ran xjc.sh on my xsd file generating a package with a -p option.
    when I ran javac user/*.java /usr/impl/*.java I received 100 error message all basicly complaining about missing classes
    ex:
    user/impl/UserDataImpl.java:13: package com.sun.xml.bind does not exist
    implements user.UserData, com.sun.xml.bind.RIElement, com.sun.xml.bind.JAXBObject, user.impl.runtime.UnmarshallableObject, user.impl.runtime.XMLSerializable, user.impl.runtime.ValidatableObject
    user/impl/UserDataTypeImpl.java:11: package com.sun.xml.bind does not exist
    public class UserDataTypeImpl implements user.UserDataType, com.sun.xml.bind.JAXBObject, user.impl.runtime.UnmarshallableObject, user.impl.runtime.XMLSerializable, user.impl.runtime.ValidatableObject
    how do I fix this? where do I find sun.com.xml and other related packages could my xaxb.properties have anything to do with this?
    Here it is:
    #Sun Jan 04 22:52:08 EST 2004
    javax.xml.bind.context.factory=com.sun.xml.bind.ContextFactory_1_0_1
    com.sun.xml.bind.jaxbContextImpl=user.impl.runtime.DefaultJAXBContextImpl
    I am using the web services development pack version 1.3
    here's my xsd file
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="userData" type="userDataType"/>
    <xsd:complexType name="userDataType">
    <xsd:sequence>
    <xsd:element name="userInfo" type="userInfoType" minOccurs="1" m
    axOccurs="1"/>
    <xsd:element name="buddy" type="buddyType" minOccurs="0" maxOccu
    rs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="userInfoType">
    <xsd:sequence>
    <xsd:element name="userID" type="xsd:unsignedShort"/>
    <xsd:element name="userName" type="xsd:string"/>
    <xsd:element name="hashedPW" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="buddyType">
    <xsd:sequence>
    <xsd:element name="userID" type="xsd:unsignedShort"/>
    <xsd:element name="userName" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    drop a line if yo have any idea as to how to fix this

    I wonder if you come across any soultion or suggestion regarding your problem. I have the same kind of problem you are having eventhough I have copied the JWSDP_HOME\jre\lib\endorsed to my <JAVA_HOME>.
    I also updated my CLASSPATH to point to all the required jar files as mentioned in the forum.
    The number of errors have reduced, but I am running into the runtime error. Any idea on what the solution is? Thanks.
    givemethatjava
    I am glad your were able to run it. I, however, am
    still having problems even after placing all the .jar
    files in the jaxb, jaxp, jaxrpc directories in my
    path. 100 errors such as
    .\primer\po\impl\runtimeDefaultJAXBContextImpl.java:128
    cannot resolve symbol
    symbol: class Validator
    location: class primer.po.impl.runtime.Default
    JAXBContextImpl
    public Validator createValidator() throws
    s JAXBException{
    ^
    ...Property Exceptions, and
    .\primer\po\impl\runtime\UnmarshallingContext.java:18:
    package javax.xml.bind does not exist
    import javax.xml.bind.ValidationEvent;
    and
    .\primer\po\impl\runtime\ValidationContext.java:27:
    package com.sun.xml.bind does not exist
    import com.sun.xml.bind.ProxyGroup
    ^
    etc...
    I will continue searching the forums, and other
    sources. Thanks for your help!

  • Compile UTL_FILE PACKAGE BODY

    Hi ALL,,,
    I refreshed one db from PROD dump.
    After that I compiled all Invalid objects .But am unable to compile UTL_FILE PACKAGE BODY
    Showing all are invalid.
    OBJECT_NAME OBJECT_TYPE OWNER
    UTL_FILE PACKAGE BODY UTLFILE
    UTL_FILE_EX PACKAGE BODY UTLFILE
    UTL_FILE_ADMIN PACKAGE BODY UTLFILE
    SQL> show parameter utl
    NAME TYPE VALUE
    create_stored_outlines string
    utl_file_dir string
    Please help me how to compile this.
    If I tried to copile manualyy..I am gettimg Error like..PACAGE ALTERED WITH COMPILATION Errors.
    Thanks
    Manohar.

    Invalid objects are best compiled by using
    sqlplus / as sysdba
    @?\rdbms\admin\utlrp
    This will report the number of invalid objects when finishing.
    When you still have invalid objects you should query dba_errors where name='<name of invalid object>'
    All Oracle provided sources are in
    %ORACLE_HOME%\rdbms\admin
    You can simply find or grep for utl_file.
    There always will be two files
    utl<facility>.sql (or dbms<facility>.sql) and prvt<facility>.plb
    You need to run them both in sqlplus connected as sysdba.
    Sybrand Bakker
    Senior Oracle DBA

  • Calling procedure dynamically, from different schema, permissions issue

    Hi,
    I have a 'master_user' schema that needs to run DDL on a 'secondary_user' schema.
    There appears to be some kind of permissions subtlety that I'm missing. Here are the simplified steps to create, test and troubleshoot:
    Secondary schema has a procedure defined:
    -- Run as SYSTEM (at build time)
    CREATE OR REPLACE PROCEDURE secondary_user.execute_immediate(p_sql_statement IN VARCHAR2)
    IS
    BEGIN
        EXECUTE IMMEDIATE p_sql_statement;
    END;
    GRANT EXECUTE ON secondary_user.execute_immediate TO master_user;
    I then want to call this procedure from master_user to execute DDL dynamically in secondary_user.
    - Run as master_user
    BEGIN
        EXECUTE IMMEDIATE ' BEGIN secondary_user.execute_immediate(''DROP TABLE test1''); END;';
    END;
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ORA-06512: at SECONDARY_USER.EXECUTE_IMMEDIATE", line 5
    ORA-06512: at line 1
    ORA-06512: at line 2
    TROUBLESHOOTING SO FAR:
    Now I can call this procedure directly:
    -- As master_user
    EXEC secondary_user.execute_immediate('drop table test1')
    PL/SQL procedure successfully completed.
    I can call the wrapped procedure as different users:
    -- As secondary_user
    BEGIN
        EXECUTE IMMEDIATE ' BEGIN secondary_user.execute_immediate(''DROP TABLE test1''); END;';
    END;
    PL/SQL procedure successfully completed.
    -- As SYSTEM
    BEGIN
        EXECUTE IMMEDIATE ' BEGIN secondary_user.execute_immediate(''DROP TABLE test1''); END;';
    END;
    PL/SQL procedure successfully completed.
    Can you shed any light on this behaviour? The master_user clearly has permission to run the procedure, but it cannot see it from within an anonymous block. However SYSTEM can so what permission does SYSTEM have that master_user does not?
    Much appreciated,
    Si

    Something doesn't add up:
    SCOTT@orcl > create user secondary_user
      2  identified by secondary_user
      3  default tablespace users
      4  quota unlimited on users
      5  /
    User created.
    SCOTT@orcl > grant create session to secondary_user
      2  /
    Grant succeeded.
    SCOTT@orcl > create user master_user
      2  identified by master_user
      3  default tablespace users
      4  quota unlimited on users
      5  /
    User created.
    SCOTT@orcl > grant create session to master_user
      2  /
    Grant succeeded.
    SCOTT@orcl > CREATE OR REPLACE PROCEDURE secondary_user.execute_immediate(p_sql_statement IN VARCHAR2)
      2
      3  IS
      4
      5  BEGIN
      6
      7      EXECUTE IMMEDIATE p_sql_statement;
      8
      9  END;
    10
    11  /
    Procedure created.
    SCOTT@orcl > GRANT EXECUTE ON secondary_user.execute_immediate TO master_user;
    Grant succeeded.
    SCOTT@orcl >
    SCOTT@orcl > create table secondary_user.test1(n number)
      2  /
    Table created.
    SCOTT@orcl > connect master_user@orcl
    Enter password:
    Connected.
    MASTER_USER@orcl > BEGIN
      2
      3      EXECUTE IMMEDIATE ' BEGIN secondary_user.execute_immediate(''DROP TABLE test1''); END;';
      4
      5  END;
      6
      7  /
    PL/SQL procedure successfully completed.
    MASTER_USER@orcl >
    Make sure table secondary_user.test1 exists when you run SP. And, as you can see, neither secondary_user nor master_user have any privs besides create session.
    SY.

  • Unable to compile class for JSP.       package not found

    Hello folks,
    I was trying to build a simple web application using Eclipse IDE, tomcat 5.x server and ant to build and deploy the application.
    I referenced the following tutorial:
    http://www.onjava.com/pub/a/onjava/2003/01/08/tomcat4.html
    I was able to create a war file, deploy it in tomcat. When i invoke a simple jsp it works fine. However if I try to import any source pkg into jsp it throws error. Below is stack trace.
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    C:\tomcat\work\Catalina\localhost\aweb\org\apache\jsp\web\Home_jsp.java:6:
    package com.ak.test does not exist
    import com.ak.test.*;
    ^
    1 error
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:332)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:412)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1056)
         org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:261)
         org.apache.struts.action.RequestProcessor.internalModuleRelativeForward(RequestProcessor.java:994)
         org.apache.struts.tiles.TilesRequestProcessor.internalModuleRelativeForward(TilesRequestProcessor.java:343)
         org.apache.struts.action.RequestProcessor.processForward(RequestProcessor.java:553)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:211)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)
         org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:397)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    Any clue what is the issue?

    Additional Info:
    Location of files
    ==================
    My jsp file is located at:
    C:\eclipse\workspace\aweb\web\Home.jsp
    my class is located in:
    C:\eclipse\workspace\aweb\WEB-INF\classes\com\ak\test
    Webapplication Dir Structure:C:\eclipse\workspace:
    aweb(webapplication name)
    +web
    -----+Home.jsp
    +src
    ------+com.ak.test.MyJava.java
    +WEB-INF
    ------+Classes
    --------+com.ak.test.MyJava.class
    ------+lib
    ----------struts.jar
    ------+web.xml
    ------+struts-config.xml
    -aweb.war(build.xml creates war file as per WAR format)
    Ant task which installs the webapplication in Tomcat:
    <target name="install" description="Installs the Web Application" depends="package">
    <echo message="Installing ${app.name} ..."/>
    <install url="${manager.url}" username="${username}" password="${password}" path="/${app.name}"
    config="file:${basedir}/war/META-INF/context.xml" war="file:${basedir}/${app.name}.war"/>
    </target>
    build.properties file
    app.name=aweb
    manager.url=http://localhost:8080/manager
    tomcat.home=C:/tomcat
    username=user
    password=user
    Contents of the jsp file
    =======================
    <%@ page import="com.ak.test.MyJava" %>
    <html>
    <head>
    <title>Home Page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    </body>
    </html>

  • Compile error at call Package with type parameter

    Hello!
    I have a problem.
    I have a package PKG_ARRAY_PARAMETER. This package has a procedure with an array parameter.
    PACKAGE PKG_ARRAY_PARAMETER IS
    -- Define Record and Record-Table (array)
    TYPE my_rec is record
    ( v_column1 VARCHAR2(5));
    --Array from my_rec
    TYPE my_rec_table is table of my_rec
    INDEX BY BINARY_INTEGER;
    v_rectable my_rec_table;
    PROCEDURE my_array_proc(p_array my_rec_table);
    END;
    PACKAGE BODY PKG_ARRAY_PARAMETER AS
    PROCEDURE my_array_proc (p_array my_rec_table)IS
    v_index BINARY_INTEGER;
    v_count number;
    BEGIN
    v_count := 1;
    END;
    END;
    The package compiled without errors.
    The problem ist the call of the package procedure.
    DECLARE
         -- Define Record and Record-Table (array)
    TYPE my_rec is record
    ( v_column1 VARCHAR2(5));
    --Array from my_rec
    TYPE my_rec_table is table of my_rec
    INDEX BY BINARY_INTEGER;
    v_rectable my_rec_table;
    BEGIN
         v_rectable(1).v_column1:='aaa';
         PKG_ARRAY_PARAMETER.my_array_proc(v_rectable);
    --null;     
    END;
    I get the error "Error 306.... wrong number or types of arguments in call to 'MY_ARRAY_PROC'"
    Can anybody help me. I have no idea wh I get this error.
    Thanks

    As you have discovered, even if the definitions are identical Oracle treats them as different objects. I recommend "Oracle PL/SQL Programming" by Steven Feuerstein which has a couple of chapters on collections and specifically warns against this.
    I have that section bookmarked as I can never remember how to manipulate collections.

  • Error: Makepkg was unable to build kdenlive package

    Another problem building kdenlive. Can anyone shed some light on the problem here, thanks
    ==>
    ==> kdenlive dependencies:
    - mlt++ (already installed)
    ==> Continue the building of 'kdenlive'? [Y/n]
    ==> ----------------------------------------------
    ==>
    ==> Building and installing package
    ==> Making package: kdenlive 0.5_1-2 (Sun Aug 3 13:34:37 CEST 2008)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Found kdenlive-0.5-1.tar.gz in build dir
    -> Found kdenlive-0.5-gcc43.patch in build dir
    ==> Validating source files with md5sums...
    kdenlive-0.5-1.tar.gz ... Passed
    kdenlive-0.5-gcc43.patch ... Passed
    ==> Extracting Sources...
    -> bsdtar -x -f kdenlive-0.5-1.tar.gz
    ==> Removing existing pkg/ directory...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    patching file kdenlive/docclipavfile.cpp
    patching file kdenlive/docclipproject.cpp
    patching file kdenlive/doccliptextfile.cpp
    patching file kdenlive/docclipvirtual.cpp
    patching file kdenlive/docsubclip.cpp
    patching file kdenlive/dynamicToolTip.cpp
    patching file kdenlive/effectdesc.cpp
    patching file kdenlive/effectparamdialog.cpp
    patching file kdenlive/kdenlive.cpp
    patching file kdenlive/kmmrulerpanel.cpp
    patching file kdenlive/kmmscreen.cpp
    patching file kdenlive/krender.cpp
    patching file kdenlive/kruler.cpp
    patching file kdenlive/krulertimemodel.cpp
    patching file kdenlive/ktimeline.cpp
    patching file kdenlive/ktrackpanel.cpp
    patching file kdenlive/ktrackview.cpp
    *** automake (GNU automake) 1.10.1 found.
    *** Creating acinclude.m4
    make[1]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    make[1]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    *** Creating list of subdirectories
    make[1]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    cd . && make -f admin/Makefile.common subdirs
    make[2]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    make[2]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    make[1]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    *** Creating configure.files
    *** Creating configure.in
    make[1]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    cd . && make -f admin/Makefile.common configure.in ;
    make[2]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    make[2]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    make[1]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    *** Creating aclocal.m4
    acinclude.m4:3699: the serial number must appear before any macro definition
    acinclude.m4:3744: the serial number must appear before any macro definition
    acinclude.m4:3789: the serial number must appear before any macro definition
    acinclude.m4:5997: the serial number must appear before any macro definition
    /usr/share/aclocal/smpeg.m4:13: warning: underquoted definition of AM_PATH_SMPEG
    /usr/share/aclocal/smpeg.m4:13: run info '(automake)Extending aclocal'
    /usr/share/aclocal/smpeg.m4:13: or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached
    ../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
    ../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
    acinclude.m4:6583: AC_LIBTOOL_LINKER_OPTION is expanded from...
    acinclude.m4:8443: _LT_AC_LANG_C_CONFIG is expanded from...
    acinclude.m4:8442: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
    acinclude.m4:6067: AC_LIBTOOL_SETUP is expanded from...
    acinclude.m4:6047: _AC_PROG_LIBTOOL is expanded from...
    acinclude.m4:6012: AC_PROG_LIBTOOL is expanded from...
    acinclude.m4:11781: AM_PROG_LIBTOOL is expanded from...
    acinclude.m4:3472: KDE_PROG_LIBTOOL is expanded from...
    configure.in:54: the top level
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:6540: AC_LIBTOOL_COMPILER_OPTION is expanded from...
    acinclude.m4:10479: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:8588: _LT_AC_LANG_CXX_CONFIG is expanded from...
    acinclude.m4:8587: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
    acinclude.m4:7580: _LT_AC_TAGCONFIG is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:9604: _LT_AC_LANG_F77_CONFIG is expanded from...
    acinclude.m4:9603: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:9704: _LT_AC_LANG_GCJ_CONFIG is expanded from...
    acinclude.m4:9703: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
    *** Creating configure
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached
    ../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
    ../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
    acinclude.m4:6583: AC_LIBTOOL_LINKER_OPTION is expanded from...
    acinclude.m4:8443: _LT_AC_LANG_C_CONFIG is expanded from...
    acinclude.m4:8442: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
    acinclude.m4:6067: AC_LIBTOOL_SETUP is expanded from...
    acinclude.m4:6047: _AC_PROG_LIBTOOL is expanded from...
    acinclude.m4:6012: AC_PROG_LIBTOOL is expanded from...
    acinclude.m4:11781: AM_PROG_LIBTOOL is expanded from...
    acinclude.m4:3472: KDE_PROG_LIBTOOL is expanded from...
    configure.in:54: the top level
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:6540: AC_LIBTOOL_COMPILER_OPTION is expanded from...
    acinclude.m4:10479: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:8588: _LT_AC_LANG_CXX_CONFIG is expanded from...
    acinclude.m4:8587: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
    acinclude.m4:7580: _LT_AC_TAGCONFIG is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:9604: _LT_AC_LANG_F77_CONFIG is expanded from...
    acinclude.m4:9603: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:9704: _LT_AC_LANG_GCJ_CONFIG is expanded from...
    acinclude.m4:9703: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
    *** Creating config.h template
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached
    ../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
    ../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
    acinclude.m4:6583: AC_LIBTOOL_LINKER_OPTION is expanded from...
    acinclude.m4:8443: _LT_AC_LANG_C_CONFIG is expanded from...
    acinclude.m4:8442: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
    acinclude.m4:6067: AC_LIBTOOL_SETUP is expanded from...
    acinclude.m4:6047: _AC_PROG_LIBTOOL is expanded from...
    acinclude.m4:6012: AC_PROG_LIBTOOL is expanded from...
    acinclude.m4:11781: AM_PROG_LIBTOOL is expanded from...
    acinclude.m4:3472: KDE_PROG_LIBTOOL is expanded from...
    configure.in:54: the top level
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:6540: AC_LIBTOOL_COMPILER_OPTION is expanded from...
    acinclude.m4:10479: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:8588: _LT_AC_LANG_CXX_CONFIG is expanded from...
    acinclude.m4:8587: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
    acinclude.m4:7580: _LT_AC_TAGCONFIG is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:9604: _LT_AC_LANG_F77_CONFIG is expanded from...
    acinclude.m4:9603: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:9704: _LT_AC_LANG_GCJ_CONFIG is expanded from...
    acinclude.m4:9703: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
    *** Creating Makefile templates
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached
    ../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
    ../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
    acinclude.m4:6583: AC_LIBTOOL_LINKER_OPTION is expanded from...
    acinclude.m4:8443: _LT_AC_LANG_C_CONFIG is expanded from...
    acinclude.m4:8442: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
    acinclude.m4:6067: AC_LIBTOOL_SETUP is expanded from...
    acinclude.m4:6047: _AC_PROG_LIBTOOL is expanded from...
    acinclude.m4:6012: AC_PROG_LIBTOOL is expanded from...
    acinclude.m4:11781: AM_PROG_LIBTOOL is expanded from...
    acinclude.m4:3472: KDE_PROG_LIBTOOL is expanded from...
    configure.in:54: the top level
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:6540: AC_LIBTOOL_COMPILER_OPTION is expanded from...
    acinclude.m4:10479: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:8588: _LT_AC_LANG_CXX_CONFIG is expanded from...
    acinclude.m4:8587: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
    acinclude.m4:7580: _LT_AC_TAGCONFIG is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:9604: _LT_AC_LANG_F77_CONFIG is expanded from...
    acinclude.m4:9603: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
    configure.in:54: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
    acinclude.m4:9704: _LT_AC_LANG_GCJ_CONFIG is expanded from...
    acinclude.m4:9703: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
    renderer/Makefile.am:4: compiling `kdenlive_renderer.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.in'
    *** Postprocessing Makefile templates
    *** Creating date/time stamp
    *** Finished
    Don't forget to run ./configure
    If you haven't done so in a while, run ./configure --help
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking target system type... i686-pc-linux-gnu
    checking for a BSD-compatible install... /bin/install -c
    checking for -p flag to install... yes
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for kde-config... /opt/kde/bin/kde-config
    checking where to install... /opt/kde (as requested)
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking how to run the C preprocessor... gcc -E
    checking for g++... g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking dependency style of g++... gcc3
    checking whether gcc is blacklisted... no
    checking whether g++ supports -Wmissing-format-attribute... yes
    checking whether gcc supports -Wmissing-format-attribute... yes
    checking whether g++ supports -Wundef... yes
    checking whether g++ supports -Wno-long-long... yes
    checking whether g++ supports -Wno-non-virtual-dtor... yes
    checking whether g++ supports -fno-reorder-blocks... yes
    checking whether g++ supports -fno-exceptions... yes
    checking whether g++ supports -fno-check-new... yes
    checking whether g++ supports -fno-common... yes
    checking whether g++ supports -fexceptions... yes
    checking whether system headers can cope with -O2 -fno-inline... irrelevant
    checking how to run the C++ preprocessor... g++ -E
    checking whether g++ supports -O0... yes
    checking whether g++ supports -Wl,--no-undefined... yes
    checking whether g++ supports -Wl,--allow-shlib-undefined... yes
    not using lib directory suffix
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/nm -B
    checking whether ln -s works... yes
    checking how to recognise dependent libraries... pass_all
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking for g77... no
    checking for xlf... no
    checking for f77... no
    checking for frt... no
    checking for pgf77... no
    checking for cf77... no
    checking for fort77... no
    checking for fl32... no
    checking for af77... no
    checking for xlf90... no
    checking for f90... no
    checking for pgf90... no
    checking for pghpf... no
    checking for epcf90... no
    checking for gfortran... gfortran
    checking whether we are using the GNU Fortran 77 compiler... yes
    checking whether gfortran accepts -g... yes
    checking the maximum length of command line arguments... 32768
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for objdir... .libs
    checking for ar... ar
    checking for ranlib... ranlib
    checking for strip... strip
    checking if gcc static flag works... yes
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC
    checking if gcc PIC flag -fPIC works... yes
    checking if gcc supports -c -o file.o... yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking for shl_load... no
    checking for shl_load in -ldld... no
    checking for dlopen... no
    checking for dlopen in -ldl... yes
    checking whether a program can dlopen itself... yes
    checking whether a statically linked program can dlopen itself... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    configure: creating libtool
    appending configuration tag "CXX" to libtool
    checking for ld used by g++... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC
    checking if g++ PIC flag -fPIC works... yes
    checking if g++ supports -c -o file.o... yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking for shl_load... (cached) no
    checking for shl_load in -ldld... (cached) no
    checking for dlopen... (cached) no
    checking for dlopen in -ldl... (cached) yes
    checking whether a program can dlopen itself... (cached) yes
    checking whether a statically linked program can dlopen itself... (cached) yes
    appending configuration tag "F77" to libtool
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for gfortran option to produce PIC... -fPIC
    checking if gfortran PIC flag -fPIC works... yes
    checking if gfortran supports -c -o file.o... yes
    checking whether the gfortran linker (/usr/bin/ld) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for xgettext... /usr/bin/xgettext
    checking if C++ programs can be compiled... yes
    checking for strlcat... no
    checking if strlcat needs custom prototype... yes - in libkdefakes
    checking for strlcpy... no
    checking if strlcpy needs custom prototype... yes - in libkdefakes
    checking for main in -lutil... yes
    checking for main in -lcompat... no
    checking for crypt in -lcrypt... yes
    checking for socklen_t... yes
    checking for dnet_ntoa in -ldnet... no
    checking for dnet_ntoa in -ldnet_stub... no
    checking for inet_ntoa... yes
    checking for connect... yes
    checking for remove... yes
    checking for shmat... yes
    checking for sys/types.h... (cached) yes
    checking for stdint.h... (cached) yes
    checking sys/bitypes.h usability... yes
    checking sys/bitypes.h presence... yes
    checking for sys/bitypes.h... yes
    checking for poll in -lpoll... no
    checking Carbon/Carbon.h usability... no
    checking Carbon/Carbon.h presence... no
    checking for Carbon/Carbon.h... no
    checking CoreAudio/CoreAudio.h usability... no
    checking CoreAudio/CoreAudio.h presence... no
    checking for CoreAudio/CoreAudio.h... no
    checking if res_init needs -lresolv... yes
    checking for res_init... yes
    checking if res_init needs custom prototype... no
    checking for killpg in -lucb... no
    checking size of int... 4
    checking size of short... 2
    checking size of long... 4
    checking size of char *... 4
    checking for dlopen in -ldl... (cached) yes
    checking for shl_unload in -ldld... no
    checking size of size_t... 4
    checking size of unsigned long... 4
    checking sizeof size_t == sizeof unsigned long... yes
    checking for PIE support... yes
    checking if enabling -pie/fPIE support... yes
    checking crt_externs.h usability... no
    checking crt_externs.h presence... no
    checking for crt_externs.h... no
    checking for _NSGetEnviron... no
    checking for vsnprintf... yes
    checking for snprintf... yes
    checking for X... libraries /usr/lib, headers .
    checking for IceConnectionNumber in -lICE... yes
    checking for libXext... yes
    checking for pthread_create in -lpthread... yes
    checking for extra includes... no
    checking for extra libs... no
    checking for libz... -lz
    checking for libpng... -lpng -lz -lm
    checking for libjpeg6b... no
    checking for libjpeg... -ljpeg
    checking for perl... /usr/bin/perl
    checking for Qt... libraries /opt/qt/lib, headers /opt/qt/include using -mt
    checking for moc... /opt/qt/bin/moc
    checking for uic... /opt/qt/bin/uic
    checking whether uic supports -L ... yes
    checking whether uic supports -nounload ... yes
    checking if Qt needs -ljpeg... no
    checking for rpath... yes
    checking for KDE... libraries /opt/kde/lib, headers /opt/kde/include
    checking if UIC has KDE plugins available... yes
    checking for KDE paths... defaults
    checking for dcopidl... /opt/kde/bin/dcopidl
    checking for dcopidl2cpp... /opt/kde/bin/dcopidl2cpp
    checking for mcopidl... /opt/kde/bin/mcopidl
    checking for artsc-config... /opt/kde/bin/artsc-config
    checking for meinproc... /opt/kde/bin/meinproc
    checking for kconfig_compiler... /opt/kde/bin/kconfig_compiler
    checking for dcopidlng... /opt/kde/bin/dcopidlng
    checking for xmllint... /usr/bin/xmllint
    checking whether byte ordering is bigendian... no
    checking for MAXPATHLEN... 4096
    checking for mlt-config... /usr/bin/mlt-config
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for LIBIEC61883... yes
    checking libavc1394/avc1394.h usability... yes
    checking libavc1394/avc1394.h presence... yes
    checking for libavc1394/avc1394.h... yes
    configure: creating ./config.status
    wrong input (flag != 4) at admin/conf.change.pl line 117, <> line 966.
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    checking if doc should be compiled... yes
    checking if graphics should be compiled... yes
    checking if icons should be compiled... yes
    checking if kdenlive should be compiled... yes
    checking if pgm should be compiled... yes
    checking if po should be compiled... yes
    checking if profiles should be compiled... yes
    checking if renderer should be compiled... yes
    configure: creating ./config.status
    wrong input (flag != 4) at admin/conf.change.pl line 117, <> line 1397.
    config.status: creating Makefile
    config.status: creating doc/Makefile
    config.status: creating doc/de/Makefile
    config.status: creating doc/en/Makefile
    config.status: creating doc/fr/Makefile
    config.status: creating doc/it/Makefile
    config.status: creating graphics/Makefile
    config.status: creating icons/Makefile
    config.status: creating icons/hicolor/Makefile
    config.status: creating icons/hicolor/22x22/Makefile
    config.status: creating icons/hicolor/22x22/actions/Makefile
    config.status: creating icons/hicolor/32x32/Makefile
    config.status: creating icons/hicolor/32x32/actions/Makefile
    config.status: creating kdenlive/Makefile
    config.status: creating pgm/Makefile
    config.status: creating pgm/PAL/Makefile
    config.status: creating po/Makefile
    config.status: creating profiles/Makefile
    config.status: creating renderer/Makefile
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    Good - your configure finished. Start make now
    make all-recursive
    make[1]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    Making all in doc
    make[2]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc'
    Making all in .
    make[3]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc'
    Making all in fr
    make[3]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc/fr'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc/fr'
    Making all in en
    make[3]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc/en'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc/en'
    Making all in de
    make[3]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc/de'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc/de'
    Making all in it
    make[3]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc/it'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc/it'
    make[2]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/doc'
    Making all in graphics
    make[2]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/graphics'
    make[2]: Nothing to be done for `all'.
    make[2]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/graphics'
    Making all in icons
    make[2]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons'
    Making all in hicolor
    make[3]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor'
    Making all in 32x32
    make[4]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/32x32'
    Making all in actions
    make[5]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/32x32/actions'
    make[5]: Nothing to be done for `all'.
    make[5]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/32x32/actions'
    make[5]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/32x32'
    make[5]: Nothing to be done for `all-am'.
    make[5]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/32x32'
    make[4]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/32x32'
    Making all in 22x22
    make[4]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/22x22'
    Making all in actions
    make[5]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/22x22/actions'
    make[5]: Nothing to be done for `all'.
    make[5]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/22x22/actions'
    make[5]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/22x22'
    make[5]: Nothing to be done for `all-am'.
    make[5]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/22x22'
    make[4]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor/22x22'
    make[4]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor'
    make[3]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons/hicolor'
    make[3]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons'
    make[2]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/icons'
    Making all in kdenlive
    make[2]: Entering directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/kdenlive'
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT docclipavfile.o -MD -MP -MF .deps/docclipavfile.Tpo -c -o docclipavfile.o docclipavfile.cpp
    In file included from docclipref.h:37,
    from clipmanager.h:32,
    from docclipavfile.cpp:30:
    effectstack.h:39: warning: type qualifiers ignored on function return type
    docclipavfile.h: In constructor 'DocClipAVFile::DocClipAVFile(const QString&, const KURL&, uint)':
    docclipavfile.h:212: warning: 'DocClipAVFile::m_ttl' will be initialized after
    docclipavfile.h:197: warning: 'bool DocClipAVFile::m_hasCrossfade'
    docclipavfile.cpp:37: warning: when initialized here
    docclipavfile.h: In constructor 'DocClipAVFile::DocClipAVFile(const QString&, const GenTime&, uint)':
    docclipavfile.h:197: warning: 'DocClipAVFile::m_hasCrossfade' will be initialized after
    docclipavfile.h:182: warning: 'bool DocClipAVFile::m_durationKnown'
    docclipavfile.cpp:49: warning: when initialized here
    docclipavfile.h: In constructor 'DocClipAVFile::DocClipAVFile(const KURL&, const GenTime&, bool, uint)':
    docclipavfile.h:197: warning: 'DocClipAVFile::m_hasCrossfade' will be initialized after
    docclipavfile.h:180: warning: 'KURL DocClipAVFile::m_url'
    docclipavfile.cpp:60: warning: when initialized here
    docclipavfile.h: In constructor 'DocClipAVFile::DocClipAVFile(const KURL&, const QString&, const int&, const GenTime&, bool, bool, const QString&, double, uint, uint)':
    docclipavfile.h:216: warning: 'DocClipAVFile::m_lumaduration' will be initialized after
    docclipavfile.h:184: warning: 'double DocClipAVFile::m_framesPerSecond'
    docclipavfile.cpp:77: warning: when initialized here
    docclipavfile.cpp: At global scope:
    docclipavfile.cpp:77: warning: unused parameter 'extension'
    docclipavfile.h: In constructor 'DocClipAVFile::DocClipAVFile(const KURL&)':
    docclipavfile.h:197: warning: 'DocClipAVFile::m_hasCrossfade' will be initialized after
    docclipavfile.h:182: warning: 'bool DocClipAVFile::m_durationKnown'
    docclipavfile.cpp:92: warning: when initialized here
    docclipavfile.cpp: At global scope:
    docclipavfile.cpp:421: warning: unused parameter 'startTime'
    docclipavfile.cpp:421: warning: unused parameter 'endTime'
    docclipavfile.cpp: In member function 'virtual QDomDocument DocClipAVFile::sceneToXML(const GenTime&, const GenTime&) const':
    docclipavfile.cpp:423: warning: control reaches end of non-void function
    mv -f .deps/docclipavfile.Tpo .deps/docclipavfile.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT docclipproject.o -MD -MP -MF .deps/docclipproject.Tpo -c -o docclipproject.o docclipproject.cpp
    docclipproject.cpp:909:3: warning: #warning "this line might be the cause of significant trouble"
    In file included from docclipref.h:37,
    from docclipproject.h:22,
    from docclipproject.cpp:18:
    effectstack.h:39: warning: type qualifiers ignored on function return type
    In file included from docclipproject.cpp:18:
    docclipproject.h:53: warning: type qualifiers ignored on function return type
    docclipproject.h:54: warning: type qualifiers ignored on function return type
    docclipproject.cpp: In member function 'void DocClipProject::slotAddTrack(DocTrackBase*, int)':
    docclipproject.cpp:98: warning: comparison between signed and unsigned integer expressions
    docclipproject.cpp: In member function 'void DocClipProject::slotDeleteTrack(int)':
    docclipproject.cpp:121: warning: comparison between signed and unsigned integer expressions
    docclipproject.cpp: In member function 'virtual const DocClipBase::CLIPTYPE& DocClipProject::clipType() const':
    docclipproject.cpp:728: warning: returning reference to temporary
    mv -f .deps/docclipproject.Tpo .deps/docclipproject.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT doccliptextfile.o -MD -MP -MF .deps/doccliptextfile.Tpo -c -o doccliptextfile.o doccliptextfile.cpp
    doccliptextfile.cpp:273:2: warning: #warning TODO - write this funtion.
    In file included from docclipref.h:37,
    from clipmanager.h:32,
    from doccliptextfile.cpp:30:
    effectstack.h:39: warning: type qualifiers ignored on function return type
    doccliptextfile.cpp: In member function 'virtual void DocClipTextFile::removeTmpFile() const':
    doccliptextfile.cpp:111: warning: 'static bool KIO::NetAccess::del(const KURL&)' is deprecated (declared at /opt/kde/include/kio/netaccess.h:347)
    doccliptextfile.cpp: At global scope:
    doccliptextfile.cpp:150: warning: unused parameter 'element'
    doccliptextfile.cpp:212: warning: unused parameter 'startTime'
    doccliptextfile.cpp:212: warning: unused parameter 'endTime'
    doccliptextfile.cpp: In member function 'uint DocClipTextFile::numReferences() const':
    doccliptextfile.cpp:274: warning: control reaches end of non-void function
    doccliptextfile.cpp: In member function 'virtual QDomDocument DocClipTextFile::sceneToXML(const GenTime&, const GenTime&) const':
    doccliptextfile.cpp:214: warning: control reaches end of non-void function
    doccliptextfile.cpp: In static member function 'static DocClipTextFile* DocClipTextFile::createClip(QDomElement)':
    doccliptextfile.cpp:165: warning: control reaches end of non-void function
    mv -f .deps/doccliptextfile.Tpo .deps/doccliptextfile.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT docclipvirtual.o -MD -MP -MF .deps/docclipvirtual.Tpo -c -o docclipvirtual.o docclipvirtual.cpp
    docclipvirtual.cpp:186:2: warning: #warning TODO - write this funtion.
    In file included from docclipref.h:37,
    from clipmanager.h:32,
    from docclipvirtual.cpp:30:
    effectstack.h:39: warning: type qualifiers ignored on function return type
    docclipvirtual.h: In constructor 'DocClipVirtual::DocClipVirtual(const KURL&, const QString&, const QString&, GenTime, GenTime, uint)':
    docclipvirtual.h:138: warning: 'DocClipVirtual::m_end' will be initialized after
    docclipvirtual.h:128: warning: 'DocClipBase::CLIPTYPE DocClipVirtual::m_clipType'
    docclipvirtual.cpp:34: warning: when initialized here
    docclipvirtual.cpp: In member function 'virtual void DocClipVirtual::removeTmpFile() const':
    docclipvirtual.cpp:85: warning: 'static bool KIO::NetAccess::del(const KURL&)' is deprecated (declared at /opt/kde/include/kio/netaccess.h:347)
    docclipvirtual.cpp: At global scope:
    docclipvirtual.cpp:105: warning: unused parameter 'element'
    docclipvirtual.cpp:133: warning: unused parameter 'startTime'
    docclipvirtual.cpp:133: warning: unused parameter 'endTime'
    docclipvirtual.cpp: In member function 'uint DocClipVirtual::numReferences() const':
    docclipvirtual.cpp:187: warning: control reaches end of non-void function
    docclipvirtual.cpp: In member function 'virtual QDomDocument DocClipVirtual::sceneToXML(const GenTime&, const GenTime&) const':
    docclipvirtual.cpp:135: warning: control reaches end of non-void function
    docclipvirtual.cpp: In static member function 'static DocClipVirtual* DocClipVirtual::createClip(QDomElement)':
    docclipvirtual.cpp:107: warning: control reaches end of non-void function
    mv -f .deps/docclipvirtual.Tpo .deps/docclipvirtual.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT docsubclip.o -MD -MP -MF .deps/docsubclip.Tpo -c -o docsubclip.o docsubclip.cpp
    docsubclip.cpp:82:2: warning: #warning - needs writing.
    docsubclip.cpp:129:2: warning: #warning - need to re-add in/out points correctly.
    docsubclip.cpp:149:3: warning: #warning - needs to be written
    In file included from docclipref.h:37,
    from docclipreflist.h:22,
    from doctrackbase.h:24,
    from doctrackbaselist.h:23,
    from kdenlivedoc.h:32,
    from docsubclip.cpp:19:
    effectstack.h:39: warning: type qualifiers ignored on function return type
    docsubclip.cpp:26: warning: unused parameter 'doc'
    docsubclip.cpp:80: warning: unused parameter 'doc'
    docsubclip.cpp:80: warning: unused parameter 'element'
    docsubclip.cpp:127: warning: unused parameter 'startTime'
    docsubclip.cpp:127: warning: unused parameter 'endTime'
    docsubclip.cpp:142: warning: unused parameter 'toPopulate'
    docsubclip.cpp:147: warning: unused parameter 'element'
    mv -f .deps/docsubclip.Tpo .deps/docsubclip.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT dynamicToolTip.o -MD -MP -MF .deps/dynamicToolTip.Tpo -c -o dynamicToolTip.o dynamicToolTip.cpp
    In file included from docclipref.h:37,
    from docclipreflist.h:22,
    from doctrackbase.h:24,
    from kmmtrackpanel.h:27,
    from dynamicToolTip.cpp:24:
    effectstack.h:39: warning: type qualifiers ignored on function return type
    kruler.h:31: warning: '<unnamed>::g_scrollTimerDelay' defined but not used
    kruler.h:32: warning: '<unnamed>::g_scrollThreshold' defined but not used
    mv -f .deps/dynamicToolTip.Tpo .deps/dynamicToolTip.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT effectdesc.o -MD -MP -MF .deps/effectdesc.Tpo -c -o effectdesc.o effectdesc.cpp
    In file included from effectdesc.cpp:24:
    effectparamdesc.h:99: warning: type qualifiers ignored on function return type
    effectdesc.cpp:69: warning: unused parameter 'name'
    effectdesc.cpp:69: warning: unused parameter 'video'
    effectdesc.cpp:69: warning: unused parameter 'audio'
    mv -f .deps/effectdesc.Tpo .deps/effectdesc.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT effectparamdialog.o -MD -MP -MF .deps/effectparamdialog.Tpo -c -o effectparamdialog.o effectparamdialog.cpp
    In file included from ./docclipref.h:37,
    from ./docclipreflist.h:22,
    from ./doctrackbase.h:24,
    from ./kmmtrackpanel.h:27,
    from effectparamdialog.cpp:34:
    ./effectstack.h:39: warning: type qualifiers ignored on function return type
    In file included from effectparamdialog.cpp:36:
    effectparamdesc.h:99: warning: type qualifiers ignored on function return type
    ./kruler.h:31: warning: '<unnamed>::g_scrollTimerDelay' defined but not used
    ./kruler.h:32: warning: '<unnamed>::g_scrollThreshold' defined but not used
    mv -f .deps/effectparamdialog.Tpo .deps/effectparamdialog.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT kdenlive.o -MD -MP -MF .deps/kdenlive.Tpo -c -o kdenlive.o kdenlive.cpp
    In file included from kdenlive.cpp:115:
    trackpanelclipmovefunction.h:166:2: warning: #warning - The following method is a bad example for programming design.
    In file included from kdenlive.cpp:39:
    /opt/kde/include/kedittoolbar.h:271: warning: 'KEditToolbarWidget' has a field 'KEditToolbarWidget::m_inactiveList' whose type uses the anonymous namespace
    /opt/kde/include/kedittoolbar.h:271: warning: 'KEditToolbarWidget' has a field 'KEditToolbarWidget::m_activeList' whose type uses the anonymous namespace
    In file included from /opt/kde/include/kfileitem.h:31,
    from kdenlive.cpp:58:
    /opt/kde/include/kfilemetainfo.h:1237: warning: type qualifiers ignored on function return type
    In file included from ./docclipref.h:37,
    from ./docclipproject.h:22,
    from ./exportdvddialog.h:28,
    from ./kdenlive.h:48,
    from capturemonitor.h:22,
    from kdenlive.cpp:65:
    ./effectstack.h:39: warning: type qualifiers ignored on function return type
    In file included from ./exportdvddialog.h:28,
    from ./kdenlive.h:48,
    from capturemonitor.h:22,
    from kdenlive.cpp:65:
    ./docclipproject.h:53: warning: type qualifiers ignored on function return type
    ./docclipproject.h:54: warning: type qualifiers ignored on function return type
    In file included from /opt/qt/include/qdragobject.h:50,
    from /opt/kde/include/kurldrag.h:24,
    from clipdrag.h:21,
    from kdenlive.cpp:66:
    /opt/qt/include/qimage.h: In member function 'bool QImageTextKeyLang::operator<(const QImageTextKeyLang&) const':
    /opt/qt/include/qimage.h:61: warning: suggest parentheses around && within ||
    In file included from kdenlive.cpp:74:
    documentbasenode.h: At global scope:
    documentbasenode.h:56: warning: type qualifiers ignored on function return type
    In file included from kdenlive.cpp:104:
    documentgroupnode.h:40: warning: type qualifiers ignored on function return type
    kdenlive.cpp: In member function 'void Gui::KdenliveApp::slotSetClipDuration()':
    kdenlive.cpp:3267: warning: unused variable 'ok'
    kdenlive.cpp: In member function 'void Gui::KdenliveApp::slotProjectDeleteClips(QStringList)':
    kdenlive.cpp:3441: warning: unused variable 'refClip'
    mv -f .deps/kdenlive.Tpo .deps/kdenlive.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT kmmrulerpanel.o -MD -MP -MF .deps/kmmrulerpanel.Tpo -c -o kmmrulerpanel.o kmmrulerpanel.cpp
    kmmrulerpanel.cpp: In member function 'int Gui::KMMRulerPanel::selectedMenuItem()':
    kmmrulerpanel.cpp:160: warning: comparison between signed and unsigned integer expressions
    mv -f .deps/kmmrulerpanel.Tpo .deps/kmmrulerpanel.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT kmmscreen.o -MD -MP -MF .deps/kmmscreen.Tpo -c -o kmmscreen.o kmmscreen.cpp
    In file included from docclipref.h:37,
    from krender.h:34,
    from kmmscreen.cpp:24:
    effectstack.h:39: warning: type qualifiers ignored on function return type
    In file included from exportdvddialog.h:28,
    from kdenlive.h:48,
    from krendermanager.h:26,
    from kmmscreen.cpp:25:
    docclipproject.h:53: warning: type qualifiers ignored on function return type
    docclipproject.h:54: warning: type qualifiers ignored on function return type
    mv -f .deps/kmmscreen.Tpo .deps/kmmscreen.Po
    g++ -DHAVE_CONFIG_H -I. -I.. -I/opt/kde/include -I/opt/qt/include -I. -I/usr/include -I/usr/include/mlt -D_REENTRANT -D__STDC_CONSTANT_MACROS -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -march=i686 -mtune=generic -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DMLT_PREFIX=\""/usr"\" -DENABLE_FIREWIRE -MT krender.o -MD -MP -MF .deps/krender.Tpo -c -o krender.o krender.cpp
    krender.cpp:26:29: error: ffmpeg/avformat.h: No such file or directory
    In file included from krender.cpp:40:
    /opt/qt/include/qimage.h: In member function 'bool QImageTextKeyLang::operator<(const QImageTextKeyLang&) const':
    /opt/qt/include/qimage.h:61: warning: suggest parentheses around && within ||
    In file included from ./docclipref.h:37,
    from ./docclipproject.h:22,
    from ./exportdvddialog.h:28,
    from ./kdenlive.h:48,
    from krender.cpp:53:
    ./effectstack.h: At global scope:
    ./effectstack.h:39: warning: type qualifiers ignored on function return type
    In file included from ./exportdvddialog.h:28,
    from ./kdenlive.h:48,
    from krender.cpp:53:
    ./docclipproject.h:53: warning: type qualifiers ignored on function return type
    ./docclipproject.h:54: warning: type qualifiers ignored on function return type
    In file included from krender.cpp:57:
    effectparamdesc.h:99: warning: type qualifiers ignored on function return type
    krender.h: In constructor 'KRender::KRender(const QString&, QWidget*, const char*)':
    krender.h:190: warning: 'KRender::m_winid' will be initialized after
    krender.h:171: warning: 'double KRender::m_framePosition'
    krender.cpp:62: warning: when initialized here
    krender.h:174: warning: 'KRender::m_generateScenelist' will be initialized after
    krender.h:162: warning: 'bool KRender::isBlocked'
    krender.cpp:62: warning: when initialized here
    krender.cpp:76: warning: deprecated conversion from string constant to 'char*'
    krender.cpp: At global scope:
    krender.cpp:121: warning: unused parameter 'self'
    krender.cpp: In member function 'void KRender::createVideoXWindow(WId, WId)':
    krender.cpp:146: warning: deprecated conversion from string constant to 'char*'
    krender.cpp:180: warning: deprecated conversion from string constant to 'char*'
    krender.cpp: In member function 'QPixmap KRender::extractFrame(int, int, int)':
    krender.cpp:254: warning: deprecated conversion from string constant to 'char*'
    krender.cpp: In member function 'QPixmap KRender::getVideoThumbnail(KURL, int, int, int)':
    krender.cpp:303: warning: deprecated conversion from string constant to 'char*'
    krender.cpp: In member function 'void KRender::getImage(KURL, int, int, int)':
    krender.cpp:324: warning: deprecated conversion from string constant to 'char*'
    krender.cpp: In member function 'void KRender::getFileProperties(KURL, uint)':
    krender.cpp:426: warning: deprecated conversion from string constant to 'char*'
    krender.cpp:447: error: 'AVFormatContext' was not declared in this scope
    krender.cpp:447: error: 'context' was not declared in this scope
    krender.cpp:447: error: expected primary-expression before ')' token
    krender.cpp:447: error: expected `;' before 'mlt_properties_get_data'
    krender.cpp:453: error: expected primary-expression before ')' token
    krender.cpp:453: error: expected `;' before 'mlt_properties_get_data'
    krender.cpp: In member function 'void KRender::setSceneList(QDomDocument, int)':
    krender.cpp:511: warning: deprecated conversion from string constant to 'char*'
    krender.cpp:552: warning: deprecated conversion from string constant to 'char*'
    krender.cpp: In member function 'const GenTime& KRender::seekPosition() const':
    krender.cpp:785: warning: returning reference to temporary
    krender.cpp:786: warning: returning reference to temporary
    krender.cpp: At global scope:
    krender.cpp:823: warning: unused parameter 'dropped'
    krender.cpp:843: warning: unused parameter 'sig'
    krender.cpp:895: warning: unused parameter 'startTime'
    krender.cpp:895: warning: unused parameter 'endTime'
    krender.cpp: In member function 'void KRender::exportCurrentFrame(KURL, bool)':
    krender.cpp:948: warning: deprecated conversion from string constant to 'char*'
    krender.cpp: At global scope:
    krender.cpp:937: warning: unused parameter 'notify'
    krender.cpp:121: warning: 'void consumer_stopped(mlt_consumer_s*, KRender*, mlt_frame_s*)' defined but not used
    make[2]: *** [krender.o] Error 1
    make[2]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5/kdenlive'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/tmp/yaourt-tmp-dan/aur-kdenlive/kdenlive/src/kdenlive-0.5'
    make: *** [all] Error 2
    ==> ERROR: Build Failed.
    Aborting...
    Error: Makepkg was unable to build kdenlive package.

    You sir should be up there with the Gods, thank you - it now compiles.
    I still have a problem as it now crashes and not many clues as to why.
    kdenlive
    kdenlive: + + YOUR MLT INSTALL WAS FOUND IN: /usr
    kdenlive: Mlt inited
    kdenlive: Creating new document
    kdenlive: deleting contents...
    kdenlive: Creating new document DONE
    kdenlive: Creating new document
    kdenlive: deleting contents...
    kdenlive: Creating new document DONE
    kdenlive: **************** INIT DOCUMENT VIEW ***************
    kdenlive: + + CREATING CONSUMER WITH PROFILE: atsc_1080i_60
    kdenlive: + + CREATING CONSUMER WITH PROFILE: atsc_1080i_60
    kdenlive: Creating new document
    kdenlive: deleting contents...
    kdenlive: Creating new document DONE
    KCrash: Application 'kdenlive' crashing...
    and
    [KCrash handler]
    #6 0xb7effca7 in mlt_properties_fetch () from /usr/lib/libmlt.so.0.2.4
    If any light can be shed on this, I would be on cloud 9

  • Calling a stored procedure within a package

    We have a number of packages containing stored procedures. In an existing production application, we used embedded SQL in C programs to call these stored procs
    e.g.
    EXEC SQL EXECUTE
    BEGIN owner.fees_calc.some_fee(:parm1,...);
    END;
    END-EXEC;
    Now, I am trying to use SQLJ to call this same stored proc in the package. However, I am getting a compilation error from sqlj saying that it cannot find a stored procedure or function of that name. It works fine if I use a stored proc that is not in a package.
    So how do I call a stored procedure within a package? Or is this not currently possible with sqlj?
    I am also getting a warning just before the error and I'm wondering if the error is being caused by this:
    Warning: You are using an Oracle JDBC driver, but connecting to a non-Oracle database. SQLJ will perform JDBC-generic SQL checking.
    I am connecting to an Oracle 7.3.3 database using an Oracle 7.3.4 JDBC driver. I also tried using the Oracle 8.0.5 JDBC driver for the same database but I get the same warning message.

    I used the following code to call a stored
    procedure via SQLJ:
    try {
    #sql [iCtx] {
    CALL ibs.cvs_validate.validate_port_id(:IN record_id ,:IN poe_pod_flag,:IN port_id,:OUT error_code,:OUT error_message) };
    where
    "ibs" is the schema
    "cvs_validate" is the package
    "validate_port_id" is the procedure
    The code runs fine, but to get it to compile
    in JDeveloper 2.0, I had to disable the "Check SQL semantics against database schema" option on the Project Properties (SQLJ) property sheet.
    null

  • Unable to run SSIS Package using Stored Procedure

    Hi Guys,
            I have create one simple SSIS Package(Move the first table record to second table).It will execute fine in locally.
    But, If i'm going call/execute .dtsx file using stored procedure. I'm getting Error. so please let me know the valuable solution.
    My Package Path : D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx
    Stored Procedure
    ================
    CREATE PROCEDURE SPEXECUTESSISPACKAGE
    @FILEPATH VARCHAR(8000)
    ,@STATUS VARCHAR(500) = NULL OUTPUT
    AS
    BEGIN
    DECLARE @SQLQUERY VARCHAR(8000)
    DECLARE @STATUSCODE INT
    SET @SQLQUERY = 'DTEXEC /FILE "'+ @FILEPATH +'"'
    SELECT @SQLQUERY AS 'SSIS FULL PATH'
    EXEC @STATUSCODE = master..xp_cmdshell @SQLQUERY
    SELECT @STATUSCODE AS 'STATUSCODE'
    IF @STATUSCODE <> 0
    BEGIN
    SET @STATUS = 'PACAKGE EXECUTE FAILED'
    PRINT @STATUS
    END
    ELSE
    BEGIN
    SET @STATUS = 'PACAKGE EXECUTE SUCCESS'
    PRINT @STATUS
    END
    END
    GO
    RUN
    ============================================================================
    EXEC SPEXECUTESSISPACKAGE 'D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx', NULL
    Error
    =============================================================================
    Microsoft (R) SQL Server Execute Package Utility
    Version 9.00.4035.00 for 32-bit
    Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
    NULL
    Started:  5:06:26 AM
    Error: 2014-11-14 05:06:26.07
       Code: 0xC0011007
       Source: {1244CD18-F96A-4DAD-8FC2-35F794015CA1}
       Description: Unable to load the package as XML because of package does not have a valid XML format. A specific XML parser error will be posted.
    End Error
    Error: 2014-11-14 05:06:26.07
       Code: 0xC0011002
       Source: {1244CD18-F96A-4DAD-8FC2-35F794015CA1}
       Description: Failed to open package file "D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx" due to error 0x80070003 "The system cannot find the path specified.".  This happens when loading a package and the file cannot
    be opened or loaded correctly
    into the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
    End Error
    Could not load package "D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx" because of error 0xC0011002.
    Description: Failed to open package file "D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx" due to error 0x80070003 "The system cannot find the path specified.".  This happens when loading a package and the file cannot be opened
    or loaded correctly int
    o the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
    Source: {1244CD18-F96A-4DAD-8FC2-35F794015CA1}
    Started:  5:06:26 AM
    Finished: 5:06:26 AM
    Elapsed:  0.047 seconds
    NULL
    I'm getting Execte SSIS Package Status : 4
    ===================================
    4

    Two things to check
    1. The account executing the package has access to the path. If package is stored in different server you need to pass the UNC path (ie like \\machinename\...)
    2. Make sure the version of SSIS service is the same in both the servers ie where package is created/stored and where its getting executed. A lower version SSIS service will not be able to load and execute higher version package and it will throw you similar
    error messages as you posted above.
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Calling a package.procedure that accepts a type table.

    I'm getting the error "Error(45,20): PLS-00330: invalid use of type name or subtype name" when I run the procedure SP when it calls the d.is_date procedure that accepts a table as the second parameter.
    below is the Abbreviated code for the package.procedures that contain the "is_date".
    I've tried several things and can't seem to get SP to compile.
    thanks.
    create or replace
    PROCEDURE SP AS
    valid_out boolean;
    date_out date;
    date_fmt_out varchar2(30);
    type Mask_Tabtype is
    table of varchar2( 30 )
    index by binary_integer;
    Fmts Mask_Tabtype;
    BEGIN
    Fmts( 1 ) := 'fxDD-MON-RR';
    Fmts( 2 ) := 'fxDD-MON-YYYY';
    Fmts( 3 ) := 'fxDD-MON';
    Fmts( 4 ) := 'fxMM/DD';
    Fmts( 5 ) := 'fxMM/RRRR';
    d.Is_Date( 'test', Mask_Tabtype, Valid_out, Date_out, Date_Fmt_out);
    END SP;
    create or replace package d as
    type Mask_Tabtype is
    table of varchar2( 30 )
    index by binary_integer;
    Fmts Mask_Tabtype;
    Procedure Is_Date( Value_in in varchar2,
    Tab in Mask_Tabtype,
    Valid_out out boolean,
    Date_out out date,
    Date_Fmt_out out varchar2);
    end d;
    create or replace package body d as
    Fmt_Count integer;
    Date_Val date := null;
    Date_Fmt varchar2( 30 ) := 'fxMM/DD/YYYY';
    Procedure Is_Date(value_in in varchar2, Tab In Mask_Tabtype,
    Valid_out out boolean, Date_out out date, Date_Fmt_Out out varchar2)
    is
    begin
    /* Logic here removed to make post smaller
    End Is_date;
    End d;

    Here...
    d.Is_Date( 'test', Mask_Tabtype, Valid_out, Date_out, Date_Fmt_out);you are passing in Mast_Tabtype, which is a type declaration, rather than a variable of that type.
    Try...
    d.Is_Date( 'test', Fmts, Valid_out, Date_out, Date_Fmt_out);

  • Unable to load the package as XML because of package does not have a valid XML format

    I have SSIS package and I would like to let SQL Server Agent Job to run it.
    However I get Unable to load the package as XML because of package does not have a valid XML format
    What could be wrong?
    Kenny_I

    Hi Kenny,
    What's the version of your SSIS? Please refer to the following methods to solve this issue:
    Hard code the path of SQL Server 2008's DTEXEC while calling the SSIS package as shown below:
    C:\Program Files\Microsoft SQL Server\100\DTS\Binn\DTEXEC.exe /F "D:\MyFolder\MyPackage.dtsx"
    Rename the old exe in the 2005 path to a different name (Example:- C:\Program Files\Microsoft SQL Server\90\DTS\Binn\DTEXEC_Old.exe)
    Go to PATH environmental variable and edit it in such a way that "C:\Program Files\Microsoft SQL Server\100\DTS\Binn" path appears well before the "C:\Program Files\Microsoft SQL Server\90\DTS\Binn" path.
    For more detail information, please refer to the blog below:
    Failed to open package file due to error 0x80070020. The process cannot access the file because it is being used by another process. This happens when loading a package and the file cannot be opened or loaded correctly into the XML document:
    http://blogs.msdn.com/b/ramoji/archive/2009/08/28/failed-to-open-package-file-due-to-error-0x80070020-the-process-cannot-access-the-file-because-it-is-being-used-by-another-process-this-happens-when-loading-a-package-and-the-file-cannot-be-opened-or-loaded-correctly-into-the.aspx
    A similar thread about this topic for your reference:
    http://social.technet.microsoft.com/Forums/en-US/b2987df5-8c9b-4797-bdce-b9ec308731f6/i-am-getting-error-when-running-ssis-package-using-sql-server-agent-error-description-is-unable-to?forum=sqlintegrationservices
    If you have any feedback on our support, please click
    here.
    Elvis Long
    TechNet Community Support

Maybe you are looking for

  • Suggest BAPI for change notification IW52

    Hi, Kindly suggest BAPI for change notification IW52. Regards, Tanaya

  • Data selection and report generation

    Hi, I want to create a report with information about friends. I have a class like this: public class friend(){ Date born; Vector phones; String name; I have a collection of friends and I want generate a report with some of them. I want to select thos

  • Suppressing some subtotals in an ALV grid

    Hi, Does anyone know if it is possible to suppress some of the subtotals in an ALV grid? In some cases I have redundant subtotals, and I would like to suppress one of them. I am using the event SUBTOTAL_TEXT, and this is not something I can control w

  • How to control the options in Search popup of an LOV?

    I have a query panel which is based on a view criteria of a view object. One of the query item is a ComboListOfValues. I do not have control over the 'Search' window which opens when we click on the LOV inside the Query Panel. Basically, I want to co

  • Error when trying to Run MTT Mobile Application in MI2.5 SP 17

    Hi Experts, I got the complete sources and war files of MTT 2.0. i generated the war file from NWDS as "Add jsps as compiled classes" and modified the web.xml file.after that i uploaded it is Sap webconsole as JSP runtime environment and iam using th