Unable to delete a package

Hi Experts,
I am new to HANA and I am practicing some tutorials. I have created a package in the 'Systems' view in the Developer Perspective. However, when I delete that package from the context menu, I get an error message like the one in the image below.
However, to me this package looks empty. I have even checked the SYS_REP package tables 'ACTIVATED_OBJECTS' and 'INACTIVATED_OBJECTS" and I could not find any such files there.
I executed the below SQL commands:
SELECT  * FROM "_SYS_REPO"."ACTIVE_OBJECT" where PACKAGE_ID = 'ajith.demos.HWX_WS.Demos'
SELECT  * FROM "_SYS_REPO"."INACTIVE_OBJECT" where PACKAGE_ID = 'ajith.demos.HWX_WS.Demos'
but they are not returning any values.
Can some one guide me as to how to safely delete such packages?
Thanks,
Ajith Cheruvally

Hi,
I have resolved this issue by following the steps in the following link.
- I tried deleting them through the Web Based IDE first. However, there were still a previous Workspace related file which could not be deleted.
- I then recreated a workspace with the same name and checked it out and deleted from the project explorer and from repository and it worked!!!
https://answers.saphana.com/sap/answers/frontend/web#details/JIVE_DISCUSSION/113000
Thanks,
Ajith Cheruvally

