Build a tree with recursion

I need to Create a tree and with recursion (not to use SAP FM)
and i have a tree like the following
assume i have a root like
root is level  1 -> customer 
child level 2 -> like contact person & address
child level 3 like visiting hours (contact person ) & Email address (adress )
e.g. of the table that i need to provide as output is
item              parent_key   child_key         
customer                 0001         
contant person         0001         0002
address                   0001         0002
vist                        0002         0003
email                      0002         0003
etc...
let say i get as input always the root and i check for his child and for this node i
look for his child etc how can i provide a table like the above table
Thanks and Regards
James

Hi,
build your tree step-by-step:
-root node is always shown -> initially add it to the node table of your alv-tree
->user expands root node
->event expand_no_children has to be handled
->check which node threw that event
->if root node, select all persons
->add the person nodes to your alv-tree node-list, as parent use the root node
->refresh alv tree
->user expands person-node
->event expand_no_children has to be handled
->check which node threw that event
->if person node, select all visiting hours
->add the visiting hour nodes to your alv-tree node-list, as parent use the person node
->refresh alv tree
Greetings,
dsp

Similar Messages

  • CLOSED- Recursive Tree with Recursive Table and seperate Relationship table

    Hi All,
    I am trying to achieve a adf recursive tree with recursive table but relationships are stored in separate table like
    Table A:
    id name
    1 Val1
    2 Val2
    3 Val3
    4 Val4
    5 Val5
    Table B:
    fromid rel_type toid
    1 Parent-of 2
    2 Parent-of 3
    3 Parent-of 4
    1 Parent-of 5
    I did lots of reading from forum and various posts but couldn't make it work.
    Any suggestion what would be best approach and/or sample code for this ?
    Thanks

    I think that you can get this done by defining a VO that fetches all the top level nodes and have a view link to a VO that has all the details with a self recursive viewlink
    Query for the top level
    Select A.id, A.name
    from A
    Where A.id not in (select disctinct toid from B)
    Query for the detail level
    Select A.id, A.name, B.from, B.to
    from A,b
    where a.id = b.toid;
    ViewLink is going to be:
    detail.from=master.id
    and another viewlink for the recursive relationship
    detail.from=detail.to

  • Create a tree with recursive call for sub-rows

    Hello,
    I would like to create a generated menu dynamically created from values returned by sql.
    Structure is as follow :
    Menu
      |
      +-- MenuItem <--+
             |        |
             +--------+I can't know the maximum depth of the menu.
    How can I create a dynamic tree for ADF to display a tree or a hierarchical view properly without having to define a ViewLink / level ? (i.e. without hardcoding the maximum depth)
    I created a simple Application Module with VO:
    MenuVO
      + MenuItemVO (using VL1 between MenuItem and Menu)
          + SubMenuItemVO (using VL2 between MenuItem and MenuItem, father / child link)Using the Oracle BC Navigator to test this, I can see that a dynamic tree is available, how can I have it in a JSP page ?
    Using the hierarchy viewer component it's possible, but how can I do this with an ADF Tree ?

    You can easily create a recursive tree level rule on the MenuItemVO via a parent/child view link (get rid of SubMenuItemVO). Look at this example http://www.oracle.com/technetwork/developer-tools/adf/learnmore/32-tree-table-from-single-vo-169174.pdf
    The only difference is your recursion is going to be at MenuItemVO level.
    Edited by: 948181 on 2012/07/31 4:07 PM

  • Problem in building swing tree

    I am trying to build a tree with the values obtained from the database.
    I have clearly explained the steps i have followed and the problem i am facing
    Please look at the below code, where i have given step by step explanation
    can any one help me i n solving my problem?
    //global variables
    String ioGlobalDesc = null;
    TransferObject transObj = null;
    ObjVO[] ioObjVO = null; //holds the values to build the intial tree
    ObjVO[] ioObjExpTree;//hold the child value of the every expansion
    pv.jfcx.PVNode root;
    1) I have a root node PVNode which inturn extends DefaultMutableTreeNode
    pv.jfcx.PVNode root;
    2) createIntialTree()
    This is the first method i call to obtain the values from the database .This method inturns
    call the setRootNode method to build my initial tree where i am passing the root and the ioObjVO[] which has the
    values obtained from the database
    /******************createInitial Tree starts here****************************/
    public void createIntialTree(TransferObject poTransferObject)
              Hashtable output = poTransferObject.getResponseData();
              ioObjVO = (ObjVO[]) output.get("ObjVO");
              setRootNodes(root,ioObjVO);
    3) After the setRootNode method is called from the createIntial tree,I am setting the values obtained
    from the database to the root node.Here i am using my own class called MyNode which extends the PVNode,
    This i am creating to set the desc and id for the particular node.
    If you see the setRootNode method, I have created a node called ioCategory where i am setting the id and
    description for the particular node. i have added ioCategory Node to the HashMap where desc is set as key and ioCategory itself is the value.
    Now ioCategory node is added to the root node.
    I am finiding the childcount for the obtained values from the database.while building the intial tree itself,if the child count is greater than zero,i am creating a subNode with empty values, this i am creating to denote that the particular node has the child.
    i am adding the subNode to the ioCategory.
    Now i am able to see the intial tree and also if node has childcount>0 then i am able to see the node handle.
    Now if i click any of the node which has the childcount>0,it has take the particular node id and fetch the relavant child values
    for the id i send,This is done when i expand my tree
    Now i have expanded a node Which has childcount>0 and retrieved the values from the database
    please see the treeExpand method,where the Expansion event is triggered and every expansion i am sending the
    id to the database.
    Here i have a global vairable called [ioGlobalDesc = e.getPath().getLastPathComponent().toString();]
    where i am holding the current event triggered.
    In the expandTree method , this is the method which is being called for every expansion i make ,
    Here i will be gettig the values for the node expansion.Now i am setting this value to the
    subnode where i am tryting identity the same parent to fix all the child to the same.
    for this i have stored my current expansion path and made that as node so that i can fix my childvalues to
    this.temp node should actually denote my ioCategory node for which i need to fix the child values.
    MyNode temp =(MyNode) loHashMap.get(ioGlobalDesc);
    I have another method called createnode to set my child values to the parentnode.Here i am passing the temp as the parameter
    which holds the current parent for which i have to fix the values that i have already obtained in the
    expandTree method.ioObjExpTree[] holds the childvalues for every expansion i make
    My problem is, i am unable to find the same parent for which expansion is made and unable to fix the child nodes.Is there any way to do this?
    How do i create both the parent and the child as a dynamic node?
    ie is the way i proceeded is right or wrong???????????? i am totally confused.
    can any one please help me in solving my problem??????????????
    Tell me where i have misunderstood???????????????.or my approach itself is wrong in creating the dynamic tree??
    if so how should i do it??????????????????????????????
    /****************************setRootNodes start*******************************/
    private void setRootNodes(pv.jfcx.PVNode root,ObjVO[] poObjVO) {
    int loCount=1;
    for (int i = 0; i < poObjVO.length; i++)
    if (poObjVO.getInHierarchyLevel() > 0)
    MyNode ioCategory = new MyNode(poObjVO[i].getIsHierarchyDesc(), poObjVO[i]. getIsObjID());
    loHashMap.put(poObjVO[i].getIsHierarchyDesc(),ioCategory);
    root.add(ioCategory);
    if (ioObjVO[i].inChildrenCount > 0)
    MyNode subNode = new MyNode("","");
    ioCategory.add(subNode);
    loCount++;
    /****************************treeExpanded*************************************/
    public void treeExpanded(TreeExpansionEvent e) {
    AssMO loAssMO = new AssMO();
    for (int i = 0; i < ioObjVO.length; i++)
    if (ioObjVO[i].inChildrenCount > 0 && ioObjVO[i].getIsHierarchyDesc().equals(e.getPath().getLastPathComponent().toString()))
    ioFirstHit++;
    ioGlobalDesc = e.getPath().getLastPathComponent().toString();
    e.getPath().getLastPathComponent().toString();
              loAssMO.setPID(ioObjVO[i].getPID());
         break;
    if(ioGlobalDesc!=null)
    // code goes here for sending the Id to the database which in turn calls my expandTree method which retrieves the
    /************************************expandTree Ends here**********************/
    public void expandTree(TransferObject poTransferObject) {
         Hashtable output = poTransferObject.getResponseData();
    ioObjVOExpTree = null;
         ioObjVOExpTree = (ObjVO[]) output.get("ExpandTree");
    MyNode temp =(MyNode) loHashMap.get(ioGlobalDesc);
    ioUCSLogger.debug("<--END OF EXPAND tree method-->");
    createNodes(temp);
    /************************************expandTree Ends here**********************/
    /****************************createNodes start*************************************/
    private void createNodes(MyNode poParent) {
    for(int x=0; x<ioObjVOExpTree.length; x++)
    MyNode iosubNode = new MyNode(ioObjVOExpTree[x].getIsHierarchyDesc(),ioObjVOExpTree[x].getIsObjID());
    loHashMap.put(ioObjVOExpTree[x].getIsHierarchyDesc(),iosubNode);
    poParent.add(iosubNode);
    iosubNode.setButton(1,false);

    Hi,
    I have used Tree Node type to get the nodes.
    The model that I use has the following structure:
    There is a top node called <b>Ot_Publ_Details</b>. It has 3 child nodes <b>RepObjects, Subagenobjects and Subscrobjects</b>. These child objects internally has two attributes each.
    The tree that i have created has Four Treenode types and 3 TreeItem types.
    I have bound the data source of the tree node to Ot_Publ_Details. The first TreeNode is also bound to Ot_Publ_Details. The second tree node is bound to the RepObejcts, the third node to the Subagenobjects and the fourth node to Subscrobjects. The 3 treeitem types are mapped to the corresponding child attributes.
    when i execute this application, I get a tree with the topnode taking the value from the first treenode while the other 3 nodes doesnt come as node. instead they come as leaf attributes and they display the values present in the attributes.
    Hope the model structure and the UI structure is clear.
    Regards,
    Chander

  • Current node tree with tooltip_text

    Hello,
    How can i display a tooltip_text for the current node from a tree ?
    I tried with
    :Ctrl.Node_Selected     := Ftree.Get_Tree_Node_Property('BL_TREE.MENU',
    :SYSTEM.TRIGGER_NODE,
    Ftree.NODE_VALUE);
    set_item_property('BL_TREE.MENU',
    tooltip_text,
    :Ctrl.Node_Selected);
    I didn't find something with the build_in set_Tree_Node_Property
    There is a possibility to display an icon for each node ? I build the tree with a record group. How can I do it ?
    Thanks
    Bye

    hi,
    you can set the tooltip-text of the whole treebean according to the currently selected "active" node.
    Try to use the code you already used in a WHEN-TREE-NODE-SELECTED-Trigger.
    It's not possible to have a tooltip-text for each node separately.
    Yes, you can assign an icon to each node. Whn you use a recordgroup to fill the tree, one of the columns of the recordgroup has to be the name of the icon
    If i remember correctly the columns are
    NODE_STATE
    NODE_DEPTH
    NODE_LABEL
    NODE_ICON
    NODE_VALUE

  • Building swing tree

    is it possible to build a tree with the tree coordinates
    i have a tree cordinates field and the description of the co-ordinate in my database
    tree-coord description
    1.1.2         AAA
    1.1.3         aaa
    2.1.2         VVV
    2.2.3         TTR
    I have build a tree according the co-ordinates.can any one give me a clue how to build tree with the given tree cordinates?
    is there any API for this?

    you can use swings to display data in a hierarchical manner. javax.swing.tree package would do that for you.

  • How to build a BIG TREE with Tree-Form layout

    Hi,
    I do have a self-referenced table with our org structure - 15 000 positions.
    I do want to create a tree with this structure.
    Requirements :
    a, to have a tree-form layout
    b, to have search capabilities
    I have tried to use several combinations (maybe all)
    - from using only one View object and create recursive tree - doesn't even run
    - to use two View objects, first as top level nodes, the other as the rest - it runs
    but I can search only top level, and what is worse, by clicking on the node for showing additional information (tree-form layout) I'm waiting for ages for seeing the info
    (it seems that all records are loaded one by one into AS)
    Could you provide some ideas how to deal with this ?
    Thanks.

    I am sorry, this is beyond the scope of this forum.
    As with any functionality not directly provided by JHeadstart, you can build it yourself using the ADF design time tools in JDeveloper. Please use the JDeveloper forum for help on this first step.
    Then, to keep your pages generatable you can move these customizations to custom templates. We are happy to help you with this last step, should you have problems there.
    Steven Davelaar,
    JHeadstart Team.

  • How to build a form with a tree component

    Hi, i'd like to know if it's posssible to build a form with
    the Flash 8 Tree component.
    My menu looks like a tree but the childnodes of this tree are
    some form criteria that you can aditionate and post to a serveur.
    I try to use the accordeon menu, and it works but my menu
    must have dynamic heigth, and open all the boxes like the tree
    component...
    I'm in a hole... please healp me...
    Thinks

    Sans,
    I am no Apex expert, but with a situation as "complex" as yours, have you thought about creating a VIEW that joins these 7/8 tables, placing an INSTEAD OF trigger on that view to do all the business logic in the database, and base your application on the view?
    This is the "thick-database" approach that has been gaining momentum of late. The idea is to put your business logic in the database wherever possible, and let the application (Form, Apex, J2EE, whatever) concentrate on UI issues,

  • Building Binary Searh Tree with multiple types (hint hint Generics?)

    I have built binary search trees before and even wanted to build a B+ tree for primary indexes but my Professor suggested limiting to BST.
    My question is can I build a BST with a generic type parameterized code using Comparable and Generics to help me insert numeric and non-numeric (String) type nodes using the requirement that anything less than the root go left, greater than or equal to the root go right. There will be no duplicates.
    This is definitely new territory for me so any help is appreciated.

    Always Learning wrote:
    I have a Comparable<Object> x I would like to compareTo(Some other Comparable<Object>) but I know I am going about this all wrong.
    Essentially I want to be able to compare String lexicographically or integers/floats in order to properly insert them into a binary search tree and I wanted to use the Java language constructs of the Comparable interface and possibly generics to do it.
    This would result in a simple String1.compareTo(String2) or int1.compareTo(int2) etc.So it sounds like you actually have a Comparable<T>; or possibly a Comparable<String>, where all your types are first converted to Strings (however, in the case of ints, that probably means adding leading '0's).
    The generics tutorial suggests that you use Comparable<? super T> in cases of arbitrarily comparable items; however, I think you first need to decide how your comparisons are going to be done. For example, how does a String compare to an Integer in your scenario?
    Winston

  • Synchronize recursive tree with edit form

    Hi,
    I am trying to synchronize recursive tree with form, i have followed this post exactly Oracle ADF Developer: ADF - Synchronizing form with recursive tree
    the first level of the tree works but the inner levels does not.
    I am using JDEV 11.1.2.3

    Try sample 83 here -
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html#CodeCornerSamples

  • Help needed in building a tree without duplicatin​g the nodes

    Iam trying to construct a tree, ID name as the parent node and channel name & channel values as its corresponding child nodes.
    I had constructed the tree, but the problem i have is with interfacing that with in my  main program. In the main program say suppose I have 5 Id's, each Id has some X number of channel's. And each channel has a value.
    Each Id is indexed and passed to the for loop. And since this for loop is inside the while loop each ID will be executed for every 5 iterations.
    Id, channel names will be constant each time it gets executed, but the channel value's will be updated during run time.
    If I directly feed the Id, channel names and values, replacing the constants in the vi, the tree is duplicating the messages, each time a ID is received inside the for loop, it is creating a new parent and child nodes.
    Please help me in fixing this issue, and constructing the tree, where the ID and channel names are not not duplicated.For better understanding Iam attaching a snapshot shot, which tells at what point the ID, channel name array and value is received.
    Attachments:
    channel_info.vi ‏31 KB
    channel.png ‏60 KB

    Caleb Harris, the arbitration ID is not the same each time. Cluster has several different id's, this can be seen in the attached screen shot. Attached sreen shot shows the cluster information,  a sample ID unbundled from the array and the list of channels in that Arbitration ID. I got an idea how to construct the tree but for that,
    1)Need to store all this arbitartion Id's,channel's , and values in 3- different arrays (Channel array and the values array must have the same size).
    2)Channel array must be in synchronus with the Value array say like the first index value of the value_array  should represent the value of the first element of the channel    
       array, similarly the second index value of the value_array  should represent the value of the second element of the channel array and so on.
    3) When ever the channel value gets updated, that particular element of the value array should be updated.
    If I can do this 3- steps I think I can succesfully build a tree. Can you please take a look at the snapshot and help me out in doing this.
    Attachments:
    Cluster Image.PNG ‏67 KB

  • Error while building gobject introspection with Jhbuild.

    I am trying to build gobject introspectio with jhbuild and I am getting the following error.
    *** Checking out gobject-introspection *** [1/1]
    git remote set-url origin https://git.gnome.org/browse/gobject-introspection
    git remote update origin
    Fetching origin
    git rebase origin/master
    Current branch master is up to date.
    *** Configuring gobject-introspection *** [1/1]
    ./autogen.sh --prefix /opt/gnome --disable-static --disable-gtk-doc
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal --force -I m4 ${ACLOCAL_FLAGS}
    autoreconf: configure.ac: tracing
    autoreconf: configure.ac: creating directory build-aux
    autoreconf: running: libtoolize --copy --force
    libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `build-aux'.
    libtoolize: copying file `build-aux/ltmain.sh'
    libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
    libtoolize: copying file `m4/libtool.m4'
    libtoolize: copying file `m4/ltoptions.m4'
    libtoolize: copying file `m4/ltsugar.m4'
    libtoolize: copying file `m4/ltversion.m4'
    libtoolize: copying file `m4/lt~obsolete.m4'
    autoreconf: running: /usr/bin/autoconf --force
    autoreconf: running: /usr/bin/autoheader --force
    autoreconf: running: automake --add-missing --copy --force-missing
    configure.ac:42: installing 'build-aux/compile'
    configure.ac:30: installing 'build-aux/config.guess'
    configure.ac:30: installing 'build-aux/config.sub'
    configure.ac:20: installing 'build-aux/install-sh'
    configure.ac:20: installing 'build-aux/missing'
    Makefile-giscanner.am:131: warning: source file 'giscanner/giscannermodule.c' is in a subdirectory,
    Makefile-giscanner.am:131: but option 'subdir-objects' is disabled
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    automake: warning: possible forward-incompatibility.
    automake: At least a source file is in a subdirectory, but the 'subdir-objects'
    automake: automake option hasn't been enabled. For now, the corresponding output
    automake: object file(s) will be placed in the top-level directory. However,
    automake: this behaviour will change in future Automake versions: they will
    automake: unconditionally cause object files to be placed in the same subdirectory
    automake: of the corresponding sources.
    automake: You are advised to start using 'subdir-objects' option throughout your
    automake: project, to avoid future incompatibilities.
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/bdz.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/bdz_ph.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/bmz8.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/bmz.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/brz.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/buffer_entry.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/buffer_manager.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/chd.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/chd_ph.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/chm.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/cmph.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/cmph_structs.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/compressed_rank.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/compressed_seq.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/fch_buckets.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/fch.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/graph.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/hash.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/jenkins_hash.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/miller_rabin.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/select.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/vqueue.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/vstack.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gdump.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giarginfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gibaseinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gicallableinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giconstantinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gienuminfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gifieldinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gifunctioninfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/ginvoke.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giinterfaceinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giobjectinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gipropertyinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giregisteredtypeinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/girepository.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/girffi.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gisignalinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gistructinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gitypeinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gitypelib.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giunioninfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/givfuncinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:31: warning: source file 'girepository/gthash.c' is in a subdirectory,
    Makefile-girepository.am:31: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/girmodule.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/girnode.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/giroffsets.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/girparser.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/girwriter.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-giscanner.am:16: warning: source file 'giscanner/sourcescanner.c' is in a subdirectory,
    Makefile-giscanner.am:16: but option 'subdir-objects' is disabled
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    Makefile-giscanner.am:16: warning: source file 'giscanner/scannerlexer.l' is in a subdirectory,
    Makefile-giscanner.am:16: but option 'subdir-objects' is disabled
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    Makefile-giscanner.am:16: warning: source file 'giscanner/scannerparser.y' is in a subdirectory,
    Makefile-giscanner.am:16: but option 'subdir-objects' is disabled
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    Makefile-cmph.am:73: warning: source file 'girepository/cmph-bdz-test.c' is in a subdirectory,
    Makefile-cmph.am:73: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-tools.am:27: warning: source file 'tools/compiler.c' is in a subdirectory,
    Makefile-tools.am:27: but option 'subdir-objects' is disabled
    Makefile.am:25: 'Makefile-tools.am' included from here
    Makefile-tools.am:36: warning: source file 'tools/generate.c' is in a subdirectory,
    Makefile-tools.am:36: but option 'subdir-objects' is disabled
    Makefile.am:25: 'Makefile-tools.am' included from here
    Makefile-girepository.am:96: warning: source file 'girepository/gdump.c' is in a subdirectory,
    Makefile-girepository.am:96: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:96: warning: source file 'girepository/gi-dump-types.c' is in a subdirectory,
    Makefile-girepository.am:96: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-examples.am:3: warning: source file 'examples/glib-print.c' is in a subdirectory,
    Makefile-examples.am:3: but option 'subdir-objects' is disabled
    Makefile.am:23: 'Makefile-examples.am' included from here
    Makefile-girepository.am:105: warning: source file 'girepository/gthash.c' is in a subdirectory,
    Makefile-girepository.am:105: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:105: warning: source file 'girepository/gthash-test.c' is in a subdirectory,
    Makefile-girepository.am:105: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile.am: installing 'build-aux/depcomp'
    configure.ac: installing 'build-aux/ylwrap'
    Makefile-giscanner.am:28: installing 'build-aux/py-compile'
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    parallel-tests: installing 'build-aux/test-driver'
    tests/repository/Makefile.am:8: warning: source file '$(srcdir)/gitestrepo.c' is in a subdirectory,
    tests/repository/Makefile.am:8: but option 'subdir-objects' is disabled
    tests/repository/Makefile.am:12: warning: source file '$(srcdir)/gitestthrows.c' is in a subdirectory,
    tests/repository/Makefile.am:12: but option 'subdir-objects' is disabled
    tests/repository/Makefile.am:16: warning: source file '$(srcdir)/gitypelibtest.c' is in a subdirectory,
    tests/repository/Makefile.am:16: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:55: warning: source file '$(srcdir)/gettype.c' is in a subdirectory,
    tests/scanner/Makefile.am:55: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:37: warning: source file '$(srcdir)/gtkfrob.c' is in a subdirectory,
    tests/scanner/Makefile.am:37: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:38: warning: source file '$(srcdir)/regress.c' is in a subdirectory,
    tests/scanner/Makefile.am:38: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:38: warning: source file '$(srcdir)/annotation.c' is in a subdirectory,
    tests/scanner/Makefile.am:38: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:38: warning: source file '$(srcdir)/foo.c' is in a subdirectory,
    tests/scanner/Makefile.am:38: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:38: warning: source file '$(srcdir)/drawable.c' is in a subdirectory,
    tests/scanner/Makefile.am:38: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:31: warning: source file '$(srcdir)/sletter.c' is in a subdirectory,
    tests/scanner/Makefile.am:31: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:56: warning: source file '$(srcdir)/typedefs.c' is in a subdirectory,
    tests/scanner/Makefile.am:56: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:36: warning: source file '$(srcdir)/utility.c' is in a subdirectory,
    tests/scanner/Makefile.am:36: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:52: warning: source file '$(srcdir)/warnlib.c' is in a subdirectory,
    tests/scanner/Makefile.am:52: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:154: warning: source file '$(srcdir)/barapp.c' is in a subdirectory,
    tests/scanner/Makefile.am:154: but option 'subdir-objects' is disabled
    autoreconf: Leaving directory `.'
    checking for a BSD-compatible install... /home/sai/.local/bin/install-check
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking whether UID '1000' is supported by ustar format... yes
    checking whether GID '1000' is supported by ustar format... yes
    checking how to create a ustar tar archive... gnutar
    checking whether to enable maintainer-specific portions of Makefiles... yes
    checking whether make supports nested variables... (cached) yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    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 whether gcc understands -c and -o together... yes
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking how to print strings... printf
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    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 for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for flex... flex
    checking lex output file root... lex.yy
    checking lex library... -lfl
    checking whether yytext is a pointer... yes
    checking for bison... bison -y
    checking for dlopen in -ldl... yes
    checking for the suffix of shared libraries... .so
    checking for GLIB... yes
    checking for GOBJECT... yes
    checking for GMODULE... yes
    checking for GIO... yes
    checking for GIO_UNIX... yes
    checking for CAIRO... yes
    checking for SCANNER... yes
    checking for FFI... yes
    checking size of char... 1
    checking size of short... 2
    checking size of int... 4
    checking size of long... 8
    checking for GIREPO... yes
    checking for gtk-doc... yes
    checking for gtkdoc-check... gtkdoc-check.test
    checking for gtkdoc-check... /opt/gnome/bin/gtkdoc-check
    checking for gtkdoc-rebase... /opt/gnome/bin/gtkdoc-rebase
    checking for gtkdoc-mkpdf... /opt/gnome/bin/gtkdoc-mkpdf
    checking whether to build gtk-doc documentation... no
    checking for GTKDOC_DEPS... yes
    checking for ANSI C header files... (cached) yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking for an ANSI C-conforming const... yes
    checking for working strtod... yes
    checking for memchr... yes
    checking for strchr... yes
    checking for strspn... yes
    checking for strstr... yes
    checking for strtol... yes
    checking for strtoull... yes
    checking for backtrace... yes
    checking for backtrace_symbols... yes
    checking whether python2 version is >= 2.6... yes
    checking for python2 version... 2.7
    checking for python2 platform... linux2
    checking for python2 script directory... ${prefix}/lib/python2.7/site-packages
    checking for python2 extension module directory... ${exec_prefix}/lib/python2.7/site-packages
    checking for headers required to compile python extensions... found
    checking for python module mako... yes
    checking for glib source directory to use for documentation...
    checking for -fvisibility=hidden compiler flag... yes
    checking for -Bsymbolic-functions linker flag... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating tests/Makefile
    config.status: creating tests/offsets/Makefile
    config.status: creating tests/scanner/Makefile
    config.status: creating tests/scanner/annotationparser/Makefile
    config.status: creating tests/repository/Makefile
    config.status: creating tests/warn/Makefile
    config.status: creating docs/Makefile
    config.status: creating docs/reference/Makefile
    config.status: creating docs/reference/version.xml
    config.status: creating gobject-introspection-1.0.pc
    config.status: creating gobject-introspection-no-export-1.0.pc
    config.status: creating config.h.win32
    config.status: creating build/Makefile
    config.status: creating build/win32/Makefile
    config.status: creating build/win32/vs9/Makefile
    config.status: creating build/win32/vs10/Makefile
    config.status: creating build/win32/vs11/Makefile
    config.status: creating build/win32/vs12/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    *** Building gobject-introspection *** [1/1]
    make V=1 -j 5
    /bin/sh ./build-aux/ylwrap `test -f 'giscanner/scannerparser.y' || echo './'`giscanner/scannerparser.y y.tab.c scannerparser.c y.tab.h `echo scannerparser.c | sed -e s/cc$/hh/ -e s/cpp$/hpp/ -e s/cxx$/hxx/ -e s/c++$/h++/ -e s/c$/h/` y.output scannerparser.output -- bison -y -d -t
    /bin/sh ./build-aux/ylwrap `test -f 'giscanner/scannerlexer.l' || echo './'`giscanner/scannerlexer.l lex.yy.c scannerlexer.c -- flex
    [ -d gir ] || /usr/bin/mkdir -p gir ; \
    sed \
    -e s,%CAIRO_SHARED_LIBRARY%,libcairo-gobject.so.2, \
    -e s,%CAIRO_GIR_PACKAGE%,cairo-gobject, \
    < gir/cairo-1.0.gir.in > gir/cairo-1.0.gir.tmp && mv gir/cairo-1.0.gir.tmp gir/cairo-1.0.gir
    /mnt/22624AA7624A8011/Others/GSOC/music/gobject-introspection/giscanner/scannerparser.y: warning: 7 shift/reduce conflicts [-Wconflicts-sr]
    updating scannerparser.h
    make all-recursive
    make[1]: Entering directory '/mnt/22624AA7624A8011/Others/GSOC/music/gobject-introspection'
    Making all in .
    make[2]: Entering directory '/mnt/22624AA7624A8011/Others/GSOC/music/gobject-introspection'
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gdump.lo -MD -MP -MF .deps/libgirepository_1_0_la-gdump.Tpo -c -o libgirepository_1_0_la-gdump.lo `test -f 'girepository/gdump.c' || echo './'`girepository/gdump.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giarginfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giarginfo.Tpo -c -o libgirepository_1_0_la-giarginfo.lo `test -f 'girepository/giarginfo.c' || echo './'`girepository/giarginfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gibaseinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gibaseinfo.Tpo -c -o libgirepository_1_0_la-gibaseinfo.lo `test -f 'girepository/gibaseinfo.c' || echo './'`girepository/gibaseinfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gicallableinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gicallableinfo.Tpo -c -o libgirepository_1_0_la-gicallableinfo.lo `test -f 'girepository/gicallableinfo.c' || echo './'`girepository/gicallableinfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giconstantinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giconstantinfo.Tpo -c -o libgirepository_1_0_la-giconstantinfo.lo `test -f 'girepository/giconstantinfo.c' || echo './'`girepository/giconstantinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giconstantinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giconstantinfo.Tpo -c girepository/giconstantinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giconstantinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giarginfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giarginfo.Tpo -c girepository/giarginfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giarginfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gibaseinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gibaseinfo.Tpo -c girepository/gibaseinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gibaseinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gdump.lo -MD -MP -MF .deps/libgirepository_1_0_la-gdump.Tpo -c girepository/gdump.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gdump.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gicallableinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gicallableinfo.Tpo -c girepository/gicallableinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gicallableinfo.o
    mv -f .deps/libgirepository_1_0_la-giconstantinfo.Tpo .deps/libgirepository_1_0_la-giconstantinfo.Plo
    mv -f .deps/libgirepository_1_0_la-gibaseinfo.Tpo .deps/libgirepository_1_0_la-gibaseinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gienuminfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gienuminfo.Tpo -c -o libgirepository_1_0_la-gienuminfo.lo `test -f 'girepository/gienuminfo.c' || echo './'`girepository/gienuminfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gifieldinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gifieldinfo.Tpo -c -o libgirepository_1_0_la-gifieldinfo.lo `test -f 'girepository/gifieldinfo.c' || echo './'`girepository/gifieldinfo.c
    mv -f .deps/libgirepository_1_0_la-giarginfo.Tpo .deps/libgirepository_1_0_la-giarginfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gifunctioninfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gifunctioninfo.Tpo -c -o libgirepository_1_0_la-gifunctioninfo.lo `test -f 'girepository/gifunctioninfo.c' || echo './'`girepository/gifunctioninfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gifieldinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gifieldinfo.Tpo -c girepository/gifieldinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gifieldinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gienuminfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gienuminfo.Tpo -c girepository/gienuminfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gienuminfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gifunctioninfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gifunctioninfo.Tpo -c girepository/gifunctioninfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gifunctioninfo.o
    mv -f .deps/libgirepository_1_0_la-gicallableinfo.Tpo .deps/libgirepository_1_0_la-gicallableinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-ginvoke.lo -MD -MP -MF .deps/libgirepository_1_0_la-ginvoke.Tpo -c -o libgirepository_1_0_la-ginvoke.lo `test -f 'girepository/ginvoke.c' || echo './'`girepository/ginvoke.c
    mv -f .deps/libgirepository_1_0_la-gdump.Tpo .deps/libgirepository_1_0_la-gdump.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giinterfaceinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giinterfaceinfo.Tpo -c -o libgirepository_1_0_la-giinterfaceinfo.lo `test -f 'girepository/giinterfaceinfo.c' || echo './'`girepository/giinterfaceinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giinterfaceinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giinterfaceinfo.Tpo -c girepository/giinterfaceinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giinterfaceinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-ginvoke.lo -MD -MP -MF .deps/libgirepository_1_0_la-ginvoke.Tpo -c girepository/ginvoke.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-ginvoke.o
    mv -f .deps/libgirepository_1_0_la-gifieldinfo.Tpo .deps/libgirepository_1_0_la-gifieldinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giobjectinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giobjectinfo.Tpo -c -o libgirepository_1_0_la-giobjectinfo.lo `test -f 'girepository/giobjectinfo.c' || echo './'`girepository/giobjectinfo.c
    mv -f .deps/libgirepository_1_0_la-gifunctioninfo.Tpo .deps/libgirepository_1_0_la-gifunctioninfo.Plo
    mv -f .deps/libgirepository_1_0_la-gienuminfo.Tpo .deps/libgirepository_1_0_la-gienuminfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gipropertyinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gipropertyinfo.Tpo -c -o libgirepository_1_0_la-gipropertyinfo.lo `test -f 'girepository/gipropertyinfo.c' || echo './'`girepository/gipropertyinfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giregisteredtypeinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giregisteredtypeinfo.Tpo -c -o libgirepository_1_0_la-giregisteredtypeinfo.lo `test -f 'girepository/giregisteredtypeinfo.c' || echo './'`girepository/giregisteredtypeinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giobjectinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giobjectinfo.Tpo -c girepository/giobjectinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giobjectinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gipropertyinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gipropertyinfo.Tpo -c girepository/gipropertyinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gipropertyinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giregisteredtypeinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giregisteredtypeinfo.Tpo -c girepository/giregisteredtypeinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giregisteredtypeinfo.o
    mv -f .deps/libgirepository_1_0_la-gipropertyinfo.Tpo .deps/libgirepository_1_0_la-gipropertyinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-girepository.lo -MD -MP -MF .deps/libgirepository_1_0_la-girepository.Tpo -c -o libgirepository_1_0_la-girepository.lo `test -f 'girepository/girepository.c' || echo './'`girepository/girepository.c
    mv -f .deps/libgirepository_1_0_la-ginvoke.Tpo .deps/libgirepository_1_0_la-ginvoke.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-girffi.lo -MD -MP -MF .deps/libgirepository_1_0_la-girffi.Tpo -c -o libgirepository_1_0_la-girffi.lo `test -f 'girepository/girffi.c' || echo './'`girepository/girffi.c
    mv -f .deps/libgirepository_1_0_la-giregisteredtypeinfo.Tpo .deps/libgirepository_1_0_la-giregisteredtypeinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gisignalinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gisignalinfo.Tpo -c -o libgirepository_1_0_la-gisignalinfo.lo `test -f 'girepository/gisignalinfo.c' || echo './'`girepository/gisignalinfo.c
    mv -f .deps/libgirepository_1_0_la-giinterfaceinfo.Tpo .deps/libgirepository_1_0_la-giinterfaceinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gistructinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gistructinfo.Tpo -c -o libgirepository_1_0_la-gistructinfo.lo `test -f 'girepository/gistructinfo.c' || echo './'`girepository/gistructinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-girepository.lo -MD -MP -MF .deps/libgirepository_1_0_la-girepository.Tpo -c girepository/girepository.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-girepository.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-girffi.lo -MD -MP -MF .deps/libgirepository_1_0_la-girffi.Tpo -c girepository/girffi.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-girffi.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gisignalinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gisignalinfo.Tpo -c girepository/gisignalinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gisignalinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gistructinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gistructinfo.Tpo -c girepository/gistructinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gistructinfo.o
    mv -f .deps/libgirepository_1_0_la-giobjectinfo.Tpo .deps/libgirepository_1_0_la-giobjectinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gitypeinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gitypeinfo.Tpo -c -o libgirepository_1_0_la-gitypeinfo.lo `test -f 'girepository/gitypeinfo.c' || echo './'`girepository/gitypeinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gitypeinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gitypeinfo.Tpo -c girepository/gitypeinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gitypeinfo.o
    mv -f .deps/libgirepository_1_0_la-gisignalinfo.Tpo .deps/libgirepository_1_0_la-gisignalinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gitypelib.lo -MD -MP -MF .deps/libgirepository_1_0_la-gitypelib.Tpo -c -o libgirepository_1_0_la-gitypelib.lo `test -f 'girepository/gitypelib.c' || echo './'`girepository/gitypelib.c
    mv -f .deps/libgirepository_1_0_la-gistructinfo.Tpo .deps/libgirepository_1_0_la-gistructinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giunioninfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giunioninfo.Tpo -c -o libgirepository_1_0_la-giunioninfo.lo `test -f 'girepository/giunioninfo.c' || echo './'`girepository/giunioninfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gitypelib.lo -MD -MP -MF .deps/libgirepository_1_0_la-gitypelib.Tpo -c girepository/gitypelib.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gitypelib.o
    mv -f .deps/libgirepository_1_0_la-girffi.Tpo .deps/libgirepository_1_0_la-girffi.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-givfuncinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-givfuncinfo.Tpo -c -o libgirepository_1_0_la-givfuncinfo.lo `test -f 'girepository/givfuncinfo.c' || echo './'`girepository/givfuncinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giunioninfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giunioninfo.Tpo -c girepository/giunioninfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giunioninfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-givfuncinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-givfuncinfo.Tpo -c girepository/givfuncinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-givfuncinfo.o
    mv -f .deps/libgirepository_1_0_la-gitypeinfo.Tpo .deps/libgirepository_1_0_la-gitypeinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -I./girepository -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_gthash_la-gthash.lo -MD -MP -MF .deps/libgirepository_gthash_la-gthash.Tpo -c -o libgirepository_gthash_la-gthash.lo `test -f 'girepository/gthash.c' || echo './'`girepository/gthash.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -I./girepository -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_gthash_la-gthash.lo -MD -MP -MF .deps/libgirepository_gthash_la-gthash.Tpo -c girepository/gthash.c -fPIC -DPIC -o .libs/libgirepository_gthash_la-gthash.o
    mv -f .deps/libgirepository_1_0_la-girepository.Tpo .deps/libgirepository_1_0_la-girepository.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bdz.lo -MD -MP -MF .deps/libcmph_la-bdz.Tpo -c -o libcmph_la-bdz.lo `test -f 'girepository/cmph/bdz.c' || echo './'`girepository/cmph/bdz.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bdz.lo -MD -MP -MF .deps/libcmph_la-bdz.Tpo -c girepository/cmph/bdz.c -fPIC -DPIC -o .libs/libcmph_la-bdz.o
    mv -f .deps/libgirepository_1_0_la-giunioninfo.Tpo .deps/libgirepository_1_0_la-giunioninfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bdz_ph.lo -MD -MP -MF .deps/libcmph_la-bdz_ph.Tpo -c -o libcmph_la-bdz_ph.lo `test -f 'girepository/cmph/bdz_ph.c' || echo './'`girepository/cmph/bdz_ph.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bdz_ph.lo -MD -MP -MF .deps/libcmph_la-bdz_ph.Tpo -c girepository/cmph/bdz_ph.c -fPIC -DPIC -o .libs/libcmph_la-bdz_ph.o
    mv -f .deps/libgirepository_1_0_la-givfuncinfo.Tpo .deps/libgirepository_1_0_la-givfuncinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bmz8.lo -MD -MP -MF .deps/libcmph_la-bmz8.Tpo -c -o libcmph_la-bmz8.lo `test -f 'girepository/cmph/bmz8.c' || echo './'`girepository/cmph/bmz8.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bmz8.lo -MD -MP -MF .deps/libcmph_la-bmz8.Tpo -c girepository/cmph/bmz8.c -fPIC -DPIC -o .libs/libcmph_la-bmz8.o
    mv -f .deps/libgirepository_gthash_la-gthash.Tpo .deps/libgirepository_gthash_la-gthash.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bmz.lo -MD -MP -MF .deps/libcmph_la-bmz.Tpo -c -o libcmph_la-bmz.lo `test -f 'girepository/cmph/bmz.c' || echo './'`girepository/cmph/bmz.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bmz.lo -MD -MP -MF .deps/libcmph_la-bmz.Tpo -c girepository/cmph/bmz.c -fPIC -DPIC -o .libs/libcmph_la-bmz.o
    mv -f .deps/libgirepository_1_0_la-gitypelib.Tpo .deps/libgirepository_1_0_la-gitypelib.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-brz.lo -MD -MP -MF .deps/libcmph_la-brz.Tpo -c -o libcmph_la-brz.lo `test -f 'girepository/cmph/brz.c' || echo './'`girepository/cmph/brz.c
    mv -f .deps/libcmph_la-bdz.Tpo .deps/libcmph_la-bdz.Plo
    mv -f .deps/libcmph_la-bdz_ph.Tpo .deps/libcmph_la-bdz_ph.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-buffer_entry.lo -MD -MP -MF .deps/libcmph_la-buffer_entry.Tpo -c -o libcmph_la-buffer_entry.lo `test -f 'girepository/cmph/buffer_entry.c' || echo './'`girepository/cmph/buffer_entry.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-buffer_manager.lo -MD -MP -MF .deps/libcmph_la-buffer_manager.Tpo -c -o libcmph_la-buffer_manager.lo `test -f 'girepository/cmph/buffer_manager.c' || echo './'`girepository/cmph/buffer_manager.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-brz.lo -MD -MP -MF .deps/libcmph_la-brz.Tpo -c girepository/cmph/brz.c -fPIC -DPIC -o .libs/libcmph_la-brz.o
    mv -f .deps/libcmph_la-bmz.Tpo .deps/libcmph_la-bmz.Plo
    mv -f .deps/libcmph_la-bmz8.Tpo .deps/libcmph_la-bmz8.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chd.lo -MD -MP -MF .deps/libcmph_la-chd.Tpo -c -o libcmph_la-chd.lo `test -f 'girepository/cmph/chd.c' || echo './'`girepository/cmph/chd.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chd_ph.lo -MD -MP -MF .deps/libcmph_la-chd_ph.Tpo -c -o libcmph_la-chd_ph.lo `test -f 'girepository/cmph/chd_ph.c' || echo './'`girepository/cmph/chd_ph.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-buffer_entry.lo -MD -MP -MF .deps/libcmph_la-buffer_entry.Tpo -c girepository/cmph/buffer_entry.c -fPIC -DPIC -o .libs/libcmph_la-buffer_entry.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-buffer_manager.lo -MD -MP -MF .deps/libcmph_la-buffer_manager.Tpo -c girepository/cmph/buffer_manager.c -fPIC -DPIC -o .libs/libcmph_la-buffer_manager.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chd.lo -MD -MP -MF .deps/libcmph_la-chd.Tpo -c girepository/cmph/chd.c -fPIC -DPIC -o .libs/libcmph_la-chd.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chd_ph.lo -MD -MP -MF .deps/libcmph_la-chd_ph.Tpo -c girepository/cmph/chd_ph.c -fPIC -DPIC -o .libs/libcmph_la-chd_ph.o
    mv -f .deps/libcmph_la-buffer_entry.Tpo .deps/libcmph_la-buffer_entry.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chm.lo -MD -MP -MF .deps/libcmph_la-chm.Tpo -c -o libcmph_la-chm.lo `test -f 'girepository/cmph/chm.c' || echo './'`girepository/cmph/chm.c
    mv -f .deps/libcmph_la-chd.Tpo .deps/libcmph_la-chd.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-cmph.lo -MD -MP -MF .deps/libcmph_la-cmph.Tpo -c -o libcmph_la-cmph.lo `test -f 'girepository/cmph/cmph.c' || echo './'`girepository/cmph/cmph.c
    mv -f .deps/libcmph_la-buffer_manager.Tpo .deps/libcmph_la-buffer_manager.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-cmph_structs.lo -MD -MP -MF .deps/libcmph_la-cmph_structs.Tpo -c -o libcmph_la-cmph_structs.lo `test -f 'girepository/cmph/cmph_structs.c' || echo './'`girepository/cmph/cmph_structs.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chm.lo -MD -MP -MF .deps/libcmph_la-chm.Tpo -c girepository/cmph/chm.c -fPIC -DPIC -o .libs/libcmph_la-chm.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-cmph.lo -MD -MP -MF .deps/libcmph_la-cmph.Tpo -c girepository/cmph/cmph.c -fPIC -DPIC -o .libs/libcmph_la-cmph.o
    libtool: compile: gcc -DHAVE_CO

    I am trying to build gobject introspectio with jhbuild and I am getting the following error.
    *** Checking out gobject-introspection *** [1/1]
    git remote set-url origin https://git.gnome.org/browse/gobject-introspection
    git remote update origin
    Fetching origin
    git rebase origin/master
    Current branch master is up to date.
    *** Configuring gobject-introspection *** [1/1]
    ./autogen.sh --prefix /opt/gnome --disable-static --disable-gtk-doc
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal --force -I m4 ${ACLOCAL_FLAGS}
    autoreconf: configure.ac: tracing
    autoreconf: configure.ac: creating directory build-aux
    autoreconf: running: libtoolize --copy --force
    libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, `build-aux'.
    libtoolize: copying file `build-aux/ltmain.sh'
    libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
    libtoolize: copying file `m4/libtool.m4'
    libtoolize: copying file `m4/ltoptions.m4'
    libtoolize: copying file `m4/ltsugar.m4'
    libtoolize: copying file `m4/ltversion.m4'
    libtoolize: copying file `m4/lt~obsolete.m4'
    autoreconf: running: /usr/bin/autoconf --force
    autoreconf: running: /usr/bin/autoheader --force
    autoreconf: running: automake --add-missing --copy --force-missing
    configure.ac:42: installing 'build-aux/compile'
    configure.ac:30: installing 'build-aux/config.guess'
    configure.ac:30: installing 'build-aux/config.sub'
    configure.ac:20: installing 'build-aux/install-sh'
    configure.ac:20: installing 'build-aux/missing'
    Makefile-giscanner.am:131: warning: source file 'giscanner/giscannermodule.c' is in a subdirectory,
    Makefile-giscanner.am:131: but option 'subdir-objects' is disabled
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    automake: warning: possible forward-incompatibility.
    automake: At least a source file is in a subdirectory, but the 'subdir-objects'
    automake: automake option hasn't been enabled. For now, the corresponding output
    automake: object file(s) will be placed in the top-level directory. However,
    automake: this behaviour will change in future Automake versions: they will
    automake: unconditionally cause object files to be placed in the same subdirectory
    automake: of the corresponding sources.
    automake: You are advised to start using 'subdir-objects' option throughout your
    automake: project, to avoid future incompatibilities.
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/bdz.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/bdz_ph.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/bmz8.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/bmz.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/brz.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/buffer_entry.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/buffer_manager.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/chd.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/chd_ph.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/chm.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/cmph.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/cmph_structs.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/compressed_rank.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/compressed_seq.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/fch_buckets.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/fch.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/graph.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/hash.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/jenkins_hash.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/miller_rabin.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/select.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/vqueue.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-cmph.am:6: warning: source file 'girepository/cmph/vstack.c' is in a subdirectory,
    Makefile-cmph.am:6: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gdump.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giarginfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gibaseinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gicallableinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giconstantinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gienuminfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gifieldinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gifunctioninfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/ginvoke.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giinterfaceinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giobjectinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gipropertyinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giregisteredtypeinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/girepository.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/girffi.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gisignalinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gistructinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gitypeinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/gitypelib.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/giunioninfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:54: warning: source file 'girepository/givfuncinfo.c' is in a subdirectory,
    Makefile-girepository.am:54: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:31: warning: source file 'girepository/gthash.c' is in a subdirectory,
    Makefile-girepository.am:31: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/girmodule.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/girnode.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/giroffsets.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/girparser.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:36: warning: source file 'girepository/girwriter.c' is in a subdirectory,
    Makefile-girepository.am:36: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-giscanner.am:16: warning: source file 'giscanner/sourcescanner.c' is in a subdirectory,
    Makefile-giscanner.am:16: but option 'subdir-objects' is disabled
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    Makefile-giscanner.am:16: warning: source file 'giscanner/scannerlexer.l' is in a subdirectory,
    Makefile-giscanner.am:16: but option 'subdir-objects' is disabled
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    Makefile-giscanner.am:16: warning: source file 'giscanner/scannerparser.y' is in a subdirectory,
    Makefile-giscanner.am:16: but option 'subdir-objects' is disabled
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    Makefile-cmph.am:73: warning: source file 'girepository/cmph-bdz-test.c' is in a subdirectory,
    Makefile-cmph.am:73: but option 'subdir-objects' is disabled
    Makefile.am:20: 'Makefile-cmph.am' included from here
    Makefile-tools.am:27: warning: source file 'tools/compiler.c' is in a subdirectory,
    Makefile-tools.am:27: but option 'subdir-objects' is disabled
    Makefile.am:25: 'Makefile-tools.am' included from here
    Makefile-tools.am:36: warning: source file 'tools/generate.c' is in a subdirectory,
    Makefile-tools.am:36: but option 'subdir-objects' is disabled
    Makefile.am:25: 'Makefile-tools.am' included from here
    Makefile-girepository.am:96: warning: source file 'girepository/gdump.c' is in a subdirectory,
    Makefile-girepository.am:96: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:96: warning: source file 'girepository/gi-dump-types.c' is in a subdirectory,
    Makefile-girepository.am:96: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-examples.am:3: warning: source file 'examples/glib-print.c' is in a subdirectory,
    Makefile-examples.am:3: but option 'subdir-objects' is disabled
    Makefile.am:23: 'Makefile-examples.am' included from here
    Makefile-girepository.am:105: warning: source file 'girepository/gthash.c' is in a subdirectory,
    Makefile-girepository.am:105: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile-girepository.am:105: warning: source file 'girepository/gthash-test.c' is in a subdirectory,
    Makefile-girepository.am:105: but option 'subdir-objects' is disabled
    Makefile.am:21: 'Makefile-girepository.am' included from here
    Makefile.am: installing 'build-aux/depcomp'
    configure.ac: installing 'build-aux/ylwrap'
    Makefile-giscanner.am:28: installing 'build-aux/py-compile'
    Makefile.am:22: 'Makefile-giscanner.am' included from here
    parallel-tests: installing 'build-aux/test-driver'
    tests/repository/Makefile.am:8: warning: source file '$(srcdir)/gitestrepo.c' is in a subdirectory,
    tests/repository/Makefile.am:8: but option 'subdir-objects' is disabled
    tests/repository/Makefile.am:12: warning: source file '$(srcdir)/gitestthrows.c' is in a subdirectory,
    tests/repository/Makefile.am:12: but option 'subdir-objects' is disabled
    tests/repository/Makefile.am:16: warning: source file '$(srcdir)/gitypelibtest.c' is in a subdirectory,
    tests/repository/Makefile.am:16: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:55: warning: source file '$(srcdir)/gettype.c' is in a subdirectory,
    tests/scanner/Makefile.am:55: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:37: warning: source file '$(srcdir)/gtkfrob.c' is in a subdirectory,
    tests/scanner/Makefile.am:37: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:38: warning: source file '$(srcdir)/regress.c' is in a subdirectory,
    tests/scanner/Makefile.am:38: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:38: warning: source file '$(srcdir)/annotation.c' is in a subdirectory,
    tests/scanner/Makefile.am:38: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:38: warning: source file '$(srcdir)/foo.c' is in a subdirectory,
    tests/scanner/Makefile.am:38: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:38: warning: source file '$(srcdir)/drawable.c' is in a subdirectory,
    tests/scanner/Makefile.am:38: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:31: warning: source file '$(srcdir)/sletter.c' is in a subdirectory,
    tests/scanner/Makefile.am:31: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:56: warning: source file '$(srcdir)/typedefs.c' is in a subdirectory,
    tests/scanner/Makefile.am:56: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:36: warning: source file '$(srcdir)/utility.c' is in a subdirectory,
    tests/scanner/Makefile.am:36: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:52: warning: source file '$(srcdir)/warnlib.c' is in a subdirectory,
    tests/scanner/Makefile.am:52: but option 'subdir-objects' is disabled
    tests/scanner/Makefile.am:154: warning: source file '$(srcdir)/barapp.c' is in a subdirectory,
    tests/scanner/Makefile.am:154: but option 'subdir-objects' is disabled
    autoreconf: Leaving directory `.'
    checking for a BSD-compatible install... /home/sai/.local/bin/install-check
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking whether UID '1000' is supported by ustar format... yes
    checking whether GID '1000' is supported by ustar format... yes
    checking how to create a ustar tar archive... gnutar
    checking whether to enable maintainer-specific portions of Makefiles... yes
    checking whether make supports nested variables... (cached) yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    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 whether gcc understands -c and -o together... yes
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking how to print strings... printf
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    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 for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for flex... flex
    checking lex output file root... lex.yy
    checking lex library... -lfl
    checking whether yytext is a pointer... yes
    checking for bison... bison -y
    checking for dlopen in -ldl... yes
    checking for the suffix of shared libraries... .so
    checking for GLIB... yes
    checking for GOBJECT... yes
    checking for GMODULE... yes
    checking for GIO... yes
    checking for GIO_UNIX... yes
    checking for CAIRO... yes
    checking for SCANNER... yes
    checking for FFI... yes
    checking size of char... 1
    checking size of short... 2
    checking size of int... 4
    checking size of long... 8
    checking for GIREPO... yes
    checking for gtk-doc... yes
    checking for gtkdoc-check... gtkdoc-check.test
    checking for gtkdoc-check... /opt/gnome/bin/gtkdoc-check
    checking for gtkdoc-rebase... /opt/gnome/bin/gtkdoc-rebase
    checking for gtkdoc-mkpdf... /opt/gnome/bin/gtkdoc-mkpdf
    checking whether to build gtk-doc documentation... no
    checking for GTKDOC_DEPS... yes
    checking for ANSI C header files... (cached) yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking for an ANSI C-conforming const... yes
    checking for working strtod... yes
    checking for memchr... yes
    checking for strchr... yes
    checking for strspn... yes
    checking for strstr... yes
    checking for strtol... yes
    checking for strtoull... yes
    checking for backtrace... yes
    checking for backtrace_symbols... yes
    checking whether python2 version is >= 2.6... yes
    checking for python2 version... 2.7
    checking for python2 platform... linux2
    checking for python2 script directory... ${prefix}/lib/python2.7/site-packages
    checking for python2 extension module directory... ${exec_prefix}/lib/python2.7/site-packages
    checking for headers required to compile python extensions... found
    checking for python module mako... yes
    checking for glib source directory to use for documentation...
    checking for -fvisibility=hidden compiler flag... yes
    checking for -Bsymbolic-functions linker flag... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating tests/Makefile
    config.status: creating tests/offsets/Makefile
    config.status: creating tests/scanner/Makefile
    config.status: creating tests/scanner/annotationparser/Makefile
    config.status: creating tests/repository/Makefile
    config.status: creating tests/warn/Makefile
    config.status: creating docs/Makefile
    config.status: creating docs/reference/Makefile
    config.status: creating docs/reference/version.xml
    config.status: creating gobject-introspection-1.0.pc
    config.status: creating gobject-introspection-no-export-1.0.pc
    config.status: creating config.h.win32
    config.status: creating build/Makefile
    config.status: creating build/win32/Makefile
    config.status: creating build/win32/vs9/Makefile
    config.status: creating build/win32/vs10/Makefile
    config.status: creating build/win32/vs11/Makefile
    config.status: creating build/win32/vs12/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    *** Building gobject-introspection *** [1/1]
    make V=1 -j 5
    /bin/sh ./build-aux/ylwrap `test -f 'giscanner/scannerparser.y' || echo './'`giscanner/scannerparser.y y.tab.c scannerparser.c y.tab.h `echo scannerparser.c | sed -e s/cc$/hh/ -e s/cpp$/hpp/ -e s/cxx$/hxx/ -e s/c++$/h++/ -e s/c$/h/` y.output scannerparser.output -- bison -y -d -t
    /bin/sh ./build-aux/ylwrap `test -f 'giscanner/scannerlexer.l' || echo './'`giscanner/scannerlexer.l lex.yy.c scannerlexer.c -- flex
    [ -d gir ] || /usr/bin/mkdir -p gir ; \
    sed \
    -e s,%CAIRO_SHARED_LIBRARY%,libcairo-gobject.so.2, \
    -e s,%CAIRO_GIR_PACKAGE%,cairo-gobject, \
    < gir/cairo-1.0.gir.in > gir/cairo-1.0.gir.tmp && mv gir/cairo-1.0.gir.tmp gir/cairo-1.0.gir
    /mnt/22624AA7624A8011/Others/GSOC/music/gobject-introspection/giscanner/scannerparser.y: warning: 7 shift/reduce conflicts [-Wconflicts-sr]
    updating scannerparser.h
    make all-recursive
    make[1]: Entering directory '/mnt/22624AA7624A8011/Others/GSOC/music/gobject-introspection'
    Making all in .
    make[2]: Entering directory '/mnt/22624AA7624A8011/Others/GSOC/music/gobject-introspection'
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gdump.lo -MD -MP -MF .deps/libgirepository_1_0_la-gdump.Tpo -c -o libgirepository_1_0_la-gdump.lo `test -f 'girepository/gdump.c' || echo './'`girepository/gdump.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giarginfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giarginfo.Tpo -c -o libgirepository_1_0_la-giarginfo.lo `test -f 'girepository/giarginfo.c' || echo './'`girepository/giarginfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gibaseinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gibaseinfo.Tpo -c -o libgirepository_1_0_la-gibaseinfo.lo `test -f 'girepository/gibaseinfo.c' || echo './'`girepository/gibaseinfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gicallableinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gicallableinfo.Tpo -c -o libgirepository_1_0_la-gicallableinfo.lo `test -f 'girepository/gicallableinfo.c' || echo './'`girepository/gicallableinfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giconstantinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giconstantinfo.Tpo -c -o libgirepository_1_0_la-giconstantinfo.lo `test -f 'girepository/giconstantinfo.c' || echo './'`girepository/giconstantinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giconstantinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giconstantinfo.Tpo -c girepository/giconstantinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giconstantinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giarginfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giarginfo.Tpo -c girepository/giarginfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giarginfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gibaseinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gibaseinfo.Tpo -c girepository/gibaseinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gibaseinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gdump.lo -MD -MP -MF .deps/libgirepository_1_0_la-gdump.Tpo -c girepository/gdump.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gdump.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gicallableinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gicallableinfo.Tpo -c girepository/gicallableinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gicallableinfo.o
    mv -f .deps/libgirepository_1_0_la-giconstantinfo.Tpo .deps/libgirepository_1_0_la-giconstantinfo.Plo
    mv -f .deps/libgirepository_1_0_la-gibaseinfo.Tpo .deps/libgirepository_1_0_la-gibaseinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gienuminfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gienuminfo.Tpo -c -o libgirepository_1_0_la-gienuminfo.lo `test -f 'girepository/gienuminfo.c' || echo './'`girepository/gienuminfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gifieldinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gifieldinfo.Tpo -c -o libgirepository_1_0_la-gifieldinfo.lo `test -f 'girepository/gifieldinfo.c' || echo './'`girepository/gifieldinfo.c
    mv -f .deps/libgirepository_1_0_la-giarginfo.Tpo .deps/libgirepository_1_0_la-giarginfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gifunctioninfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gifunctioninfo.Tpo -c -o libgirepository_1_0_la-gifunctioninfo.lo `test -f 'girepository/gifunctioninfo.c' || echo './'`girepository/gifunctioninfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gifieldinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gifieldinfo.Tpo -c girepository/gifieldinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gifieldinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gienuminfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gienuminfo.Tpo -c girepository/gienuminfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gienuminfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gifunctioninfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gifunctioninfo.Tpo -c girepository/gifunctioninfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gifunctioninfo.o
    mv -f .deps/libgirepository_1_0_la-gicallableinfo.Tpo .deps/libgirepository_1_0_la-gicallableinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-ginvoke.lo -MD -MP -MF .deps/libgirepository_1_0_la-ginvoke.Tpo -c -o libgirepository_1_0_la-ginvoke.lo `test -f 'girepository/ginvoke.c' || echo './'`girepository/ginvoke.c
    mv -f .deps/libgirepository_1_0_la-gdump.Tpo .deps/libgirepository_1_0_la-gdump.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giinterfaceinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giinterfaceinfo.Tpo -c -o libgirepository_1_0_la-giinterfaceinfo.lo `test -f 'girepository/giinterfaceinfo.c' || echo './'`girepository/giinterfaceinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giinterfaceinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giinterfaceinfo.Tpo -c girepository/giinterfaceinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giinterfaceinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-ginvoke.lo -MD -MP -MF .deps/libgirepository_1_0_la-ginvoke.Tpo -c girepository/ginvoke.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-ginvoke.o
    mv -f .deps/libgirepository_1_0_la-gifieldinfo.Tpo .deps/libgirepository_1_0_la-gifieldinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giobjectinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giobjectinfo.Tpo -c -o libgirepository_1_0_la-giobjectinfo.lo `test -f 'girepository/giobjectinfo.c' || echo './'`girepository/giobjectinfo.c
    mv -f .deps/libgirepository_1_0_la-gifunctioninfo.Tpo .deps/libgirepository_1_0_la-gifunctioninfo.Plo
    mv -f .deps/libgirepository_1_0_la-gienuminfo.Tpo .deps/libgirepository_1_0_la-gienuminfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gipropertyinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gipropertyinfo.Tpo -c -o libgirepository_1_0_la-gipropertyinfo.lo `test -f 'girepository/gipropertyinfo.c' || echo './'`girepository/gipropertyinfo.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giregisteredtypeinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giregisteredtypeinfo.Tpo -c -o libgirepository_1_0_la-giregisteredtypeinfo.lo `test -f 'girepository/giregisteredtypeinfo.c' || echo './'`girepository/giregisteredtypeinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giobjectinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giobjectinfo.Tpo -c girepository/giobjectinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giobjectinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gipropertyinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gipropertyinfo.Tpo -c girepository/gipropertyinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gipropertyinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giregisteredtypeinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giregisteredtypeinfo.Tpo -c girepository/giregisteredtypeinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giregisteredtypeinfo.o
    mv -f .deps/libgirepository_1_0_la-gipropertyinfo.Tpo .deps/libgirepository_1_0_la-gipropertyinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-girepository.lo -MD -MP -MF .deps/libgirepository_1_0_la-girepository.Tpo -c -o libgirepository_1_0_la-girepository.lo `test -f 'girepository/girepository.c' || echo './'`girepository/girepository.c
    mv -f .deps/libgirepository_1_0_la-ginvoke.Tpo .deps/libgirepository_1_0_la-ginvoke.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-girffi.lo -MD -MP -MF .deps/libgirepository_1_0_la-girffi.Tpo -c -o libgirepository_1_0_la-girffi.lo `test -f 'girepository/girffi.c' || echo './'`girepository/girffi.c
    mv -f .deps/libgirepository_1_0_la-giregisteredtypeinfo.Tpo .deps/libgirepository_1_0_la-giregisteredtypeinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gisignalinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gisignalinfo.Tpo -c -o libgirepository_1_0_la-gisignalinfo.lo `test -f 'girepository/gisignalinfo.c' || echo './'`girepository/gisignalinfo.c
    mv -f .deps/libgirepository_1_0_la-giinterfaceinfo.Tpo .deps/libgirepository_1_0_la-giinterfaceinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gistructinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gistructinfo.Tpo -c -o libgirepository_1_0_la-gistructinfo.lo `test -f 'girepository/gistructinfo.c' || echo './'`girepository/gistructinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-girepository.lo -MD -MP -MF .deps/libgirepository_1_0_la-girepository.Tpo -c girepository/girepository.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-girepository.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-girffi.lo -MD -MP -MF .deps/libgirepository_1_0_la-girffi.Tpo -c girepository/girffi.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-girffi.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gisignalinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gisignalinfo.Tpo -c girepository/gisignalinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gisignalinfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gistructinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gistructinfo.Tpo -c girepository/gistructinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gistructinfo.o
    mv -f .deps/libgirepository_1_0_la-giobjectinfo.Tpo .deps/libgirepository_1_0_la-giobjectinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gitypeinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gitypeinfo.Tpo -c -o libgirepository_1_0_la-gitypeinfo.lo `test -f 'girepository/gitypeinfo.c' || echo './'`girepository/gitypeinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gitypeinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-gitypeinfo.Tpo -c girepository/gitypeinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gitypeinfo.o
    mv -f .deps/libgirepository_1_0_la-gisignalinfo.Tpo .deps/libgirepository_1_0_la-gisignalinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gitypelib.lo -MD -MP -MF .deps/libgirepository_1_0_la-gitypelib.Tpo -c -o libgirepository_1_0_la-gitypelib.lo `test -f 'girepository/gitypelib.c' || echo './'`girepository/gitypelib.c
    mv -f .deps/libgirepository_1_0_la-gistructinfo.Tpo .deps/libgirepository_1_0_la-gistructinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giunioninfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giunioninfo.Tpo -c -o libgirepository_1_0_la-giunioninfo.lo `test -f 'girepository/giunioninfo.c' || echo './'`girepository/giunioninfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-gitypelib.lo -MD -MP -MF .deps/libgirepository_1_0_la-gitypelib.Tpo -c girepository/gitypelib.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-gitypelib.o
    mv -f .deps/libgirepository_1_0_la-girffi.Tpo .deps/libgirepository_1_0_la-girffi.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-givfuncinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-givfuncinfo.Tpo -c -o libgirepository_1_0_la-givfuncinfo.lo `test -f 'girepository/givfuncinfo.c' || echo './'`girepository/givfuncinfo.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-giunioninfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-giunioninfo.Tpo -c girepository/giunioninfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-giunioninfo.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -fvisibility=hidden -I./girepository -DG_IREPOSITORY_COMPILATION -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_1_0_la-givfuncinfo.lo -MD -MP -MF .deps/libgirepository_1_0_la-givfuncinfo.Tpo -c girepository/givfuncinfo.c -fPIC -DPIC -o .libs/libgirepository_1_0_la-givfuncinfo.o
    mv -f .deps/libgirepository_1_0_la-gitypeinfo.Tpo .deps/libgirepository_1_0_la-gitypeinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -I./girepository -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_gthash_la-gthash.lo -MD -MP -MF .deps/libgirepository_gthash_la-gthash.Tpo -c -o libgirepository_gthash_la-gthash.lo `test -f 'girepository/gthash.c' || echo './'`girepository/gthash.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -pthread -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/usr/lib/libffi-3.1/include -I./girepository -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libgirepository_gthash_la-gthash.lo -MD -MP -MF .deps/libgirepository_gthash_la-gthash.Tpo -c girepository/gthash.c -fPIC -DPIC -o .libs/libgirepository_gthash_la-gthash.o
    mv -f .deps/libgirepository_1_0_la-girepository.Tpo .deps/libgirepository_1_0_la-girepository.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bdz.lo -MD -MP -MF .deps/libcmph_la-bdz.Tpo -c -o libcmph_la-bdz.lo `test -f 'girepository/cmph/bdz.c' || echo './'`girepository/cmph/bdz.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bdz.lo -MD -MP -MF .deps/libcmph_la-bdz.Tpo -c girepository/cmph/bdz.c -fPIC -DPIC -o .libs/libcmph_la-bdz.o
    mv -f .deps/libgirepository_1_0_la-giunioninfo.Tpo .deps/libgirepository_1_0_la-giunioninfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bdz_ph.lo -MD -MP -MF .deps/libcmph_la-bdz_ph.Tpo -c -o libcmph_la-bdz_ph.lo `test -f 'girepository/cmph/bdz_ph.c' || echo './'`girepository/cmph/bdz_ph.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bdz_ph.lo -MD -MP -MF .deps/libcmph_la-bdz_ph.Tpo -c girepository/cmph/bdz_ph.c -fPIC -DPIC -o .libs/libcmph_la-bdz_ph.o
    mv -f .deps/libgirepository_1_0_la-givfuncinfo.Tpo .deps/libgirepository_1_0_la-givfuncinfo.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bmz8.lo -MD -MP -MF .deps/libcmph_la-bmz8.Tpo -c -o libcmph_la-bmz8.lo `test -f 'girepository/cmph/bmz8.c' || echo './'`girepository/cmph/bmz8.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bmz8.lo -MD -MP -MF .deps/libcmph_la-bmz8.Tpo -c girepository/cmph/bmz8.c -fPIC -DPIC -o .libs/libcmph_la-bmz8.o
    mv -f .deps/libgirepository_gthash_la-gthash.Tpo .deps/libgirepository_gthash_la-gthash.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bmz.lo -MD -MP -MF .deps/libcmph_la-bmz.Tpo -c -o libcmph_la-bmz.lo `test -f 'girepository/cmph/bmz.c' || echo './'`girepository/cmph/bmz.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-bmz.lo -MD -MP -MF .deps/libcmph_la-bmz.Tpo -c girepository/cmph/bmz.c -fPIC -DPIC -o .libs/libcmph_la-bmz.o
    mv -f .deps/libgirepository_1_0_la-gitypelib.Tpo .deps/libgirepository_1_0_la-gitypelib.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-brz.lo -MD -MP -MF .deps/libcmph_la-brz.Tpo -c -o libcmph_la-brz.lo `test -f 'girepository/cmph/brz.c' || echo './'`girepository/cmph/brz.c
    mv -f .deps/libcmph_la-bdz.Tpo .deps/libcmph_la-bdz.Plo
    mv -f .deps/libcmph_la-bdz_ph.Tpo .deps/libcmph_la-bdz_ph.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-buffer_entry.lo -MD -MP -MF .deps/libcmph_la-buffer_entry.Tpo -c -o libcmph_la-buffer_entry.lo `test -f 'girepository/cmph/buffer_entry.c' || echo './'`girepository/cmph/buffer_entry.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-buffer_manager.lo -MD -MP -MF .deps/libcmph_la-buffer_manager.Tpo -c -o libcmph_la-buffer_manager.lo `test -f 'girepository/cmph/buffer_manager.c' || echo './'`girepository/cmph/buffer_manager.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-brz.lo -MD -MP -MF .deps/libcmph_la-brz.Tpo -c girepository/cmph/brz.c -fPIC -DPIC -o .libs/libcmph_la-brz.o
    mv -f .deps/libcmph_la-bmz.Tpo .deps/libcmph_la-bmz.Plo
    mv -f .deps/libcmph_la-bmz8.Tpo .deps/libcmph_la-bmz8.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chd.lo -MD -MP -MF .deps/libcmph_la-chd.Tpo -c -o libcmph_la-chd.lo `test -f 'girepository/cmph/chd.c' || echo './'`girepository/cmph/chd.c
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chd_ph.lo -MD -MP -MF .deps/libcmph_la-chd_ph.Tpo -c -o libcmph_la-chd_ph.lo `test -f 'girepository/cmph/chd_ph.c' || echo './'`girepository/cmph/chd_ph.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-buffer_entry.lo -MD -MP -MF .deps/libcmph_la-buffer_entry.Tpo -c girepository/cmph/buffer_entry.c -fPIC -DPIC -o .libs/libcmph_la-buffer_entry.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-buffer_manager.lo -MD -MP -MF .deps/libcmph_la-buffer_manager.Tpo -c girepository/cmph/buffer_manager.c -fPIC -DPIC -o .libs/libcmph_la-buffer_manager.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chd.lo -MD -MP -MF .deps/libcmph_la-chd.Tpo -c girepository/cmph/chd.c -fPIC -DPIC -o .libs/libcmph_la-chd.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chd_ph.lo -MD -MP -MF .deps/libcmph_la-chd_ph.Tpo -c girepository/cmph/chd_ph.c -fPIC -DPIC -o .libs/libcmph_la-chd_ph.o
    mv -f .deps/libcmph_la-buffer_entry.Tpo .deps/libcmph_la-buffer_entry.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chm.lo -MD -MP -MF .deps/libcmph_la-chm.Tpo -c -o libcmph_la-chm.lo `test -f 'girepository/cmph/chm.c' || echo './'`girepository/cmph/chm.c
    mv -f .deps/libcmph_la-chd.Tpo .deps/libcmph_la-chd.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-cmph.lo -MD -MP -MF .deps/libcmph_la-cmph.Tpo -c -o libcmph_la-cmph.lo `test -f 'girepository/cmph/cmph.c' || echo './'`girepository/cmph/cmph.c
    mv -f .deps/libcmph_la-buffer_manager.Tpo .deps/libcmph_la-buffer_manager.Plo
    /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-cmph_structs.lo -MD -MP -MF .deps/libcmph_la-cmph_structs.Tpo -c -o libcmph_la-cmph_structs.lo `test -f 'girepository/cmph/cmph_structs.c' || echo './'`girepository/cmph/cmph_structs.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-chm.lo -MD -MP -MF .deps/libcmph_la-chm.Tpo -c girepository/cmph/chm.c -fPIC -DPIC -o .libs/libcmph_la-chm.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -Icmph -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -fno-strict-aliasing -Wsign-compare -Wcast-align -Wpointer-arith -Wnested-externs -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts -Wall -g -O2 -MT libcmph_la-cmph.lo -MD -MP -MF .deps/libcmph_la-cmph.Tpo -c girepository/cmph/cmph.c -fPIC -DPIC -o .libs/libcmph_la-cmph.o
    libtool: compile: gcc -DHAVE_CO

  • Is it possible to create a tree with drag-and-drop functionality using ajax

    I saw these samples;
    Scott Spendolini's AJAX Select List Demo
    http://htmldb.oracle.com/pls/otn/f?p=33867:1:10730556242433798443
    Building an Ajax Memory Tree by Scott Spendolini
    http://www.oracle.com/technology/pub/articles/spendolini-tree.html
    Carl Backstrom ApEx-AJAX & DHTML examples;
    http://htmldb.oracle.com/pls/otn/f?p=11933:5:8901671725714285254
    Do you think is it possible to create a tree with drag-and-drop functionality using ajax and apex like this sample; http://www.scbr.com/docs/products/dhtmlxTree/
    Thank you,
    Kind regards.
    Tonguç

    Hello,
    Sure you can build it, I just don't think anyone has, you could also use their solution as well in an APEX page it's just a matter of integration.
    Carl

  • N-ary Trees non-recursive traversal algorithms

    Hi,
    Non-recursive traversals are needed when you are unsure how big the tree's will be. So far all the algorithms I have seen either use their own internal stack
    or threading to climb back up the tree.
    Here's my attempt that seems to work but I would value so critical evaluation
    * An extension of the CommonAST that records the line and column
    * number.  The idea was taken from <a target="_top"
    * href="http://www.jguru.com/jguru/faq/view.jsp?EID=62654">Java Guru
    * FAQ: How can I include line numbers in automatically generated
    * ASTs?</a>.
    * @author Oliver Burn
    * @author lkuehne
    * @version 1.0
    * @see <a target="_top" href="http://www.antlr.org/">ANTLR Website</a>
    public class DetailAST
        public AST getFirstChild()
        public AST getNextSibling()
        public int getChildCount()
        public DetailAST getParent()
        public int getChildCount(int aType)
        public String getText()
    }This was cut back just to give you enough info
         public static AST getLeftMostChild(DetailAST ast) {
              DetailAST tempAst = ast.getFirstChild();
              while (tempAst.getFirstChild() != null) {
                   tempAst = tempAst.getFirstChild();
              return tempAst;
         public static void traverseASTInOrder(DetailAST root) {
              DetailAST current = getLeftMostChild(ast);
              processNode(current);
              while (current != root) {
                   if (current == current.getParent().getFirstChild()) {
                        processNode(current.getParent());
                   if (current.getNextSibling() != null) {
                        DetailAST sibling = current.getNextSibling();
                        if (sibling.getChildCount() != 0) {
                             current = (DetailAST) getLeftMostChild(sibling);
                             processNode(current);
                        } else {
                             current = sibling;
                             processNode(current);
                   } else {
                        current = current.getParent();
            // do stuff at inorder traversal
         public static void processNode(AST current) {
              System.out.println(current.getText());
         }for pre-order and post-order John Cowan put forward this algorithm
    http://lists.xml.org/archives/xml-dev/199811/msg00050.html
    traverse(Node node) {
        Node currentNode = node;
        while (currentNode != null) {
          visit(currentNode); //pre order
          // Move down to first child
          Node nextNode = currentNode.getFirstChild();
          if (nextNode != null) {
            currentNode = nextNode;
            continue;
          // No child nodes, so walk tree
          while (currentNode != null) {
            revisit(currentNode)     // post order
            // Move to sibling if possible.
            nextNode = currentNode.getNextSibling();
            if (nextNode != null) {
              currentNode = nextNode;
              break;
           // Move up
           if (currentNode = node)
          currentNode = null;
           else
          currentNode = currentNode.getParentNode();
      }Any comments, criticisms or suggestions ?
    regards
    David Scurrah

    Stack is recursion? As far as I know recursion is when
    function (method) calls itself. Just using some
    Collection, which java.util.Stack implements is not
    recursion.
    Regards
    PawelStacks are used to implement recursive algorithms. What happens in most languages when you make a function call? Each function has an "activation record" where it stores its local variables and parameters. This activation record is usually allocated on a stack. Thus for any recursive algorithm, there is a non-recursive algorithm that uses a stack.
    In the OP's case you don't need a stack because of the peculiarities of tree traversal when you have a pointer to the parent node. (Namely, no cycles and you can get back to where you've been) So the algorithms he gave should work fine.
    My only "criticism" would be that it may be more useful to implement these algorithms with the iterator pattern. So you would have a tree with some functions like:
    public class Tree{
        public TreeIterator inOrderIteraror();
        public TreeIterator preOrderIterator();
    }Where the TreeIterator would look like a java.util.Iterator, except maybe you want some additional utility methods in there or something.
    Other than that, non-recursive algorithms are defnitely the way to go.

  • Problem when expanding Tree - Tree with nested table column

    Hi, i have created the tree using the Tree with nested table column.
    I have created a node called TREE_ROOT in the context.
    This node has few attributes which includes children_loaded, is_leaf, is_expanded.
    I have created the recursive node TREE_SUB for the above node TREE_ROOT.
    In the view, i have created the table with the master column. The above attributes have been mapped accordingly. I have created the action handler for load_children.
    In this action handler method, i receive the context_element correctly. In this method, i determine the children of the selected element and the resulting children are attached to this context_element.
    But the problem is: when i add elements to context_elements in the method load_children, these
    elements get added to the node TREE_ROOT as well.
    Please help.
    thanks and best regards,
    Pramod

    I just use some types defined in this user... Well, I hope you know what is the type definition of d_period_sec,
    don't you ? I didn't ask to provide all types existed now, only types you are
    using.
    Anyhow you have been granted with execute privilege for types you are using:
    SQL> conn tau_tll/tau_tll;
    Connected.
    SQL> create or replace type d_period_sec as object (date# date);
      2  /
    Type created.
    SQL> grant execute on d_period_sec to public with grant option;
    Grant succeeded.
    SQL> conn scott/tiger
    Connected.
    SQL> CREATE OR REPLACE TYPE unit_function AS OBJECT (
      2  xi NUMBER,
      3  yi NUMBER,
      4  xe NUMBER,
      5  ye NUMBER,
      6  xm NUMBER,
      7  ym NUMBER,
      8  v NUMBER,
      9  a NUMBER,
    10  f NUMBER,
    11  descr VARCHAR2 (20)
    12  );
    13  /
    Type created.
    SQL> grant execute on unit_function to master;
    Grant succeeded.
    SQL> CREATE OR REPLACE TYPE unit_moving_point AS OBJECT
      2  (
      3  p tau_tll.d_period_sec, -- from user TAU_TLL
      4 
      5  m unit_function
      6  )
      7  /
    Type created.
    SQL> grant execute on unit_moving_point to master;
    Grant succeeded.
    SQL> CREATE OR REPLACE TYPE moving_point_tab AS TABLE OF unit_moving_point;
      2  /
    Type created.
    SQL> grant execute on moving_point_tab to master;
    Grant succeeded.
    SQL> CREATE OR REPLACE TYPE moving_point AS OBJECT (u_tab moving_point_tab);
      2  /
    Type created.
    SQL> grant execute on moving_point to master;
    Grant succeeded.
    SQL> conn master/master
    Connected.
    SQL> CREATE TABLE MPOINTS (
      2  id NUMBER,
      3  mpoint scott.Moving_Point)
      4  NESTED TABLE mpoint.u_tab store as moving_tab;
    Table created.Rgds.

Maybe you are looking for