Does namcap differentiate between depends and makedepends ?

In my mesa-r600-git AUR package i have the following dependency lines :
depends=('libxt' 'libxxf86vm' 'libxdamage' 'xorg-server' 'libxv' 'libffi')
makedepends=('pkgconfig' 'python2' 'talloc' 'libxml2' 'imake' 'git' 'glproto' 'dri2proto>=2.6' 'llvm>=3.0' 'xorg-server-devel' 'libxvmc' 'libvdpau')
When i run namcap on the pkg, it reports :
mesa-r600g-git W: Dependency libffi included but already satisfied
it is true that python2 and llvm both require libffi to be installed, but these are makedepends, while libffi needs to be present at runtime.
The man page for namcap doesn't make clear if namcap does make  a difference between depends and makedepends, does somebody know if it DOES ?

libffi is in your dependency tree...
|--libxt
|--libsm
+--util-linux provides util-linux-ng
|--udev
|--glib2
|--libffi
but there is nothing wrong with specifying it anyway.  Hence it is just a warning.

Similar Messages

  • OSX 10.6 does not differentiate between PS or illustrator .eps files

    Have other people encountered this problem?
    I have found that snow leopard does not differentiate between photoshop and illustrator .eps files in order to double click and open them.
    Does anyone know how to correct this?

    Hello Chris,
    Thanks so much for clarifying about OSX 10.6 opening .eps files in illustrator or photoshop.
    I was wondering if you knew out how
    to create a droplet that opens multiple PDFs and saves as .gifs.
    When I
    try to do it, all of the .gifs end up having the same name as the file
    that I created the script with, and a "-1" at the end.
    Actually
    there are two droplets that I want to create (to be able to
    drop multiple pdf files):
    Portrait/Square
    script:
    Final thumbnail file to be 51 pixels wide by (x?) pixels
    tall
    Final thumbnail file should be 72 dpi,
    Final
    thumbnail file should be flattened(no transparency in white areas),
    Final thumbnail file should have a 1 pixel wide Grey border to all
    sides
    Final thumbnail file should be saved as a GIF file, RGB
    Landscape script:
    Final thumbnail file to be 65 pixels wide by (x?)
    pixels tall
    Final thumbnail file should be 72 dpi,
    Final
    thumbnail file should be flattened(no transparency in  white areas),
    Final thumbnail file should have a 1 pixel wide Grey border to all
    sides
    Final thumbnail file should be saved as a GIF file, RGB
      Thanks,
    Matthew
    Date: Wed, 14 Apr 2010 14:48:11 -0600
    From: [email protected]
    To: [email protected]
    Subject: OSX 10.6 does not differentiate between PS or illustrator .eps files
    Given EPS files are "really" Illustrator files (Photoshop not being a
    vector application), you probably want to make Illustrator the default.
    No.
    EPS files can be produced and read by many applications.
    And most EPS files cannot be read by Illustrator.
    Frequently EPS files in particular need to be edited in the application which created them (Freehand vs. AI vs. Quark gradients anyone?).
    >

  • Htmlb:tree differentiate between nodeclick and tree node expander click

    Hi,
    how can i differentiate between nodeclick and tree node expander (to get to its children) click in my event processing in htmlb:tree element.
    <u><b>What i am trying to achieve?</b></u>
    Onload just load root node and its immediate children.
    On node expand get the children of the current node and modify htmlb:tree table2 with additional node inofs.
    on node click  call some client function.
    But my issue is that i am not able to differentiate between node expander click and node click in my event handling. Any help on this is appreciated.
    (I am not using MVC)
    Thanks in advance.
    Regards
    Raja
    Message was edited by: Durairaj Athavan Raja

    After reading your weblog I think I understand better. I did some testing with my example.  I am using the toggle = "true", so that the page returns to the server each time an expander is selected.
    <htmlb:tree id          = "myTree1"
                  height      = "75%"
                  toggle      = "true"
                  title       = "<b><otr>EQI Reporting Tree</otr></b>"
                  width       = "90%"
                  onTreeClick = "myTreeClick"
                  table       = "<%= application->selection_model->itview                             %>" >
      </htmlb:tree>
    However I have not added any coding in my event handler to respond to the expander event.  I only respond to myTreeClick (which loads some data for the given selection).  The BSP tree element itself must be doing the hard work for me. 
      if event_id cs 'tr_myTree1'.
        data: tree_event type ref to cl_htmlb_event_tree.
        tree_event ?= htmlb_event.
        if tree_event->server_event = 'myTreeClick'.
          clear appl->message1.
          appl->selection_model->get_chart_data( appl = appl
                                                 node = tree_event->node ).
        endif.
      endif.
    I pass my entire tree defintion to the element.  It appears that it only sends visible nodes to be rendered. When the expander is selected, I don't have to do anything, the tree re-renders with only the newly visible rows. 
    I tested and turned off the toggle (toggle = "false") and my page took forever to load because it was sending all the nodes to the frontend on the first load.

  • Differentiate between Items and Customer Items

    Differentiate between Items and Customer Items
    pls try to give information about this
    thanx

    Hi Joel,
    Funny you mentioned it, because just today I was thinking about that, and I thought that if it will happen, I will rant you on your forum dereliction of duties. So it seems you’re off the hook now :)
    Anyway, judging from the last 3.0/3.0.1 versions it seems like you are doing your other duties very well so I really don’t mind you keeping the lead.
    Best regards,
    Arie.

  • Differentiate between mapping and optimization.

    Hi
    tell me some thing about this.
    Differentiate between mapping and optimization.
    please
    urgent. imran

    user571615 wrote:
    Hi
    tell me some thing about this.
    Differentiate between mapping and optimization.
    please
    urgent. imranThis is a forum of volunteers. There is no urgent here. For urgent, buy yourself a support contract and open an SR on MetaLink.

  • In Mountain Lion how does OS select between ethernet and WiFi when both are activated??

    In Mountain Lion how does OS select between ethernet and WiFi when both are activated??  How does OS use "both" networl accesses??

    It will pick the highest service in the list which has an internet connection.
    To order the list, open Network System Preferences and select Set order of network services from the button below the service list.

  • Servlet filter that can differentiate between Filter and Servlet Writers

    Hey,
    I'm trying to build a Filter and HttpServletResponseWrapper that, when applied to a generic servlet, can differentiate between the output stream from the Servlet and the one from the Filters.
    So, say I have a servlet:
    PrintWriter pw = response.Writer();
    pw.write( "Output from servlet" );
    pw.close();And a filter that is applied to the servlet:
    PrintWriter pw = response.Writer();
    pw.write( "Output from filter" );
    pw.close();I want to be able to do this in my filter that is able to differentiate between the servlet and filter response:
    System.out.println( "Response from servlet: " + responseWrapper.servlet.toString() );
    System.out.println( "Response from filter: " + responseWrapper.filter.toString() );The responseWrapper.servlet and responseWrapper.filter can contain all filter responses from all the servlet(s) and filter(s), respectively.
    Can anyone give me guidance as to how to start with this - really I just need to know if I can differentiate between servlet and filter responses in a generic way (without having to modify the response specially in the filter or servlet files that write output)
    Thanks for your time.

    first thing's first..if the OutputStream if not closed Either a Filter or a ServletChain can write on to the stream.
    There could be cases where the servletoutputstream would be closed at servlet end itself.Therefore,its a valiant effort by acomplishing a responseheader in the response to indicate that.
    Now once the response/outputstream is not closed or flushed out there is not direct way by which you do this unless we indicate using response Headers as flags when we are implementing FilterChaning.
    Hope that might help :)
    REGARDS,
    RaHuL

  • How does the integration between CRM and SD occur

    How does the integration between CRM and SD occur?  Is only via ALE and are there config steps in CRM to ensure the correct data mapping between CRM and SD?
    So, if I create an order or quote in CRM how is it then created in SD?  Or do they share the same data store.
    thanks

    Hi John,
    Here is good documentation regarding Data Exchange for Sales Transactions: the CRM Enterprise and the ERP System are two different repositories, If you create the Sales Order in CRM then they will be replicated into SD (using CRM Middleware, BDoc's)
    http://help.sap.com/saphelp_crm60/helpdata/en/52/2d0c38941e5666e10000009b38f8cf/frameset.htm
    Also you can check the best practice guide for CRM 2007 there you have plenty of information
    http://help.sap.com/bp_crmv12007/CRM_DE/HTML/index.htm
    Hope this help,
    Regards,
    Ramon

  • Differentiating Between Dependent and Independent Data

    HI,
    How can I make a differentiation between dependent and independent data?

    HI,
    If you double click a Transfer requirement in SE10 or SE09 and then press F4 in the field category, you will find some helpful information.
    Client dependent or independent transfer requirements include client specific or cross client objects in the change requests. Workbench objects like SAPscripts are client specific, some entries in customizing are client independent.
    If you display the object list for one change request, and then for each object the object attributes, you will find the flag client specific.
    If one object in the task list has this flag on, then that transport will be client dependent.
    You can also find a list of the high class objects in SAP, here you will see the flag on/off. Use TCODE SOBJ.
    Start STMS and double click on the request itself, you will see which type of request it is (Workbench -> client independent or Customizing -> client dependent).
    I recommend you to import every request on each client without looking inside the request.
    Reward Points if found helpfull..
    Cheers,
    Chandra Sekhar.

  • How to differentiate between Parent and Child in IBASE?

    Hi. I am working on enhancing a BAPI :BAPI_GOODSMVT_CREATE by calling the following function module IBPP_CREATE_IBASE at its exit.
    The BAPI is being called from an SAP ME system and will be passing MATNR and Serial Number of Parent and Child materials to create the IBASE in ECC system. I am confused as to how to differentiate between whether a object is Parent or a Child when the BAPI: BAPI_GOODSMVT_CREATE is called.

    if you have NULL valued fields. If
    you do a compare and one or both are NULL, then the result is always NULL,
    never true or false. Even comparing two fields which are both NULL will
    give NULL as result, not true! Or if you have something like "select
    sum(field) from ..." and one or more are NULL, then the result will be
    NULL. Use always "if field is NULL ..." for NULL checking and for safety
    maybe something like "select sum( IsNull(field,0) ) from ...". Check the
    function ISNULL() in the manual.

  • Differentiate between invoice and clearing document

    the table BSID and BSAD contains the details of both invoice and clearing documents.
    How to differentiate betwee invoice and clearing document.
    i thought that all debit documents are invoices and credits are clearing documents.
    But its not working because there are invoices which are credit and clearing documents which are debit.
    Please let me know if there is any indicator or field which

    Hi,
    No difference between invoice and billing document.
    But If we want to inform the payable to the customer we use the terminalogy invoice.
    Example Credit meomo, debit memo. etc ...
    As there is no difference , both have the same document types.
    thanks
    Kuntla

  • Differentiate between report and generated scheduled report - report list

    How do I differentiate between a (.rpt) report and a (scheduled generated report) from this report (.rpt with data) when I list all the reports on the server.
    I need this information because when I view the scheduled report, I do not need to set the parameters via the crystal viewer.
    Thanks in advance.
    JM

    Ted.
    I am not sure why the scheduled report is saying si_instance=false.
    So I scheduled the sample report - Drilldown and named the scheduled instance as "DrilldownInstance",
    it created two info objects. One has SI_INSTANCE = true and the other has SI_INSTANCE = false!!!!!
    select * from CI_INFOOBJECTS
    where
    SI_PROGID = 'CrystalEnterprise.Report'
    and SI_KIND = 'CrystalReport'
    and si_name LIKE '%DrilldownInstance%'
    I presume it should have only created one object, and set si_instance=true
    Thanks,
    JM
    P.S
    Sorry to be a bother! but this is driving me nuts!
    Edited by: jam mend on Jan 20, 2009 9:07 PM

  • How does iPad choose between wifi and 3G when both are 'on'?

    Easy peasy question.
    I have 02 and Wifi going on my iPad. I know I can use 02 out and about and I know I can use wifi at home etc.
    But when I'm at home how do I make sure I'm using my wifi for data and not my cellular connection???
    I've been turning my cellular to 'off' when at home, just in case, but I don't want to have the faff of turning it off and on, so it would be nice to know how the iPad chooses between wifi and 3G when both data access points are active.
    Also I've had no wifi troubles at home at all. so far... The acid test will be setting it up at work as they have proxyies for everything, but obviously I don't have proxies at home. I'm not sure if the settings screen can cope with different proxies dependent upon different wifi networks... * grin *

    In the status bar I have
    a signal strength indicator then 'O2-UK' then the 'fan' No mention of 3G.
    I'm guessing you're going to say that when 3G is showing then 3G is being used for data?

  • Unable to differentiate between RFC and BAPI

    Hi guys,
        Nowadays I am studying the above concepts:BAPI and RFC.  But I am confused by the two.
    So far I learnt that the two are both techniques used to realize communication between SAP and external
    systems,and frequently via Remote-enabled Function.  
       My confusion is the distinctions between the two. Would you please do me a favor? Tks

    Hi   Alex,
    Just check it out these answers.
    Remote Function Call :
    RFC is an SAP interface protocol. Based on CPI-C, it considerably simplifies the programming of communication processes between systems.
    RFCs enable you to call and execute predefined functions in a remote system - or even in the same system.
    RFCs manage the communication process, parameter transfer and error handling.
    http://help.sap.com/saphelp_47x200/helpdata/en/22/042860488911d189490000e829fbbd/frameset.htm.
    BAPI
    BAPI stands for Business API(Application Program Interface).
    A BAPI is remotely enabled function module
    ie it can be invoked from remote programs like standalone JAVA programs, web interface etc..
    You can make your function module remotely enabled in attributes of Function module but
    A BAPI are standard SAP function modules provided by SAP for remote access.
    Also they are part of Businees Objest Repository(BOR).
    BAPI are RFC enabled function modules. the difference between RFc and BAPI are business objects.
    You create business objects and those are then registered in your BOR (Business Object Repository)
    which can be accessed outside the SAP system by using some other applications (Non-SAP) such as VB or JAVA.
    In this case u only specify the business object and its method from external system
    in BAPI there is no direct system call. while RFC are direct system call.
    Some BAPIs provide basic functions and can be used for most SAP business object types.
    These BAPIs should be implemented the same for all business object types.
    Standardized BAPIs are easier to use and prevent users having to deal with a number of different BAPIs.
    Whenever possible, a standardized BAPI must be used in preference to an individual BAPI.
    another points,
    BAPI is object oriented. It is placed under Business objects as methods.
    RFC is just a Function module or a call.
    RFC: is just a FM that can be called from remote system too(destination defined in transaction SM59).
    BAPI: Business Application Programming Interface
    A BAPI is a method of a business object defined in the Business Object Repository (BOR). For example, in the BOR, you can find a business object called SalesOrder, which conceptually represents a sales order in the system. A business object typically has several methods that can be used to read, create, modify a particular instance of the business object, or list instances of the business object matching certain selection criteria. These methods are BAPIs.
    Technically, a BAPI is implemented using a RFM. But, unlike the non-BAPI RFMs, a BAPI is usually well documented, has nicer parameter names, and is supported by SAP for several SAP software releases. You can browse Business objects and BAPIs in the SAP system using transaction BAPI.
    Thanks
    Eshwar
    *Rewards if useful*

  • REQUEST: Differentiate between iPhoto and Events

    Hey there. Just got iLife 08 and I really like it.
    However, I have a major problem with iPhoto '08. I like the Events feature, but I have a ton of random photos that don't necessarily qualify as an event. Random shot here or there.
    In all previous iterations of iLife, the Albums and Library were only loosely linked. That is, you could delete a photo from album "Summer 07" and it wouldn't delete it from the Library. The iTunes playlist approach to photo organization, as it were.
    Now, I expected/hoped/assumed the same functionality would be extended to Events. It wasn't. I found this out after I'd deleted about a quarter of my photo library. Thankfully the undo button averted disaster.
    I don't understand why this works this way. If I have a random snapshot of, say, a sunset, one which doesn't fit into any event either contextually or chronologically, I'd like to be able to delete it from an Event while keeping it in my Library.
    I could, of course, just split off all those photos and have one big "Miscellaneous" event. But that seems to run counter to the stated purpose of Events, and it's pretty darn tedious, and I don't understand why I can't just delete a few odd photos from the Events window without erasing them off of my computer.
    Am I missing some big trick? Is there any way to change this?
    Thanks.

    The problem you're having is that you're assuming the new events replace the flexibility of the old albums. That's just not so.
    Pre-iPhoto 08, all your photos were permanently stored in the library, and grouped by time of import into "film rolls". Using your example, all your weekend events would be imported into 1 roll. From that roll, you could create as many albums as you liked. Or, you could split that album into multiple rolls, if, say, one memory card was used to shoot a football game, a sunset, and then a concert. It was up to you. Create albums, split the film roll, or both. You were happy then, I assume.
    Now with iPhoto 08, essentially NOTHING HAS CHANGED! You still have the flexibility to create your albums for football and concert, and leave all the originals in the library, including the sunset that doesn't go with the game or concert.
    Only 2 things have changed: (1) film rolls are now called 'events', and (2) instead of importing your whole memory card into a single roll, iPhoto uses your preferences to automatically separate your photos into separate rolls based on when they were shot. (you could still do this before, just manually)
    You basically have two primary means of organizing your photos: manually with albums, or automatically (via date) with events. The benefit of using albums is that it gives you the ultimate control that you want, while leaving the random photos protected in the library. The con is that you have to create and manage albums manually. The benefits of using events are that they're neatly organized by date and you have the flexibility to manually override their creation by splitting them or moving photos to any event you choose. The con of events is that, as sub-folders of the master library, every photo must be in an event, which forces you to create miscellaneous events of 1 or 2 photos--which admittedly clutters up your library--but only if you want that granularity of organization. There's nothing stopping you from having 1 single event called "football game, drunken roommate, and concert", and then 2 albums for the game and concert.
    I tend to take photos like you do: many photos of particular events, with random scattered shots of wildlife in my yard, wrecks by the side of the road, cats doing funny things, etc. And I, too, don't like having lots of extra film rolls (still on v6) for those miscellaneous shots that don't qualify in my mind as events worthy of their own category.
    So here's what I do... I never use albums because they're just too much work and they don't sort automatically. Since nearly all of my photos fall into the classic definition of an event, I primarily use film rolls (now events) to group my photos. If a roll from a camping trip happens to have 2 photos of a wild turkey in my yard, I usually leave it in the roll, but edit the roll's description to say something like "Camping trip to Catskills (+ wild turkey in yard)". That way I can see that the roll contains miscellaneous shots, and also be able to find them in the future if I search for "turkey".
    While importing new rolls/events and organizing them, if I happen to notice that I have quite a few of those miscellaneous shots in close time proximity to one another, then I'll create a "Miscellaneous-August 2007" roll/event, for example, and move them all into one place. Having them together doesn't help the random pictures at all, but it does clean up all the other events from where the random pictures came. I actually find myself doing this more frequently since I started importing the highly random photos from my cell phone. One giant "misc" event would be too crazy, and having lots of scattered 1- or 2-pic events would be too cluttered. But having just 1 misc event per month seems to be a good compromise for me.
    Apple is definitely not at fault in designing events. Really, they're nothing new compared to film rolls, except that they can split photos while importing. If you loved the old albums, then stick with them. They're 100% unchanged and still ultimately flexible. Otherwise, know the constraints of events, and make decisions based on what's important to you.

Maybe you are looking for