Similar Messages

  • HT1925 unable to locate installation package itunes.msi to delete itunes, any suggestions on how else to delete itunes???

    I am unable to delete itunes from my computer due to unable to locate installation package itunes.msi. I do not have this file on my computer, can anybody tell me how to delete itunes from my computer??

    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Quit out of CleanUp. Restart the PC, and try another iTunes install. Does it go through properly this time?

  • Unable to delete applet.....

    Hi all,
    I am unable to delete one applet which I have loaded in the card.
    There are 2 applets, one is purse and other is loyalty. And am using shareable interface in which loyalty is the server and purse is the client. I can delete the purse applet but i can't delete the loyalty from the card.
    Here is my code : There are in all 3 codes, one is purse, second is loyalty code and third is the shareable interface code. Can some one look at the code and tell me what's wrong in this programs.
    package com.gemplus.examples.loyalty;
    import javacard.framework.*;
    import visa.openplatform.*;
    public class Loyalty extends javacard.framework.Applet implements TestInterface
    static byte points ;
    protected Loyalty(byte[] buffer, short offset, byte length)
    // data offset is used for application specific parameter.
    // initialization with default offset (AID offset).
    short dataOffset = offset;
    if(length > 9) {
    // Install parameter detail. Compliant with OP 2.0.1.
    // | size | content
    // |------|---------------------------
    // | 1 | [AID_Length]
    // | 5-16 | [AID_Bytes]
    // | 1 | [Privilege_Length]
    // | 1-n | [Privilege_Bytes] (normally 1Byte)
    // | 1 | [Application_Proprietary_Length]
    // | 0-m | [Application_Proprietary_Bytes]
    // shift to privilege offset
    dataOffset += (short)(1 + buffer[offset]);
    // finally shift to Application specific offset
    dataOffset += (short)(1 + buffer[dataOffset]);
    // checks wrong data length
    if(buffer[dataOffset] != 4)
    // return received proprietary data length in the reason
    ISOException.throwIt((short)(ISO7816.SW_WRONG_LENGTH + offset + length - dataOffset));
    // go to proprietary data
    dataOffset++;
    // points = 0;
    // register this instance
    register(buffer, (short)(offset + 1), (byte)buffer[offset]);
    * Method installing the applet.
    * @param bArray the array constaining installation parameters
    * @param bOffset the starting offset in bArray
    * @param bLength the length in bytes of the data parameter in bArray
    public static void install(byte[] bArray, short bOffset, byte bLength) throws ISOException
    /* applet instance creation */
    new Loyalty (bArray, bOffset, (byte)bLength);
    * Select method returning true if applet selection is supported.
    * @return boolean status of selection.
    public boolean select()
    /* return status of selection */
    return true;
    * Deselect method.
    public void deselect()
    return;
    public void process(APDU apdu) throws ISOException
              // check valid Applet state
    if(OPSystem.getCardContentState() == OPSystem.APPLET_BLOCKED)
              ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);
                   apdu.setIncomingAndReceive();
              byte[] apduBuffer = apdu.getBuffer();
    // writes the balance into the APDU buffer after the APDU command part
              creditPoints((byte)0x00);     
              apduBuffer[5] = (byte)(points >> 8) ;
              apduBuffer[6] = (byte)points ;
    // sends the APDU response
    // switches to output mode
              apdu.setOutgoing() ;
    // 2 bytes to return
              apdu.setOutgoingLength((short)2) ;
    // offset and length of bytes to return in the APDU buffer
              apdu.sendBytes((short)5, (short)2) ;
         public void creditPoints(byte pTobeCredited)
    points += pTobeCredited;
    public Shareable getShareableInterfaceObject(AID client, byte param){
              if(param != (byte)0x00)
                   return null;
         return (this);
    second code is :
    package com.gemplus.examples.oppurse;
    * Imported packages
    import javacard.framework.*;
    import visa.openplatform.*;
    import com.gemplus.examples.loyalty.*;
    public class OPPurse extends javacard.framework.Applet
    // the APDU constants for all the commands.
         private final static byte INS_GET_BALANCE = (byte)0x30 ;
         private final static byte INS_DEBIT      = (byte)0x31 ;
         private final static byte INS_CREDIT      = (byte)0x32 ;
         private final static byte INS_VERIFY_PIN = (byte)0x33 ;
         private final static byte INS_SET_NAME                    = (byte)0x34 ;
         private final static byte INS_GET_NAME                    = (byte)0x35 ;
    // the OP/VOP specific instruction set for mutual authentication
         private final static byte CLA_INIT_UPDATE = (byte)0x80 ;
         private final static byte INS_INIT_UPDATE = (byte)0x50 ;
         private final static byte CLA_EXTERNAL_AUTHENTICATE = (byte)0x84 ;
         private final static byte INS_EXTERNAL_AUTHENTICATE = (byte)0x82 ;
    // the PIN validity flag
    private boolean validPIN = false;
    // SW bytes for PIN Failed condition
         // the last nibble is replaced with the number of remaining tries
         private final static short      SW_PIN_FAILED = (short)0x63C0;
         private final static short SW_FAILED_TO_OBTAIN_SIO = (short)0x63D0;
         private final static short SW_LOYALTY_APP_NOT_EXIST = (short)0x63E0;
    // the illegal amount value for the exceptions.
    private final static short ILLEGAL_AMOUNT = 1;
    // the maximum balance in this purse.
    private static final short maximumBalance = 10000;
    // the current balance in this purse.
    private static short balance;
    /*     byte[] loyaltyAID = new byte[]{ (byte)0xA0,(byte)0x00,(byte)0x00,(byte)0x00,
              (byte)0x19,(byte)0xFF,(byte)0x00,(byte)0x00,
              (byte)0x00,(byte)0x00,(byte)0x00,(byte)0x00,
              (byte)0x00,(byte)0x00,(byte)0x02,(byte)0x02};*/
    /* Security part of declarations */
    // the Security Object necessary to credit the purse
    private ProviderSecurityDomain securityObject = null;
    // the security channel number
    byte secureChannel = (byte)0xFF;
    // the authentication status
    private boolean authenticationDone = false;
    // the secure channel status
    private boolean channelOpened = false;
         private byte[] nameBuffer = new byte[6];
    * Only this class's install method should create the applet object.
    protected OPPurse(byte[] buffer, short offset, byte length)
    // data offset is used for application specific parameter.
    // initialization with default offset (AID offset).
    short dataOffset = offset;
    if(length > 9) {
    // Install parameter detail. Compliant with OP 2.0.1.
    // | size | content
    // |------|---------------------------
    // | 1 | [AID_Length]
    // | 5-16 | [AID_Bytes]
    // | 1 | [Privilege_Length]
    // | 1-n | [Privilege_Bytes] (normally 1Byte)
    // | 1 | [Application_Proprietary_Length]
    // | 0-m | [Application_Proprietary_Bytes]
    // shift to privilege offset
    dataOffset += (short)( 1 + buffer[offset]);
    // finally shift to Application specific offset
    dataOffset += (short)( 1 + buffer[dataOffset]);
    // checks wrong data length
    if(buffer[dataOffset] != 2)
    // return received proprietary data length in the reason
    ISOException.throwIt((short)(ISO7816.SW_WRONG_LENGTH + offset + length - dataOffset));
    // go to proprietary data
    dataOffset++;
    } else {
    // Install parameter compliant with OP 2.0.
    if(length != 2)
    ISOException.throwIt((short)(ISO7816.SW_WRONG_LENGTH + length));
              // retreive the balance value from the APDU buffer
    short value = (short)(((buffer[(short)(dataOffset + 1)]) & 0xFF)
              | ((buffer[dataOffset] & 0xFF) << 8));
    // checks initial balance value
    if(value > maximumBalance)
    ISOException.throwIt(ISO7816.SW_DATA_INVALID);
              // initializes the balance with the APDU buffer contents
    balance = value;
    // register this instance as an installed Applet
    register();
    // ask the system for the Security Object associated to the Applet
    securityObject = OPSystem.getSecurityDomain();
    // applet is personalized and its state can change
    OPSystem.setCardContentState(OPSystem.APPLET_PERSONALIZED);
    // build the new ATR historical bytes
    byte[] newATRHistory = new byte[]
    // put "OPPurse" in historical bytes.
    (byte)0x4F, (byte)0x50, (byte)0x50, (byte)0x75, (byte)0x72, (byte)0x73, (byte)0x65
    // !!! ACTIVATED IF INSTALL PRIVILEGE IS "Default Selected" (0x04). !!!
    // change the default ATR to a personalized's one
    OPSystem.setATRHistBytes(newATRHistory, (short)0, (byte)newATRHistory.length);
    * Method installing the applet.
    * @param installparam the array constaining installation parameters
    * @param offset the starting offset in installparam
    * @param length the length in bytes of the data parameter in installparam
    public static void install(byte[] installparam, short offset, byte length )
    throws ISOException
    // applet instance creation with the initial balance
    new OPPurse(installparam, offset, length );
    * Select method returning true if applet selection is supported.
    * @return boolean status of selection.
    public boolean select()
    validPIN = false;
    // reset security if used.
    // In case of reset deselect is not called
    reset_security();
    // return status of selection
    return true;
    * Deselect method.
    public void deselect()
    // reset security if used.
    reset_security();
    return;
    * Method processing an incoming APDU.
    * @see APDU
    * @param apdu the incoming APDU
    * @exception ISOException with the response bytes defined by ISO 7816-4
    public void process(APDU apdu) throws ISOException
    // get the APDU buffer
    // the APDU data is available in 'apduBuffer'
    byte[] apduBuffer = apdu.getBuffer();
    // the "try" is mandatory because the debit method
    // can throw a javacard.framework.UserException
    try
         switch(apduBuffer[ISO7816.OFFSET_INS])
    case INS_VERIFY_PIN :
         verifyPIN(apdu);
    break ;
    case INS_GET_BALANCE :
         getBalance(apdu) ;
    break ;
    case INS_DEBIT :
         debit(apdu) ;
    break ;
                        case INS_SET_NAME :
                             setName(apdu);
                        break;
                        case INS_GET_NAME :
                             getName(apdu);
                        break ;
    case INS_CREDIT :
         credit(apdu) ;
    break ;
    case INS_INIT_UPDATE :
    if(apduBuffer[ISO7816.OFFSET_CLA] == CLA_INIT_UPDATE)
    // call initialize/update security method
         init_update(apdu) ;
    else
    // wrong CLA received
    ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
    break ;
    case INS_EXTERNAL_AUTHENTICATE :
    if(apduBuffer[ISO7816.OFFSET_CLA] == CLA_EXTERNAL_AUTHENTICATE)
    // call external/authenticate security method
         external_authenticate(apdu) ;
    else
    // wrong CLA received
    ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
    break ;
    case ISO7816.INS_SELECT :
    break ;
    default :
    // The INS code is not supported by the dispatcher
         ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED) ;
    break ;
         }     // end of the switch
    } // end of the try
              catch(UserException e)
    // translates the UserException in an ISOException.
              if(e.getReason() == ILLEGAL_AMOUNT)
    throw new ISOException ( ISO7816.SW_DATA_INVALID ) ;
    //- P R I V A T E M E T H O D S -
         * Handles Verify Pin APDU.
         * @param apdu APDU object
         private void verifyPIN(APDU apdu)
    // get APDU data
              apdu.setIncomingAndReceive();
    // get APDU buffer
    byte[] apduBuffer = apdu.getBuffer();
    // check that the PIN is not blocked
    if(OPSystem.getTriesRemaining() == 0)
    OPSystem.setCardContentState(OPSystem.APPLET_BLOCKED);
    // Pin format for OP specification
    // |type(2),length|nible(1),nible(2)|nible(3),nible(4)|...|nible(n-1),nible(n)|
    // get Pin length
    byte length = (byte)(apduBuffer[ISO7816.OFFSET_LC] & 0x0F);
    // pad the PIN ASCII value
    for(byte i=length; i<0x0E; i++)
    // only low nibble of padding is used
    apduBuffer[ISO7816.OFFSET_CDATA + i] = 0x3F;
    // fill header TAG
    apduBuffer[0] = (byte)((0x02 << 4) | length);
    // parse ASCII Pin code
    for(byte i=0; i<0x0E; i++)
    // fill bytes with ASCII Pin nibbles
    if((i & 0x01) == 0)
    // high nibble
    apduBuffer[(i >> 1)+1] = (byte)((apduBuffer[ISO7816.OFFSET_CDATA + i] & 0x0F) << 4);
    else
    // low nibble
    apduBuffer[(i >> 1)+1] |= (byte)(apduBuffer[ISO7816.OFFSET_CDATA + i] & 0x0F);
    // verify the received PIN
    // !!! WARNING PIN HAS TO BE INITIALIZED BEFORE USE !!!
    if(OPSystem.verifyPin(apdu, (byte)0))
    // set PIN validity flag
    validPIN = true;
    // if applet state is BLOCKED then restore previous state (PERSONALIZED)
    if(OPSystem.getCardContentState() == OPSystem.APPLET_BLOCKED)
    OPSystem.setCardContentState(OPSystem.APPLET_PERSONALIZED);
    return;
         // the last nibble of returned code is the number of remaining tries
              ISOException.throwIt((short)(SW_PIN_FAILED + OPSystem.getTriesRemaining()));
    * Performs the "getBalance" operation on this counter.
    * @param apdu The APDU to process.
    private void getBalance( APDU apdu )
    // check valid Applet state
    if(OPSystem.getCardContentState() == OPSystem.APPLET_BLOCKED)
                   ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);
    // get the APDU buffer
    byte[] apduBuffer = apdu.getBuffer();
    // writes the balance into the APDU buffer after the APDU command part
              apduBuffer[5] = (byte)(balance >> 8) ;
              apduBuffer[6] = (byte)balance ;
    // sends the APDU response
    // switches to output mode
              apdu.setOutgoing() ;
    // 2 bytes to return
              apdu.setOutgoingLength((short)2) ;
    // offset and length of bytes to return in the APDU buffer
              apdu.sendBytes((short)5, (short)2) ;
         private void setName(APDU apdu)
              // check valid Applet state
    if(OPSystem.getCardContentState() == OPSystem.APPLET_BLOCKED)
                   ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);
              // the operation is allowed only if master pin is validated
         if(!validPIN)
    ISOException.throwIt(ISO7816.SW_SECURITY_STATUS_NOT_SATISFIED);
              byte[] apduBuffer = apdu.getBuffer();
              apdu.setIncomingAndReceive();     
              for(short i=0,k=5;i<6;i++,k++)
                   nameBuffer[i] = apduBuffer[k];
         }//end of setName
         private void getName(APDU apdu)
              // check valid Applet state
    if(OPSystem.getCardContentState() == OPSystem.APPLET_BLOCKED)
                   ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);
                   byte[] apduBuffer = apdu.getBuffer();
                   for(short i=5, k=0;i<11;i++,k++)
                        apduBuffer=nameBuffer[k];
                   apdu.setOutgoing();
                   apdu.setOutgoingLength((short)6);
                   apdu.sendBytes((short)5,(short)6);
         }//end of storeName
    * Performs the "debit" operation on this counter.
    * @param apdu The APDU to process.
    * @exception ISOException If the APDU is invalid.
    * @exception UserException If the amount to debit is invalid.
    private void debit(APDU apdu) throws ISOException, UserException
    // check valid Applet state
    if(OPSystem.getCardContentState() == OPSystem.APPLET_BLOCKED)
                   ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);
    // the operation is allowed only if master pin is validated
         if(!validPIN)
    ISOException.throwIt(ISO7816.SW_SECURITY_STATUS_NOT_SATISFIED);
    // get the APDU buffer
    byte[] apduBuffer = apdu.getBuffer();
         // Gets the length of bytes to recieved from the terminal and receives them
    // If does not receive 4 bytes throws an ISO.SW_WRONG_LENGTH exception
              if(apduBuffer[4] != 2 || apdu.setIncomingAndReceive() != 2)
              ISOException.throwIt(ISO7816.SW_WRONG_LENGTH) ;
              // Reads the debit amount from the APDU buffer
    // Starts at offset 5 in the APDU buffer since the 5 first bytes
    // are used by the APDU command part
              short amount = (short)(((apduBuffer[6]) & (short)0x000000FF)
    | ((apduBuffer[5] << 8 ) & (short)0x0000FF00));
    // tests if the debit is valid
    if((balance >= amount) && (amount > 0))
    // does the debit operation
    balance -= amount ;
    // writes the new balance into the APDU buffer
    // (writes after the debit amount in the APDU buffer)
    apduBuffer[7] = (byte)(balance >> 8) ;
    apduBuffer[8] = (byte)balance ;
    // sends the APDU response
    apdu.setOutgoing() ; // Switches to output mode
    apdu.setOutgoingLength((short)2) ; // 2 bytes to return
    // offset and length of bytes to return in the APDU buffer
    apdu.sendBytes((short)7, (short)2) ;
              /*short points = 10;
    AID loyaltyID = JCSystem.lookupAID(loyaltyAID, (short)0, (byte)loyaltyAID.length);
              if(loyaltyID == null)
                   ISOException.throwIt((short)(SW_LOYALTY_APP_NOT_EXIST));
              TestInterface sio = (TestInterface)(JCSystem.getAppletShareableInterfaceObject(loyaltyID, (byte)0x00));
              if(sio == null)
                   ISOException.throwIt((short)(SW_FAILED_TO_OBTAIN_SIO));
              sio.creditPoints(points);*/
    else
    // throw a UserException with illegal amount as reason
    throw new UserException(ILLEGAL_AMOUNT) ;
    /* byte points = (byte)0x0A;
              //short points = 10;
    AID loyaltyID = JCSystem.lookupAID(loyaltyAID, (short)0, (byte)loyaltyAID.length);
              if(loyaltyID == null)
                   ISOException.throwIt((short)(SW_LOYALTY_APP_NOT_EXIST));
              TestInterface sio = (TestInterface)JCSystem.getAppletShareableInterfaceObject(loyaltyID, (byte)0x00);
              if(sio == null)
                   ISOException.throwIt((short)(SW_FAILED_TO_OBTAIN_SIO));
              sio.creditPoints(points);*/
    * Performs the "credit" operation on this counter. The operation is allowed only
    * if master pin is validated
    * @param apdu The APDU to process.
    * @exception ISOException If the APDU is invalid or if the amount to credit
    * is invalid.
    private void credit(APDU apdu) throws ISOException
    // check valid Applet state
    if(OPSystem.getCardContentState() == OPSystem.APPLET_BLOCKED)
                   ISOException.throwIt(ISO7816.SW_COMMAND_NOT_ALLOWED);
    // the operation is allowed only if master pin is validated and authentication is done
         if (!validPIN || !authenticationDone)
    ISOException.throwIt(ISO7816.SW_SECURITY_STATUS_NOT_SATISFIED);
    // get the APDU buffer
    byte[] apduBuffer = apdu.getBuffer();
              // gets the length of bytes to recieved from the terminal and receives them
    // if does not receive 2 bytes throws an ISO.SW_WRONG_LENGTH exception
              if(apduBuffer[4] != 2 || apdu.setIncomingAndReceive() != 2)
    throw new ISOException(ISO7816.SW_WRONG_LENGTH) ;
              // reads the credit amount from the APDU buffer
    // starts at offset 5 in the APDU buffer since the 5 first bytes
    // are used by the APDU command part
              short amount = (short)(((apduBuffer[6]) & (short)0x000000FF)
    | ((apduBuffer[5] << 8) & (short)0x0000FF00));
    // tests if the credit is valid
    if(((short)(balance + amount) > maximumBalance) || (amount <= (short)0))
    throw new ISOException(ISO7816.SW_DATA_INVALID) ;
    else
    // does the credit operation
    balance += amount ;
    * Performs the "init_update" security operation.
    * @param apdu The APDU to process.
    private void init_update( APDU apdu )
    // receives data
    apdu.setIncomingAndReceive();
    // checks for existing active secure channel
    if(channelOpened)
    // close the openned security channel
    try
    securityObject.closeSecureChannel(secureChannel);
    catch(CardRuntimeException cre2)
    // channel number is invalid. this case is ignored
    // set the channel flag to close
    channelOpened = false;
    try
    // open a new security channel
    secureChannel = securityObject.openSecureChannel(apdu);
    // set the channel flag to open
    channelOpened = true;
    // get expected length
    short expected = apdu.setOutgoing();
    // send authentication result
    // expected length forced to 0x1C
    apdu.setOutgoingLength((byte)0x1C);
    apdu.sendBytes(ISO7816.OFFSET_CDATA, (byte)0x1c);
    catch(CardRuntimeException cre)
    // no available channel or APDU is invalid
    ISOException.throwIt(ISO7816.SW_CONDITIONS_NOT_SATISFIED);
    * Performs the "external_authenticate" security operation.
    * @param apdu The APDU to process.
    private void external_authenticate( APDU apdu )
    // receives data
    apdu.setIncomingAndReceive();
    // checks for existing active secure channel
    if(channelOpened)
    try
    // try to authenticate the client
    securityObject.verifyExternalAuthenticate(secureChannel, apdu);
    // authentication succeed
    authenticationDone = true;
    catch(CardRuntimeException cre)
    // authentication fails
    // set authentication flag to fails
    authenticationDone = false;
    // close the openned security channel
    try {
    securityObject.closeSecureChannel(secureChannel);
    } catch(CardRuntimeException cre2) {
    // channel number is invalid. this case is ignored
    // set the channel flag to close
    channelOpened = false;
    // send authentication result
    ISOException.throwIt(ISO7816.SW_SECURITY_STATUS_NOT_SATISFIED);
    // send authentication result
    ISOException.throwIt(ISO7816.SW_NO_ERROR);
    else
    ISOException.throwIt(ISO7816.SW_SECURITY_STATUS_NOT_SATISFIED);
    * The "reset_security" method close an opened secure channel if exist.
    * @return void.
    public void reset_security()
    // close the secure channel if openned.
    if(secureChannel != (byte)0xFF)
    try
    // close the openned security channel
    securityObject.closeSecureChannel(secureChannel);
    catch(CardRuntimeException cre2)
    // channel number is invalid. this case is ignored
    // reset security parameters
    secureChannel = (byte)0xFF;
    channelOpened = false;
    authenticationDone = false;
    return;
    and the 3rd code is:
    package com.gemplus.examples.loyalty;
    import javacard.framework.Shareable;
    public interface TestInterface extends Shareable
    // public void creditPoints(byte points) ;
              public void creditPoints(byte points) ;
    Thanks in advance......

    Thanks. I know they are not the same thing. A package cannot be deleted if it contains one or more applets.
    I tried to delete by typing in the applet AID first, but it just doesn't work. And of course it doesn't work for package AID.
    Both the package and applet AID are generated in JBuilder, which looks like this, package AID(6D 79 70 61 63 6B 61 67 31),
    applet AID(6D 79 70 61 63 30 30 30 31),
    instance AID(6D 79 70 61 63 30 30 30 31)
    I've tried those three AIDs, it's not working.
    Thanks.

  • 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

  • Unable to delete bad request in ODS DATA TARGET

    Hi Experts,
    I have got an abend in load and need to rerun from POF manually .So i need to delete bad request in ODS .But I am unable to delete bad request in ODS.
    Please tell me how to delete request in red.

    Hi,
    Try to do the following:-
    1. Note that bad  request number
    2. Go to SE16
    3. Open table RSODSACTREQ.: Filter the contents by that request number . There will be one entry for that request . Delete that entry
    4. Open table RSICCONT. There will be one entry for that request . Delete that entry
    5. Open Table RSMONICDP. Filter the contents by that request number . There will be 3-4 entries for that request  depending on number of data packages in  that request .Delete all those entries
    Once these entries are deleted , the bad request will be automatically deleted from the ODS.
    Regards,
    Satya

  • Unable to delete the interchangeability groups

    Hi all,
    Unable to delete the interchageabilty groups.
    Error: Package does not exists
    Can you please guide me to delete the IC groups.
    Regards
    KPN Murthy

    Hi,
    Some information regarding "package does not exsit".
    This type of error usually occurs if the planning package is created manually and assigned to the product at //mat1.So,delete the package in in PPDS Tab,and recheck the issue. For the affected product(s) I think you had manually created the package without a Heuristic assignment to it,which is not allowed.
    Check SAP help:[http://help.sap.com/saphelp_scm2007/helpdata/en/c1/147a375f0dbc7fe100000 09b38f8cf/frameset.htm]
    Best Regards,
    Ada

  • Unable to delete the DTP request.

    Hi friends, iam unable to delete the DTP request, its showing in yellow mode, iam unable to change it to green or red, i checked in SM50 and SM51 ...is there any other way to delte the request ....any FM .
    My version is 7.0 and SP16 BI_Content 9.
    Thanks in advance,

    Hi,
    Try this.
    RSBKDATAPAKID DTP: Status Table for Data Packages.
    Check this table if you can change the status to red.
    If yes - than delete all the requests from manage screen.
    Also check table RSBKREQUEST DTP to delete Request if possible.
    Hope this helps.
    Thanks,
    JituK

  • Unable to delete file from trash because it's "in use" not locked.

    I'm unable to delete a file from trash. I keep getting the following message: "The operation can’t be completed because the item is in use."  I've confirmed the file isn't locked and I've tried renaming it but still no luck. I'm running OSX 10.8.4. Any thoughts?

    Check the 'More Like This' discussions on the right hand column.  I suspect you may find the answer there.
    Ciao.

  • Unable to delete Address Book File

    I am unable to delete nor copy over an Address Book file that I have on an external HD connected via Airport Extreme. When I connect the HD directly to my Macbook Pro, I am able to delete the file - but not via Airport Extreme. When I attempt to delete the file, I get a message from Trash as follows: The operation cannot be completed because the item "Metadata" is in use. Same message when I attempt to replace the file with a new file. In other words, I am unable to use AE to transfer my Address Book file to my external HD, unless I change the name of the file. What is going on here?

    Hello Bob.
    You may be having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not coming from one of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] and select ''Disable all add-ons''. If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and theme. You can troubleshoot plugins the same way.
    If you want support for one of your add-ons, you'll need to contact its author.

  • BOBJ is unable to delete file from OFRS

    System Info:
    Business Objects Enterprise XI3.1 SP3 FP3.2
    Windows 2003 Server Enterprise Edition SP3
    Oracle 10.2
    Java 1.6.0_20
    APACHE Tomcat 5.5.20
    2 clustered servers
    FRS located on SAN Disk Drive connected to primary server (Winchester1)
    We use WebIntelligence exclusivly.
    We are receiving the following error in our event log on our clustered server:
    Source: BusinessObjects_CMS
    Category: General
    Type: Warning
    Event ID: 33018
    Computer: Winchester2
    Unable to delete file from the file repository. Make sure a File Repository Server is running and registered and enabled. Details : Failed to connect to the File Repository Server output. Make sure the server is up and running.
    We have verified the FRS is running and we are able to connect to it from our clustered server (Winchester2).  The security settings are set to full control for the admin group and the users have Read/Write access to the file store folders.  The errors are filling up our event logs and causing issues with the servers.  this appears to be happening each morning and the file it is trying to delete is an .xls file.
    We have a ticket open with SAP Support but they are just as baffled as we are and keep sending us from one group to another and tell us they need to look at it on thier end and they will get back to us.
    Has anyone had this happen on their system?

    Hi Richard, did you ever get this issue resolved?  We are having a similar issue on XI R3 SP4 using NAS/CIFS shares for our File Stores.  We see this issue mainly after our servers are patched and a full environment restart is initiated.  Like you, our event logs fill up with so many error messages I cannot pinpoint exactly when the issue starts happening.
    Any help would be much appreciated.

  • Unable to delete a file

    I'm unable to delete a a file from the filesystem.
    String fileName = "dummy.xml"
    boolean delete = (new File(fileName)).delete();It's not deleting this file from the filesystem.

    Can anything else delete that file? Is the fileopen?
    I don't know what you mean by can anything else
    delete the file.I mean can you delete the file from the command line, a window, whatever. Is it just Java's delete that is having this problem or is it the file system?
    No this is not opened/or use.How do you know?
    DO I have to specify a path for this. Certainly. How else would Java know which file to delete?
    If yes, please read on ........
    the path where this xml file resides could by
    anywhere in the file system. If it is how do I access
    it since there is no specific location (it is left to
    the user's choise to save the file anywhere he
    wants)Keep the user's choice.

  • HT4847 I am unable to delete the last backup from icloud, i checked my all device setting but it still say "cannot delete icloud this time because it is in use,"Please tell me what should i do.

    I am unable to delete the last backup from icloud, i checked my all device setting but it still say "cannot delete icloud this time because it is in use,"Please tell me what should i do                             

    It still didn't work...
    Within this commonfiles\apple folder, there is only one folder, labeled "Internet Services." Within this folder, there are 6 folders, labeled:
    APLZOD.resources
    BookmarkDAV_client.resources
    CoreDAV.resources
    iCloud.resources
    iCloudServices.resources
    ShellStreams.resources
    Within all but CoreDAV and BookmarkDAV_client, there are multiple different folders, all labeled starting with a two letter (acronym I believe, for different languages) then .lproj (for example, a folder is labeled "ar.lproj".
    In each of the folders of APLZOD.resources, there is a file labeled "APLZODlocalized.dll."
    In all of the folders containing the multiple .lproj folders, there are likewise "name"localized.dll files contained.
    In the BookmarkDAV_client and Core DAV folders, they each contain only one file, "Info.plist"
    I attempted to delete all of these files, and still, the FileAssassin could not delete them. I unlocked one of them for instance, and I tried to delete the file myself (thru windows explorer and just clicking delete), and I still had the same issue of coming eventually to the window requesting me to "try again" to have permission.
    What can I do?? I'd like to avoid Unlocker, but if it really is a reliable and SAFE program, and someone knows a SAFE place to download it from, I'd appreciate it very much so!!
    thanks!!

  • Windows Server 2012 R2 RDS: RDS Users are unable to delete files from their desktop

    Hello,
    We are working with Windows Server 2012 R2 RDS. We also implemented User Profile Disks. This is all working fine without problems. The only issue I have is that normal users are unable to delete files from their desktop. They are getting a message:
    you'll need administrator permission to delete this file, with the prompt for administrator access.
    They can edit, copy, rename, cut and paste files. But they cannot delete a file from their desktop.
    I checked the security permissions of the files on the desktop (for example a normal self-created PDF file) and the users are owner and have "Full Control" over the files.
    I checked the file permissions and took a look under "Advanced", selecting the specific domain user and checked the "Advanced Permissions" and the user has the "Delete" option checked. So he should be able to delete the
    file.
    I am guessing this is UPD related issue, or something in GPO. But I already unlinked the GPO objects, that I felt could be the source of this problem, but without results.
    Could someone give me a hint on where to look? It's kinda annoying to users, that they can't delete their own files.

    Hello Bria,
    What you should check first, is the NTFS permissions on the User Profile Disk to begin with. See if the user has full control over the items that are in the UPD.
    Also check the GPO's that are enabled for the user and computer account. You can check that by running: gpresult /h <path>\gpresult.html
    There are two GPO settings that could prevent the user from deleting his/her own items: 
    User
    Configuration\\Policies\\Administrative Templates\\Windows Components\\Windows Explorer\
    Hide these specified drives in My Computer
    Prevent access to specified drives in My
    Computer
    There might be other GPO settings, that block deleting items on the UPD, but can't think of any out of my head.
    I can only think NTFS and GPO settings that might prevent the user from deleting items. In my case it was a GPO setting, that I didn't suspect.

  • Unable to delete songs from my iPad 2

    Last night for the first time ever I had problems updating iOs (version 7.0.4) on my iPad 2. I kept getting one of several messages, for example, saying: iTunes has detected an iPad in recovery mode. You must restore this iPad before it can be used with iTunes. I went through the update three times before it finally worked.
    Then I found that I had every song that I had ever purchased cluttering up -- and filling up -- my iPad. Although in the past I was able to delete either a single song or an entire album, I am now UNABLE TO DELETE ANY SONG.
    I have the iTunes setting on Manual update and have attempted to completely disconnect the disgusting iCloud feature. However, it appears that iCloud is NOT disconnected.
    I happily use the iPad 2 ONLY for a very few uses on a daily basis. I wish to control ALL my music from my iMac.
    I've been with Apple since 1984, but I'm seriously thinking of ditching this iPad 2 for a Samsung product.
    Any assistance will be appreciated.

    Somehow I got 12 songs on my ipad mini that I could not remove.
    I stumbled across a solution.  Plug in the ipad and UN-check "sync music" to remove all but the remaining unwanted song.  Find the song in your itunes library and right click these unwanted songs and RE-ADD it directly to the ipad.
    The ipad should automatically re-check "sync music" and show one song being synced.  Now manually UN-check the sync music box again and the warning will come up "are you sure...existing songs...removed".  Select remove and click the "apply" button in itunes.  Once the changes are applied, you should see the song remove itself from your ipad.
    Good luck!

  • Unable to delete files from powerpoint

    I just installed MS office for iPad. I am experiencing an annoying problem with Powerpoint. When I download and open a file from OneDrive, oftentimes I am subsequently unable to delete it from within the iPad powerpoint program. I get a message that the file cannot be deleted because it is in use. I am able to delete the file from OneDrive on my computer no problem, but it remains on the iPad. Clearing the file cache from settings does not do the trick. I have to uninstall and reinstall powerpoint to get rid of the undeletable files. Am I missing something here? Thanks.

    I just installed MS office for iPad. I am experiencing an annoying problem with Powerpoint. When I download and open a file from OneDrive, oftentimes I am subsequently unable to delete it from within the iPad powerpoint program. I get a message that the file cannot be deleted because it is in use. I am able to delete the file from OneDrive on my computer no problem, but it remains on the iPad. Clearing the file cache from settings does not do the trick. I have to uninstall and reinstall powerpoint to get rid of the undeletable files. Am I missing something here? Thanks.

Maybe you are looking for

  • Safari 5.0.2 doesn't save any more google search results in the history.

    Hello together, Safari doesn't save any more google search results in the history. Steps to reproduce: 1.) go to google.com 2.) search for "APPLE" 3.) open the history Result: the search for "APPLE" is not saved - only the Google mainpage. This has s

  • "Invalid drive e:" error

    Hi... I just bought a Ipod nano and I am trying to install itunes. But I am getting an error in the instalation. A window just opens saying: "Invalid drive E:\" Does anyone knows what is this problem? Regards,

  • How do you lock a submittable form date?

    Help! I'm at my wits end. I need my XFDFs to preserve the date the form was submitted, but I'm having no luck. I'm using this script: var f = this.getField("form_date"); f.value = util.printd("mm/dd/yyyy", new Date ()); This script works on one submi

  • Two databases on a same OS user/account?????

    I know it is possible to have two(or more) databases running on two different OS users/accounts in the same machine. But can we have two(or more) databases running on the same OS user/account in one machine? Wouldn't there be a conflict at ORACLE_HOM

  • Skype for Business & Lync : Contact icons not appe...

    In our environment we have several users that are using Skype for Business, and the rest using Lync. We have noticed that when migrating our users over to Skype for Business, the contact functionality that shows "icons" next to each person's name is