Whether JTable supports nesting of JButton or JCheckBox?

Hi All,
I need to show JButton or JCheckBoxes inside JTable. I tried extending from AbstractTableModel and overiden following method:
public Object getValueAt(int row, int column)
to return either JButton or JCheckBox, but while rendering the JTable it calls toString() method of the returned object i.e. either JButton or JCheckBox.
Can any one pls guide me whether JTable supports nesting of JButton or JCheckBox? And if yes, How do I achieve the same.
Pls reply at the earliest.
Thanks,
Sandesh

Take a look at creating your own table cell renderer and table cell editor. Search for that on these forums, or better yet within Sun's Swing Java Tutorial. It can be done and it's not hard once you get the concept down. Note that JTable has a prepareRenderer method that returns a component to renderer, which can be any component you want and there are methods to easily assign a renderer and editor by column (or even more by cell, but that's a bit more complicated).

Similar Messages

  • SQL Parser supporting nested queries

    Hi,
    I require a SQL parser that supprt nested queries. JavaCC doesnt support nested queries so that one is out. If anyone knows of any open sourse parser, please enlighten me. I have already looked enough on Google but not of much use.
    thanks,
    abulkd

    | 1. as suggested , i was able to get the oraclexmlsql.jar
    | from the servlet zip and loading it solved the problem of
    | the jdbc string being printed int he cursor syntax . it
    | works from the xmlgen utility withing pl/sql. but when
    | using OracleXML in a java prog the results still printout
    | the jdbc string.. any ideas...
    Could only be a CLASSPATH problem difference in your two
    tests.
    | 2. Is there anyway to supress the rownum attribute tag in
    | the subquery (cursor) results...that is the
    | setRowIdAttrName .... w/o using xslt
    Not at this time. Rownum supression on the subquery should
    probably follow your settings on the main query. I'll
    suggest to the devs.
    | 3. We are implementing a solution using these tools.... we
    | wanted to know which were the production versions.
    XDK Components for XML and XSLT are production.
    XML SQL Utility and XSQL Servlet are still Technical
    Previews and as such are not yet production.
    null

  • Does 9iAS support nested groups?

    For examples, our company is a large company which has more than 20 braches, and each branch has subbraches and departments, so when implement the previous intranet, we map all the organization stucture to a nested group system. We enjoy this design, because managing the privileges is a easy task: only grant/revoke permission to/from the group that mirror to a physical organization unit.
    We intend move our next generation intranet to Oracle 9iAS, especially the Poral, but does it support nested groups structure?
    Thanks,
    Hunte

    Work Around:
    On your mac:
    1.  Open a new email
    2.  Insert name of an existing group into one of the "To" fields as usual.
    3.  Highlight all the resulting names in the "To" entry
         [Highlight first name, and while holding shift, highlight last name and all will highlight[]
    4. Copy (Command C) the highlighted emails
    5. Paste (Command V) nto a pages document
    6. Remove the name and anything else preceeding the first < and also the first < of only the first entry whixh will look like this:
         [email protected]>,
    7. Remove the > of the last email which will look like this:
         , Jane Doe <[email protected]
    8. Copy the entire altered list from the pages document
    9, Go to Contact Book and click + to add a new entry
    10.. Name the entry (XXX Group for iPad) or whatever you wish to call it
    11.  Paste all the copied altered list into any one of the email entry spaces
    12.  Click on "Done"
    13.  Create new email On iPad and click on + in any one of the "To" lines and search for "XXX Group for iPad"  You cannot just key in XXX Group for iPad!!!!!!!, you must use + contact search.
    14.  Enter the selected iPad contact group into the "To" line.
    15.  All the entries will now appear in the "To" line and you are good to go.
    Adding or deleting email addresses from the iPad group:
    Easiest:  Alter the original mac group in the usual way and repeat steps 1-14 above.  It seems impossible to edit within the emai line of the iPad contact entry.
    Rediculously simple once figured out.
    Happy emailling, but please send Bcc so that you don't spread your groups' email addresses all over the internet for spam, viruses, and other unwanted emails.  Be considerate and ask your recipients to notifiy you if they wish to be deleted from the lists you compose.

  • Jtable:Is Nested header Possible

    How to give nested header in java swing . I have defined the 4 main headers (type,source ,target ,default) wanted to have subheaders under each main header.
    Example Code:
    private String[] tableHeaders = new String[] {
                   type,source ,target ,default};
    private Vector<Vector<Object>> Vector = new Vector<Vector<Object>>();
    private Vector<Object> headers = new Vector<Object>(
                   Arrays.asList(tableHeaders));
    private DefaultTableModel defaultTableModel = new DefaultTableModel(Vector,
                   headers) {
              private static final long serialVersionUID = 1L;
              boolean[] columnEditables = new boolean[] { false, false, false, false };
              public boolean isCellEditable(int row, int column) {
                   return columnEditables[column];
              public boolean isRowSelected(int row) {
                   return true;
         };

    I have worked on something similar. Here is one possible solution that you may want to try which is based on creating two tables - one main table and one inner table. Inner table is rendered as a column of the main table. You have to handle the table cell renderer and editor for the main table so that it can render inner table and allow normal table editing. I have added just one inner table in the code below but you can add more as per your requirement for showing them in other columns of the main table.
    import java.awt.Component;     
    import javax.swing.AbstractCellEditor; 
    import javax.swing.JCheckBox;
    import javax.swing.JFrame; 
    import javax.swing.JScrollPane; 
    import javax.swing.JTable; 
    import javax.swing.table.DefaultTableCellRenderer;      
    import javax.swing.table.DefaultTableModel; 
    import javax.swing.table.TableCellEditor; 
    import javax.swing.table.TableColumn; 
    import javax.swing.table.TableColumnModel;
    public class NestedJTableHeader extends JFrame { 
            private JTable mainTable; 
            private JTable innerTable; 
            private Object[][] tableList;        
            private String[] columnNames = {"A", "B", "C", "D", "E"}; 
            private Object[][] data = { 
                    {"1", "2", "3", "4", new Boolean(false)}, 
                    {"5", "6", "7", "8", new Boolean(true)}, 
                    {"9", "10", "11", "12", new Boolean(false)}, 
                    {"13", "14", "15", "16", new Boolean(true)}, 
                    {"17", "18", "19", "20", new Boolean(false)} 
            private String[] names = {"Type", "Source", "Target", "Default"};
            public NestedJTableHeader(){            
                innerTable = new JTable(new DefaultTableModel (data, columnNames){
                        public Class<?> getColumnClass(int columnIndex) {
                             if(columnIndex==4)
                                  return Boolean.class;
                             else
                                  return super.getColumnClass(columnIndex);
                tableList = new Object[1][]; 
                tableList[0] = new Object[1]; 
                tableList[0][0] = innerTable; 
                mainTable = new JTable(new DefaultTableModel(tableList, names)); 
                TableColumn tc = mainTable.getColumnModel().getColumn(0); 
                tc.setCellRenderer(new CustomTableCellRenderer(innerTable)); 
                tc.setCellEditor(new CustomTableCellEditor(innerTable)); 
                tc = mainTable.getColumnModel().getColumn(1); 
                mainTable.setRowHeight(innerTable.getPreferredSize().height+innerTable.getTableHeader().getPreferredSize().height+4); 
                // Enable the ability to select a single cell  
                mainTable.setColumnSelectionAllowed(true);  
                mainTable.setRowSelectionAllowed(true);  
                this.getContentPane().add(new JScrollPane(mainTable)); 
                this.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); 
                this.pack();
                setSize(600,450);
                setVisible(true); 
            class CustomTableCellRenderer extends DefaultTableCellRenderer { 
                JTable table; 
                CustomTableCellRenderer(JTable table){ 
                    this.table=table; 
                    this.table.setOpaque(true); 
                    this.table.setAlignmentY(JTable.LEFT_ALIGNMENT); 
                @Override 
                public Component getTableCellRendererComponent(JTable table, Object value, 
                        boolean isSelected, boolean hasFocus, int row, int column) { 
                    this.table=(JTable)value; 
                    return new JScrollPane(this.table);  
            class CustomTableCellEditor extends AbstractCellEditor implements TableCellEditor{ 
                JTable table; 
                CustomTableCellEditor(JTable table){ 
                    this.table=table; 
                    this.table.setOpaque(true); 
                    this.table.setAlignmentY(JTable.LEFT_ALIGNMENT); 
                @Override 
                public Component getTableCellEditorComponent(JTable table, 
                        Object value, boolean isSelected, int row, int column) { 
                    this.table=(JTable)value; 
                    return new JScrollPane(this.table); 
                @Override 
                public Object getCellEditorValue() { 
                    return this.table; 
             * @param args
            public static void main(String[] args) { 
                new NestedJTableHeader(); 
    } Edited by: Nitin Khare on May 17, 2012 12:42 AM

  • Do lock and unlock support nesting?

    I can't find any information on this (probably important enough for the documentation to have), but do lock() and unlock() implement lock nesting depth on whatever lease granularity you have (thread or member), e.g.,
    lock( X )
    lock( X )
    unlock( X )
    (X is still locked here, because we locked it twice previously in the same thread)
    unlock( X )
    (X is finally unlocked?)
    or do I need to keep track of this myself?

    Nested locking is minimally supported. You can do multiple locks but the first unlock totally unlocks and subsequent unlocks are nops.
    Check out the description of lease-granularity in:
    http://wiki.tangosol.com/display/COH34UG/distributed-scheme
    and ExplicitLocking in:
    http://wiki.tangosol.com/display/COH34UG/Implement+Transactions%2C+Locks%2C+and+Concurrency
    -David

  • Whether WLC support LDAP Secure ?..

    Hi ,
    We are using 5508 WLC with software version of 7.4.100.60 . Whether this code will support that ? When we tried LDAP on with port number 389 , we are able to authenticate the user . But with LDAPS on port number 636 we are not getting response from AD?
    Any clue on this...
    Thanks,
    Regards,
    Vijay.

    You can change the port, but you are not changing how it communicates by changing the port. If you search for WLC LDAP Configuration, you will not see any reference to supporting LDAPS. If there was a setting on the WLC to choose to use LDAP or LDAPS, then it would work. You have also tested it and you can see it doesn't work. Sniff the traffic and see if it is secure or not as that will also tell you.
    You can alway contact your local SE and put in for a feature request for that.
    Sent from Cisco Technical Support iPhone App

  • Does wls 8.1 clientgen support nested complextype?

    It seems that it ignore the types with nested complextype. The class is not generated for such types. e.g.
    <s:element name="GetListItems">
    <s:complexType>
    <s:sequence>
    <s:element minOccurs="0" maxOccurs="1" name="listName" type="s:string" />
    <s:element minOccurs="0" maxOccurs="1" name="viewName" type="s:string" />
    <s:element minOccurs="0" maxOccurs="1" name="query">
    <s:complexType mixed="true">
    <s:sequence>
    <s:any />
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element minOccurs="0" maxOccurs="1" name="viewFields">
    <s:complexType mixed="true">
    <s:sequence>
    <s:any />
    </s:sequence>
    </s:complexType>
    </s:element>
    <s:element minOccurs="0" maxOccurs="1" name="rowLimit" type="s:string" />
    <s:element minOccurs="0" maxOccurs="1" name="queryOptions">
    <s:complexType mixed="true">
    <s:sequence>
    <s:any />
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:sequence>
    </s:complexType>
    </s:element>

    Hi,
    weblogic supports SOAP with attachment. please have a sample code at link
    <br>
    Prasanna Yalam

  • Will Iphone 5c get ios 10 and whether longer support than Iphone 5?

    I wonder should I buy Iphone 5 or Iphone 5c? I heard that Iphone 5c will get ios 10, and Iphone 5 not. Is it true? Maybe as well as Iphone 5c and Iphone 5 stops on ios 9?
    Thanks for answers

    marwar12 wrote:
    Its easy to predict. Usualy Iphones have 3-4 yrs support, for ex. Iphone 4 started at ios 4.0 and "finished" at 7,  Iphone 4s (5.0) and 8 is his last...
    Which of course would require speculation, which isn't permitted on this site.

  • Trouble installing ZFS in archlinux kernel 3.6.3-1-ARCH

    I've been trying to install ZFS on my system, and i can't get past a building error for SPL, here is my install output:
    ==> Downloading zfs PKGBUILD from AUR...
    x zfs_preempt.patch
    x zfs.install
    x PKGBUILD
    Comment by: modular on Wed, 24 Oct 2012 03:09:04 +0000
    @demizer
    I don't/won't run ZFS as a root file system. I'm getting the following build error:
    http://pastebin.com/ZcWiaViK
    Comment by: demizer on Wed, 24 Oct 2012 04:11:54 +0000
    @modular, You're trying to build with the 3.6.2 kernel. The current version (rc11) does not work with the 3.6.2 kernel. If you want to use it, you will have to downgrade to the 3.5.6 kernel (linux and linux-headers). https://wiki.archlinux.org/index.php/Downgrading_Packages
    Thanks!
    Comment by: MilanKnizek on Wed, 24 Oct 2012 08:07:19 +0000
    @demizer: there still seemed to be a problem during upgrading - zfs/spl requires kernel of certain version (hard-coded) and this blocks the upgrade (the old installed zfs/spl requires the old kernel and kernel can't be upgraded w/o breaking dependency of zfs/spl and therefore build of the new zfs/spl fails, too).
    So far, I have had to remove zpl/spl, upgrade kernel, rebuild + install spl/zfs and manually run depmod against the new kernel (i.e. the postinst: depmod -a does not work until next reboot) and only then reboot to load the new kernel zfs modules successfully.
    That is quite clumsy and error-prone - I hope it will be resolved via DMKS.
    Comment by: srf21c on Sun, 28 Oct 2012 04:00:31 +0000
    All, if you're suffering zfs kernel upgrade pain fatigue, seriously consider going with the LTS (long term support) kernel. I just successfully built zfs on a system that I switched to the linux-lts 3.0.48-1. All you have to do is install the linux-lts and linux-lts-headers packages, reboot to the lts kernel, and change any instances of depends= or makedepends= lines in the package build file like so:
    Before:
    depends=('linux=3.5' "spl=${pkgver}" "zfs-utils=${pkgver}")
    makedepends=('linux-headers=3.5')
    After:
    depends=('linux-lts=3.0' "spl=${pkgver}" "zfs-utils=${pkgver}")
    makedepends=('linux-lts-headers=3.0')
    Then build and install each package in this order: spl-utils,spl,zfs-utils,zfs.
    Worked like a champ for me.
    Comment by: stoone on Mon, 29 Oct 2012 12:09:29 +0000
    If you keep the linux, and linux-headers packages while using the LTS you don't need to modify the PKGBUILDs. Because the checks will pass but it will build the packages to your current runnning kernel.
    Comment by: demizer on Mon, 29 Oct 2012 15:56:27 +0000
    Hey everybody, just a quick update. The new build tool I have been working on is now in master, https://github.com/demizer/aur-zfs. With it you can build and package two different groups of packages one for aur and one for split. Again, building the split packages is more efficient. I still have a lot of work to be done, but it is progressing. I will be adding git, dkms, and lts packages after I setup my repo. My next step is to add unofficial repository support to my build tool so I can easily setup a repo with precompiled binaries. I will be hosting the repo on my website at http://demizerone.com/archzfs. Initially it will only be for 64bit code since the ZOL FAQ states that ZOL is very unstable with 32bit code due to memory management differences in Solaris and Linux. I will notify you all in the future when that is ready to go.
    @MilanKnizek, Yes updating is a pain. ZFS itself is hard-coded to linux versions at build time. The ZFS build tool puts the modules in "/usr/lib/modules/3.5.6-1-ARCH/addon/zfs/", and this the primary reason it has to be rebuilt each upgrade, even minor point releases. Nvidia for example puts their module in "/usr/lib/modules/extramodules-3.5-ARCH/", so minor point releases are still good and the nvidia package doesn't need to be re-installed. A possible reason for ZOL to be hard-coded like this because ZOL is still technically very beta code.
    I do have a question for the community, does anyone use ZFS on a 32bit system?
    Thanks!
    First Submitted: Thu, 23 Sep 2010 08:50:51 +0000
    zfs 0.6.0_rc11-2
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> zfs dependencies:
    - linux>=3.5 (already installed)
    - linux-headers>=3.5 (already installed)
    - spl>=0.6.0_rc11 (building from AUR)
    - zfs-utils>=0.6.0_rc11 (building from AUR)
    ==> Edit zfs.install ? [Y/n] ("A" to abort)
    ==> ---------------------------------------
    n
    ==> Continue building zfs ? [Y/n]
    ==> -----------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for zfs:
    ==> Downloading spl PKGBUILD from AUR...
    x spl.install
    x PKGBUILD
    Comment by: timemaster on Mon, 15 Oct 2012 22:42:32 +0000
    I am not able to compile this package after the upgrade to the 3.6 kernel. Anyone else ? any idea?
    Comment by: mikers on Mon, 15 Oct 2012 23:34:17 +0000
    rc11 doesn't support Linux 3.6; there are some patches on GitHub that might apply against it (I've not done it myself), see:
    https://github.com/zfsonlinux/spl/pull/179
    https://github.com/zfsonlinux/zfs/pull/1039
    Otherwise downgrade to Linux 3.5.x or linux-lts and wait for rc12.
    Comment by: timemaster on Mon, 15 Oct 2012 23:54:03 +0000
    Yes, I saw that too late.
    https://github.com/zfsonlinux/zfs/commit/ee7913b644a2c812a249046f56eed39d1977d706
    Comment by: demizer on Tue, 16 Oct 2012 07:00:16 +0000
    Looks like the patches have been merged, now we wait for rc12.
    Comment by: vroomanj on Fri, 26 Oct 2012 17:07:19 +0000
    @demizer: 3.6 support is available in the master builds, which are stable but not officially released yet. Can't the build be updated to use the master tars?
    https://github.com/zfsonlinux/spl/tarball/master
    https://github.com/zfsonlinux/zfs/tarball/master
    Comment by: demizer on Fri, 26 Oct 2012 17:51:42 +0000
    @vroomanj, I plan on working on the git packages this weekend. All I have to figure out if it is going to be based on an actual git clone or if its just going to be the download links you provided. They are pretty much the same, but i'm not really clear what the Arch Package Guidelines say about this yet. Also, I don't think the current packages in AUR now should be based off of git master. They should be based off of the ZOL stable releases (rc10, rc11, ...). That's why I am making git packages so people can use them if they want to upgrade to the latest kernel and the stable release hasn't been made yet. As is the case currently.
    First Submitted: Sat, 26 Apr 2008 14:34:31 +0000
    spl 0.6.0_rc11-2
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> spl dependencies:
    - linux>=3.5 (already installed)
    - spl-utils>=0.6.0_rc11 (already installed)
    - linux-headers>=3.5 (already installed)
    ==> Edit spl.install ? [Y/n] ("A" to abort)
    ==> ---------------------------------------
    ==> n
    ==> Continue building spl ? [Y/n]
    ==> -----------------------------
    ==>
    ==> Building and installing package
    ==> Making package: spl 0.6.0_rc11-2 (Tue Oct 30 11:34:13 CET 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Downloading spl-0.6.0-rc11.tar.gz...
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    0 178 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
    100 136 100 136 0 0 154 0 --:--:-- --:--:-- --:--:-- 293
    100 508k 100 508k 0 0 357k 0 0:00:01 0:00:01 --:--:-- 1245k
    ==> Validating source files with md5sums...
    spl-0.6.0-rc11.tar.gz ... Passed
    ==> Extracting Sources...
    -> Extracting spl-0.6.0-rc11.tar.gz with bsdtar
    ==> Starting build()...
    configure.ac:34: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
    configure.ac:34: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation
    checking metadata... yes
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking target system type... i686-pc-linux-gnu
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking whether make supports nested variables... yes
    checking for a BSD-compatible install... /usr/bin/install -c
    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 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 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... /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 i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop
    checking how to convert i686-pc-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) 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... yes
    checking spl license... GPL
    checking linux distribution... arch
    checking default package type... arch
    checking whether rpm is available... no
    checking whether rpmbuild is available... no
    checking whether dpkg is available... no
    checking whether dpkg-buildpackage is available... no
    checking whether alien is available... no
    checking whether pacman is available... yes (4.0.3)
    checking whether makepkg is available... yes (4.0.3)
    checking spl config... kernel
    checking kernel source directory... /usr/src/linux-3.6.3-1-ARCH
    checking kernel build directory... /usr/src/linux-3.6.3-1-ARCH
    checking kernel source version... 3.6.3-1-ARCH
    checking kernel file name for module symbols... Module.symvers
    checking whether debugging is enabled... no
    checking whether basic debug logging is enabled... yes
    checking whether basic kmem accounting is enabled... yes
    checking whether detailed kmem tracking is enabled... no
    checking whether modules can be built... yes
    checking whether atomic types use spinlocks... no
    checking whether kernel defines atomic64_t... yes
    checking whether kernel defines atomic64_cmpxchg... no
    checking whether kernel defines atomic64_xchg... yes
    checking whether kernel defines uintptr_t... yes
    checking whether INIT_WORK wants 3 args... no
    checking whether register_sysctl_table() wants 2 args... no
    checking whether set_shrinker() available... no
    checking whether shrinker callback wants 3 args... no
    checking whether struct path used in struct nameidata... yes
    checking whether task_curr() is available... no
    checking whether unnumbered sysctl support exists... no
    checking whether struct ctl_table has ctl_name... no
    checking whether fls64() is available... yes
    checking whether device_create() is available... yes
    checking whether device_create() wants 5 args... yes
    checking whether class_device_create() is available... no
    checking whether set_normalized_timespec() is available as export... yes
    checking whether set_normalized_timespec() is an inline... yes
    checking whether timespec_sub() is available... yes
    checking whether init_utsname() is available... yes
    checking whether header linux/fdtable.h exists... yes
    checking whether files_fdtable() is available... yes
    checking whether __clear_close_on_exec() is available... yes
    checking whether header linux/uaccess.h exists... yes
    checking whether kmalloc_node() is available... yes
    checking whether monotonic_clock() is available... no
    checking whether struct inode has i_mutex... yes
    checking whether struct mutex has owner... yes
    checking whether struct mutex owner is a task_struct... yes
    checking whether mutex_lock_nested() is available... yes
    checking whether on_each_cpu() wants 3 args... yes
    checking whether kallsyms_lookup_name() is available... yes
    checking whether get_vmalloc_info() is available... no
    checking whether symbol *_pgdat exist... yes
    checking whether first_online_pgdat() is available... no
    checking whether next_online_pgdat() is available... no
    checking whether next_zone() is available... no
    checking whether pgdat_list is available... no
    checking whether global_page_state() is available... yes
    checking whether page state NR_FREE_PAGES is available... yes
    checking whether page state NR_INACTIVE is available... no
    checking whether page state NR_INACTIVE_ANON is available... yes
    checking whether page state NR_INACTIVE_FILE is available... yes
    checking whether page state NR_ACTIVE is available... no
    checking whether page state NR_ACTIVE_ANON is available... yes
    checking whether page state NR_ACTIVE_FILE is available... yes
    checking whether symbol get_zone_counts is needed... no
    checking whether user_path_dir() is available... yes
    checking whether set_fs_pwd() is available... no
    checking whether set_fs_pwd() wants 2 args... yes
    checking whether vfs_unlink() wants 2 args... yes
    checking whether vfs_rename() wants 4 args... yes
    checking whether vfs_fsync() is available... yes
    checking whether vfs_fsync() wants 2 args... yes
    checking whether struct fs_struct uses spinlock_t... yes
    checking whether struct cred exists... yes
    checking whether groups_search() is available... no
    checking whether __put_task_struct() is available... yes
    checking whether proc_handler() wants 5 args... yes
    checking whether kvasprintf() is available... yes
    checking whether rwsem_is_locked() acquires sem->wait_lock... no
    checking whether invalidate_inodes() is available... no
    checking whether invalidate_inodes_check() is available... no
    checking whether invalidate_inodes() wants 2 args... yes
    checking whether shrink_dcache_memory() is available... no
    checking whether shrink_icache_memory() is available... no
    checking whether symbol kern_path_parent exists in header... no
    checking whether kern_path_parent() is available... no
    checking whether zlib_deflate_workspacesize() wants 2 args... yes
    checking whether struct shrink_control exists... yes
    checking whether struct rw_semaphore member wait_lock is raw... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating lib/Makefile
    config.status: creating cmd/Makefile
    config.status: creating module/Makefile
    config.status: creating module/spl/Makefile
    config.status: creating module/splat/Makefile
    config.status: creating include/Makefile
    config.status: creating scripts/Makefile
    config.status: creating spl.spec
    config.status: creating spl-modules.spec
    config.status: creating PKGBUILD-spl
    config.status: creating PKGBUILD-spl-modules
    config.status: creating spl.release
    config.status: creating dkms.conf
    config.status: creating spl_config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    make all-recursive
    make[1]: Entering directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11'
    Making all in module
    make[2]: Entering directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module'
    make -C /usr/src/linux-3.6.3-1-ARCH SUBDIRS=`pwd` CONFIG_SPL=m modules
    make[3]: Entering directory `/usr/src/linux-3.6.3-1-ARCH'
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-debug.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-proc.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-kmem.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-thread.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-taskq.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-rwlock.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.o
    /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.c: In function 'vn_remove':
    /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.c:327:2: error: implicit declaration of function 'path_lookup' [-Werror=implicit-function-declaration]
    cc1: some warnings being treated as errors
    make[5]: *** [/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.o] Error 1
    make[4]: *** [/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl] Error 2
    make[3]: *** [_module_/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module] Error 2
    make[3]: Leaving directory `/usr/src/linux-3.6.3-1-ARCH'
    make[2]: *** [modules] Error 2
    make[2]: Leaving directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11'
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build spl.
    ==> Restart building spl ? [y/N]
    ==> ----------------------------
    ... i'm stuck here, can anyone help me with this one? please !

    Did you read the comments, either on the AUR page or in the output that you posted? They explain it.

  • Libtool: libgvfscommon.la has not been installed in '/usr/lib/gvfs'

    Hi,
    I'm trying to patch gvfs-mtp. The thing is I'm getting strange warnings from libtool like:
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in
    '/usr/lib/gvfs'
    Or with more context:
    ==> Making package: gvfs 1.22.2-4 (Mon Jan 19 12:57:20 EET 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found gvfs-1.22.2.tar.xz
    -> Found 0001-MTP-Attempt-to-set-MTP-filetype-from-mime-type-when-.patch
    ==> Validating source files with sha256sums...
    gvfs-1.22.2.tar.xz ... Passed
    0001-MTP-Attempt-to-set-MTP-filetype-from-mime-type-when-.patch ... Skipped
    ==> Extracting sources...
    -> Extracting gvfs-1.22.2.tar.xz with bsdtar
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    libtoolize: putting auxiliary files in '.'.
    libtoolize: copying file './ltmain.sh'
    libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, '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'
    configure.ac:11: installing './compile'
    configure.ac:4: installing './missing'
    client/Makefile.am: installing './depcomp'
    checking for a BSD-compatible install... /usr/bin/install -c
    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 build environment is sane... yes
    checking for style of include used by make... 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 dependency style of gcc... gcc3
    checking for an ANSI C-conforming const... yes
    checking for library containing strerror... none required
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking whether gcc understands -c and -o together... (cached) yes
    checking dependency style of gcc... (cached) gcc3
    checking how to run the C preprocessor... gcc -E
    checking whether ln -s works... yes
    checking whether make sets $(MAKE)... (cached) yes
    checking for pkg-config... /usr/bin/pkg-config
    checking for gio-querymodules... /usr/bin/gio-querymodules
    checking for a sed that does not truncate output... /usr/bin/sed
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... (cached) /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 the maximum length of command line arguments... 1572864
    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 a working dd... /usr/bin/dd
    checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
    checking for mt... no
    checking if : is a manifest tool... no
    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 xsltproc... /usr/bin/xsltproc
    checking whether make supports nested variables... (cached) yes
    checking for pid_t... yes
    checking return type of signal handlers... void
    checking for size_t... yes
    checking for uid_t in sys/types.h... yes
    checking pkg-config is at least version 0.16... yes
    checking for struct stat.st_mtimensec... no
    checking for struct stat.st_mtim.tv_nsec... yes
    checking for struct stat.st_atimensec... no
    checking for struct stat.st_atim.tv_nsec... yes
    checking for struct stat.st_ctimensec... no
    checking for struct stat.st_ctim.tv_nsec... yes
    checking for gtk-doc... no
    configure: WARNING:
    You will not be able to create source packages with 'make dist'
    because gtk-doc is not found.
    checking for gtkdoc-check... no
    checking for gtkdoc-check... no
    checking for gtkdoc-rebase... no
    checking for gtkdoc-mkpdf... no
    checking whether to build gtk-doc documentation... no
    checking for GTKDOC_DEPS... yes
    checking for GLIB... yes
    checking for DBUS... yes
    checking whether NLS is requested... yes
    checking for intltool >= 0.35.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.20.1
    checking for XML::Parser... ok
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for LC_MESSAGES... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking for ngettext in libc... yes
    checking for dgettext in libc... yes
    checking for bind_textdomain_codeset... yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for ssh... /usr/bin/ssh
    checking sys/un.h usability... yes
    checking sys/un.h presence... yes
    checking for sys/un.h... yes
    checking stropts.h usability... yes
    checking stropts.h presence... yes
    checking for stropts.h... yes
    checking termios.h usability... yes
    checking termios.h presence... yes
    checking for termios.h... yes
    checking util.h usability... no
    checking util.h presence... no
    checking for util.h... no
    checking utmp.h usability... yes
    checking utmp.h presence... yes
    checking for utmp.h... yes
    checking sys/uio.h usability... yes
    checking sys/uio.h presence... yes
    checking for sys/uio.h... yes
    checking sys/param.h usability... yes
    checking sys/param.h presence... yes
    checking for sys/param.h... yes
    checking for getpt... yes
    checking for posix_openpt... yes
    checking for grantpt... yes
    checking for unlockpt... yes
    checking for ptsname... yes
    checking for ptsname_r... yes
    checking for socketpair... yes
    checking for openpty... no
    checking for openpty in -lutil... yes
    checking for library containing login_tty... none required
    checking for HTTP... yes
    checking for AVAHI... yes
    checking for LIBXML... yes
    checking for UDEV... yes
    checking for FUSE... yes
    checking for UDISKS2... yes
    checking for LIBSYSTEMD_LOGIN... yes
    checking for GUDEV... yes
    checking for CDDA... yes
    checking cdio/paranoia/paranoia.h usability... yes
    checking cdio/paranoia/paranoia.h presence... yes
    checking for cdio/paranoia/paranoia.h... yes
    checking for AFC... yes
    checking for GOA... yes
    checking for GPHOTO2... yes
    checking for GPHOTO25... yes
    checking for KEYRING... yes
    checking for BLURAY... yes
    checking for LIBMTP... yes
    checking for LIBMTP_1_1_5... yes
    checking for LIBMTP_1_1_6... yes
    checking for SMBCLIENT... yes
    checking libsmbclient.h usability... yes
    checking libsmbclient.h presence... yes
    checking for libsmbclient.h... yes
    checking for smbc_getFunctionStatVFS in -lsmbclient... yes
    checking for Samba libraries... yes
    checking for GTK... yes
    checking archive.h usability... yes
    checking archive.h presence... yes
    checking for archive.h... yes
    checking for archive_entry_filetype in -larchive... yes
    checking for Archive 3.libraries... yes
    checking for libgcrypt-config... /usr/bin/libgcrypt-config
    checking for LIBGCRYPT - version >= 1.2.2... yes (1.6.2)
    checking LIBGCRYPT API version... okay
    checking whether _NL_ADDRESS_LANG_TERM is declared... yes
    checking whether _NL_ADDRESS_COUNTRY_AB3 is declared... yes
    checking for glib-genmarshal... /usr/bin/glib-genmarshal
    checking sys/statfs.h usability... yes
    checking sys/statfs.h presence... yes
    checking for sys/statfs.h... yes
    checking sys/statvfs.h usability... yes
    checking sys/statvfs.h presence... yes
    checking for sys/statvfs.h... yes
    checking sys/vfs.h usability... yes
    checking sys/vfs.h presence... yes
    checking for sys/vfs.h... yes
    checking sys/mount.h usability... yes
    checking sys/mount.h presence... yes
    checking for sys/mount.h... yes
    checking for sys/param.h... (cached) yes
    checking for statvfs... yes
    checking for statfs... yes
    checking for struct statfs.f_fstypename... no
    checking for struct statfs.f_bavail... yes
    checking for struct statvfs.f_basetype... no
    checking number of arguments to statfs()... 2
    checking for more warnings... no
    checking that generated files are newer than configure... done
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating common/Makefile
    config.status: creating client/Makefile
    config.status: creating metadata/Makefile
    config.status: creating daemon/trashlib/Makefile
    config.status: creating daemon/Makefile
    config.status: creating monitor/Makefile
    config.status: creating monitor/proxy/Makefile
    config.status: creating monitor/hal/Makefile
    config.status: creating monitor/gdu/Makefile
    config.status: creating monitor/udisks2/Makefile
    config.status: creating monitor/gphoto2/Makefile
    config.status: creating monitor/afc/Makefile
    config.status: creating monitor/mtp/Makefile
    config.status: creating monitor/goa/Makefile
    config.status: creating programs/Makefile
    config.status: creating man/Makefile
    config.status: creating test/Makefile
    config.status: creating po/Makefile.in
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    config.status: executing libtool commands
    config.status: executing default-1 commands
    config.status: executing po/stamp-it commands
    gvfs configuration summary:
    gio module directory : ${exec_prefix}/lib/gio/modules
    hotplug backend: gudev
    Blu-ray metadata support: yes
    HTTP/WebDAV support: yes
    ObexFTP support no
    Samba support: yes
    FUSE support: yes
    CDDA support: yes
    Gphoto2 support: yes
    MTP support: yes
    archive support: yes
    AFC support: yes
    AFP support: yes
    DNS-SD support: yes
    Build HAL volume monitor: no (with fast init path: no)
    Build GDU volume monitor: no
    Build udisks2 volume monitor: yes
    Build GOA volume monitor: yes
    Use libsystemd-login: yes
    GNOME Keyring support: yes
    GTK+ support: yes
    Bash-completion support: yes
    Installed tests: no
    make all-recursive
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    Making all in common
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make all-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[3]: Nothing to be done for 'all-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    Making all in metadata
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make all-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    GEN gvfs-metadata.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    Making all in client
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    Making all in daemon
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make all-recursive
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making all in trashlib
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    GEN sftp.mount
    GEN ftp.mount
    GEN trash.mount
    GEN computer.mount
    GEN burn.mount
    GEN localtest.mount
    GEN network.mount
    GEN recent.mount
    GEN http.mount
    GEN dav.mount
    GEN dav+sd.mount
    GEN smb.mount
    GEN smb-browse.mount
    GEN cdda.mount
    GEN gphoto2.mount
    GEN mtp.mount
    GEN dns-sd.mount
    GEN archive.mount
    GEN afc.mount
    GEN afp-browse.mount
    GEN afp.mount
    GEN sftp.localmount
    GEN ftp.localmount
    GEN trash.localmount
    GEN computer.localmount
    GEN burn.localmount
    GEN localtest.localmount
    GEN network.localmount
    GEN recent.localmount
    GEN http.localmount
    GEN dav.localmount
    GEN dav+sd.localmount
    GEN smb.localmount
    GEN smb-browse.localmount
    GEN cdda.localmount
    GEN gphoto2.localmount
    GEN mtp.localmount
    GEN dns-sd.localmount
    GEN archive.localmount
    GEN afc.localmount
    GEN afp-browse.localmount
    GEN afp.localmount
    GEN gvfs-daemon.service
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making all in monitor
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making all in proxy
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make all-am
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[4]: Nothing to be done for 'all-am'.
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    Making all in udisks2
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    GEN org.gtk.Private.UDisks2VolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    Making all in gphoto2
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make all-am
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    GEN org.gtk.Private.GPhoto2VolumeMonitor.service
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    Making all in afc
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    GEN org.gtk.Private.AfcVolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    Making all in mtp
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    GEN org.gtk.Private.MTPVolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    Making all in goa
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    GEN org.gtk.Private.GoaVolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[3]: Nothing to be done for 'all-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making all in po
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    Making all in programs
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    Making all in test
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make all-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    GEN session.conf
    GEN gvfs-daemon.service
    GEN gvfs-metadata.service
    GEN org.gtk.Private.AfcVolumeMonitor.service
    GEN org.gtk.Private.GPhoto2VolumeMonitor.service
    GEN org.gtk.Private.UDisks2VolumeMonitor.service
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Making all in man
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Nothing to be done for 'all'.
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    ==> Entering fakeroot environment...
    ==> Starting package_gvfs()...
    Making install in common
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make install-am
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c libgvfscommon.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/libgvfscommon.so /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfscommon.so
    libtool: install: /usr/bin/install -c .libs/libgvfscommon.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfscommon.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gvfs'
    make[3]: Nothing to be done for 'install-data-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/common'
    Making install in metadata
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make install-am
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfsd-metadata '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-metadata /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-metadata
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 gvfs-metadata.service '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/metadata'
    Making install in client
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfsd-fuse '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-fuse /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-fuse
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    /bin/sh ../libtool --mode=install /usr/bin/install -c libgvfsdbus.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    libtool: warning: relinking 'libgvfsdbus.la'
    libtool: install: (cd /home/yuri/build/gvfs/src/gvfs-1.22.2/client; /bin/sh "/home/yuri/build/gvfs/src/gvfs-1.22.2/libtool" --silent --tag CC --mode=relink gcc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex "^g_vfs_.*|g_io_module_load|g_io_module_unload|g_io_module_query" -Wl,-O1,--sort-common,--as-needed,-z,relro -o libgvfsdbus.la -rpath /usr/lib/gio/modules gdaemonvfs.lo gdaemonmount.lo gdaemonvolumemonitor.lo gdaemonfile.lo gdaemonfileinputstream.lo gdaemonfileoutputstream.lo gdaemonfileenumerator.lo gdaemonfilemonitor.lo gvfsdaemondbus.lo gvfsiconloadable.lo gvfsuriutils.lo gvfsurimapper.lo smburi.lo httpuri.lo afpuri.lo ../common/libgvfscommon.la -lgmodule-2.0 -pthread -lgio-2.0 -lgobject-2.0 -lglib-2.0 ../metadata/libmetadata.la -lutil -inst-prefix-dir /home/yuri/build/gvfs/pkg/gvfs)
    libtool: install: /usr/bin/install -c .libs/libgvfsdbus.soT /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgvfsdbus.so
    libtool: install: /usr/bin/install -c .libs/libgvfsdbus.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgvfsdbus.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gio/modules'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/include/gvfs-client/gvfs/'
    /usr/bin/install -c -m 644 gvfsuriutils.h gvfsurimapper.h '/home/yuri/build/gvfs/pkg/gvfs/usr/include/gvfs-client/gvfs/'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/tmpfiles.d'
    /usr/bin/install -c -m 644 gvfsd-fuse-tmpfiles.conf '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/tmpfiles.d'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/client'
    Making install in daemon
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make install-recursive
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making install in trashlib
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[4]: Nothing to be done for 'install-exec-am'.
    make[4]: Nothing to be done for 'install-data-am'.
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon/trashlib'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfsd gvfsd-sftp gvfsd-trash gvfsd-computer gvfsd-burn gvfsd-localtest gvfsd-ftp gvfsd-network gvfsd-recent gvfsd-http gvfsd-dav gvfsd-smb-browse gvfsd-smb gvfsd-cdda gvfsd-gphoto2 gvfsd-mtp gvfsd-dnssd gvfsd-archive gvfsd-afc gvfsd-afp-browse gvfsd-afp '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-sftp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-sftp
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-trash /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-trash
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-computer /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-computer
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-burn /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-burn
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-localtest /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-localtest
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-ftp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-ftp
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-network /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-network
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-recent /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-recent
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-http /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-http
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-dav /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-dav
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-smb-browse /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-smb-browse
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-smb /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-smb
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-cdda /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-cdda
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-gphoto2 /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-gphoto2
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-mtp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-mtp
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-dnssd /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-dnssd
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-archive /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-archive
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-afc /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-afc
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-afp-browse /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-afp-browse
    libtool: warning: 'libgvfsdaemon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfsd-afp /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfsd-afp
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../libtool --mode=install /usr/bin/install -c libgvfsdaemon.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: relinking 'libgvfsdaemon.la'
    libtool: install: (cd /home/yuri/build/gvfs/src/gvfs-1.22.2/daemon; /bin/sh "/home/yuri/build/gvfs/src/gvfs-1.22.2/libtool" --silent --tag CC --mode=relink gcc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -no-undefined -avoid-version -Wl,-O1,--sort-common,--as-needed,-z,relro -o libgvfsdaemon.la -rpath /usr/lib/gvfs gvfsdaemon.lo gvfsbackend.lo gvfschannel.lo gvfsreadchannel.lo gvfswritechannel.lo gvfsmonitor.lo gvfsdaemonutils.lo gvfsjob.lo gvfsjobsource.lo gvfsjobdbus.lo gvfsjobprogress.lo gvfsjobmount.lo gvfsjobunmount.lo gvfsjobmountmountable.lo gvfsjobunmountmountable.lo gvfsjobstartmountable.lo gvfsjobstopmountable.lo gvfsjobpollmountable.lo gvfsjobopenforread.lo gvfsjobopeniconforread.lo gvfsjoberror.lo gvfsjobread.lo gvfsjobseekread.lo gvfsjobcloseread.lo gvfsjobopenforwrite.lo gvfsjobwrite.lo gvfsjobseekwrite.lo gvfsjobtruncate.lo gvfsjobclosewrite.lo gvfsjobqueryinfo.lo gvfsjobqueryinforead.lo gvfsjobqueryinfowrite.lo gvfsjobqueryfsinfo.lo gvfsjobenumerate.lo gvfsjobsetdisplayname.lo gvfsjobtrash.lo gvfsjobdelete.lo gvfsjobcopy.lo gvfsjobmove.lo gvfsjobpush.lo gvfsjobpull.lo gvfsjobmakedirectory.lo gvfsjobmakesymlink.lo gvfsjobsetattribute.lo gvfsjobqueryattributes.lo gvfsjobcreatemonitor.lo gvfskeyring.lo ../common/libgvfscommon.la -lgmodule-2.0 -pthread -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lsecret-1 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lutil -inst-prefix-dir /home/yuri/build/gvfs/pkg/gvfs)
    libtool: install: /usr/bin/install -c .libs/libgvfsdaemon.soT /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfsdaemon.so
    libtool: install: /usr/bin/install -c .libs/libgvfsdaemon.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/libgvfsdaemon.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gvfs'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/GConf/gsettings'
    /usr/bin/install -c -m 644 gvfs-smb.convert gvfs-dns-sd.convert '/home/yuri/build/gvfs/pkg/gvfs/usr/share/GConf/gsettings'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/mounts'
    /usr/bin/install -c -m 644 sftp.mount ftp.mount trash.mount computer.mount burn.mount localtest.mount network.mount recent.mount http.mount dav.mount dav+sd.mount smb.mount smb-browse.mount cdda.mount gphoto2.mount mtp.mount dns-sd.mount archive.mount afc.mount afp-browse.mount afp.mount '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/mounts'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 gvfs-daemon.service '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    if test -n "org.gnome.system.smb.gschema.xml org.gnome.system.dns_sd.gschema.xml org.gnome.system.gvfs.enums.xml"; then \
    test -z "/usr/share/glib-2.0/schemas" || /usr/bin/mkdir -p "/home/yuri/build/gvfs/pkg/gvfs/usr/share/glib-2.0/schemas"; \
    /usr/bin/install -c -m 644 org.gnome.system.smb.gschema.xml org.gnome.system.dns_sd.gschema.xml org.gnome.system.gvfs.enums.xml "/home/yuri/build/gvfs/pkg/gvfs/usr/share/glib-2.0/schemas"; \
    test -n "/home/yuri/build/gvfs/pkg/gvfs" || glib-compile-schemas /usr/share/glib-2.0/schemas; \
    fi
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/daemon'
    Making install in monitor
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making install in proxy
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make install-am
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[4]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[4]: Nothing to be done for 'install-exec-am'.
    mkdir -p /home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/remote-volume-monitors
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c libgioremote-volume-monitor.la '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules'
    libtool: warning: relinking 'libgioremote-volume-monitor.la'
    libtool: install: (cd /home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy; /bin/sh "/home/yuri/build/gvfs/src/gvfs-1.22.2/libtool" --silent --tag CC --mode=relink gcc -DG_LOG_DOMAIN=\"GVFS-RemoteVolumeMonitor\" -I../../common -pthread -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DGIO_MODULE_DIR=\"\" -DREMOTE_VOLUME_MONITORS_DIR=\"/usr/share/gvfs/remote-volume-monitors\" -DGVFS_LOCALEDIR=\"/usr/share/locale\" -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -export_dynamic -avoid-version -module -no-undefined -export-symbols-regex "^g_io_module_(load|unload|query)" -Wl,-O1,--sort-common,--as-needed,-z,relro -o libgioremote-volume-monitor.la -rpath /usr/lib/gio/modules libgioremote_volume_monitor_la-remote-volume-monitor-module.lo libgioremote_volume_monitor_la-gproxydrive.lo libgioremote_volume_monitor_la-gproxyvolume.lo libgioremote_volume_monitor_la-gproxymount.lo libgioremote_volume_monitor_la-gproxyshadowmount.lo libgioremote_volume_monitor_la-gproxyvolumemonitor.lo libgioremote_volume_monitor_la-gproxymountoperation.lo libgioremote_volume_monitor_la-gvfsvolumemonitordbus.lo -lgmodule-2.0 -pthread -lgio-2.0 -lgobject-2.0 -lglib-2.0 ../../common/libgvfscommon.la -lutil -inst-prefix-dir /home/yuri/build/gvfs/pkg/gvfs)
    libtool: install: /usr/bin/install -c .libs/libgioremote-volume-monitor.soT /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgioremote-volume-monitor.so
    libtool: install: /usr/bin/install -c .libs/libgioremote-volume-monitor.lai /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gio/modules/libgioremote-volume-monitor.la
    libtool: warning: remember to run 'libtool --finish /usr/lib/gio/modules'
    make[4]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/proxy'
    Making install in udisks2
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-udisks2-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-udisks2-volume-monitor /home/yuri/build/gvfs/pkg/gvfs/usr/lib/gvfs/gvfs-udisks2-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 udisks2.monitor '/home/yuri/build/gvfs/pkg/gvfs/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.UDisks2VolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs/usr/share/dbus-1/services'
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/udisks2'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[3]: Nothing to be done for 'install-exec-am'.
    make[3]: Nothing to be done for 'install-data-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor'
    Making install in po
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    linguas="af ar as ast be be@latin bg bn bn_IN ca ca@valencia cs da de el en_GB en@shaw eo es eu et fa fi fr ga gl gu he hu hi id it ja kk kn ko ku lt lv mai mk ml mr nb nds nl nn or pa pl pt pt_BR ro ru sk sl sq sr sr@latin sv ta te tg th tr ug uk vi zh_CN zh_HK zh_TW "; \
    for lang in $linguas; do \
    dir=/home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/$lang/LC_MESSAGES; \
    /bin/sh /home/yuri/build/gvfs/src/gvfs-1.22.2/install-sh -d $dir; \
    if test -r $lang.gmo; then \
    /usr/bin/install -c -m 644 $lang.gmo $dir/gvfs.mo; \
    echo "installing $lang.gmo as $dir/gvfs.mo"; \
    else \
    /usr/bin/install -c -m 644 ./$lang.gmo $dir/gvfs.mo; \
    echo "installing ./$lang.gmo as" \
    "$dir/gvfs.mo"; \
    fi; \
    if test -r $lang.gmo.m; then \
    /usr/bin/install -c -m 644 $lang.gmo.m $dir/gvfs.mo.m; \
    echo "installing $lang.gmo.m as $dir/gvfs.mo.m"; \
    else \
    if test -r ./$lang.gmo.m ; then \
    /usr/bin/install -c -m 644 ./$lang.gmo.m \
    $dir/gvfs.mo.m; \
    echo "installing ./$lang.gmo.m as" \
    "$dir/gvfs.mo.m"; \
    else \
    true; \
    fi; \
    fi; \
    done
    installing af.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/af/LC_MESSAGES/gvfs.mo
    installing ar.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ar/LC_MESSAGES/gvfs.mo
    installing as.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/as/LC_MESSAGES/gvfs.mo
    installing ast.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ast/LC_MESSAGES/gvfs.mo
    installing be.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/be/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/be@latin/LC_MESSAGES/gvfs.mo
    installing bg.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/bg/LC_MESSAGES/gvfs.mo
    installing bn.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/bn/LC_MESSAGES/gvfs.mo
    installing bn_IN.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/bn_IN/LC_MESSAGES/gvfs.mo
    installing ca.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ca/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ca@valencia/LC_MESSAGES/gvfs.mo
    installing cs.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/cs/LC_MESSAGES/gvfs.mo
    installing da.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/da/LC_MESSAGES/gvfs.mo
    installing de.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/de/LC_MESSAGES/gvfs.mo
    installing el.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/el/LC_MESSAGES/gvfs.mo
    installing en_GB.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/en_GB/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/en@shaw/LC_MESSAGES/gvfs.mo
    installing eo.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/eo/LC_MESSAGES/gvfs.mo
    installing es.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/es/LC_MESSAGES/gvfs.mo
    installing eu.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/eu/LC_MESSAGES/gvfs.mo
    installing et.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/et/LC_MESSAGES/gvfs.mo
    installing fa.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/fa/LC_MESSAGES/gvfs.mo
    installing fi.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/fi/LC_MESSAGES/gvfs.mo
    installing fr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/fr/LC_MESSAGES/gvfs.mo
    installing ga.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ga/LC_MESSAGES/gvfs.mo
    installing gl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/gl/LC_MESSAGES/gvfs.mo
    installing gu.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/gu/LC_MESSAGES/gvfs.mo
    installing he.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/he/LC_MESSAGES/gvfs.mo
    installing hu.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/hu/LC_MESSAGES/gvfs.mo
    installing hi.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/hi/LC_MESSAGES/gvfs.mo
    installing id.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/id/LC_MESSAGES/gvfs.mo
    installing it.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/it/LC_MESSAGES/gvfs.mo
    installing ja.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ja/LC_MESSAGES/gvfs.mo
    installing kk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/kk/LC_MESSAGES/gvfs.mo
    installing kn.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/kn/LC_MESSAGES/gvfs.mo
    installing ko.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ko/LC_MESSAGES/gvfs.mo
    installing ku.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ku/LC_MESSAGES/gvfs.mo
    installing lt.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/lt/LC_MESSAGES/gvfs.mo
    installing lv.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/lv/LC_MESSAGES/gvfs.mo
    installing mai.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/mai/LC_MESSAGES/gvfs.mo
    installing mk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/mk/LC_MESSAGES/gvfs.mo
    installing ml.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ml/LC_MESSAGES/gvfs.mo
    installing mr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/mr/LC_MESSAGES/gvfs.mo
    installing nb.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nb/LC_MESSAGES/gvfs.mo
    installing nds.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nds/LC_MESSAGES/gvfs.mo
    installing nl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nl/LC_MESSAGES/gvfs.mo
    installing nn.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/nn/LC_MESSAGES/gvfs.mo
    installing or.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/or/LC_MESSAGES/gvfs.mo
    installing pa.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pa/LC_MESSAGES/gvfs.mo
    installing pl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pl/LC_MESSAGES/gvfs.mo
    installing pt.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pt/LC_MESSAGES/gvfs.mo
    installing pt_BR.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/pt_BR/LC_MESSAGES/gvfs.mo
    installing ro.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ro/LC_MESSAGES/gvfs.mo
    installing ru.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ru/LC_MESSAGES/gvfs.mo
    installing sk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sk/LC_MESSAGES/gvfs.mo
    installing sl.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sl/LC_MESSAGES/gvfs.mo
    installing sq.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sq/LC_MESSAGES/gvfs.mo
    installing sr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sr/LC_MESSAGES/gvfs.mo
    installing [email protected] as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sr@latin/LC_MESSAGES/gvfs.mo
    installing sv.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/sv/LC_MESSAGES/gvfs.mo
    installing ta.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ta/LC_MESSAGES/gvfs.mo
    installing te.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/te/LC_MESSAGES/gvfs.mo
    installing tg.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/tg/LC_MESSAGES/gvfs.mo
    installing th.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/th/LC_MESSAGES/gvfs.mo
    installing tr.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/tr/LC_MESSAGES/gvfs.mo
    installing ug.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/ug/LC_MESSAGES/gvfs.mo
    installing uk.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/uk/LC_MESSAGES/gvfs.mo
    installing vi.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/vi/LC_MESSAGES/gvfs.mo
    installing zh_CN.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/zh_CN/LC_MESSAGES/gvfs.mo
    installing zh_HK.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/zh_HK/LC_MESSAGES/gvfs.mo
    installing zh_TW.gmo as /home/yuri/build/gvfs/pkg/gvfs/usr/share/locale/zh_TW/LC_MESSAGES/gvfs.mo
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/po'
    Making install in programs
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    /bin/sh ../libtool --mode=install /usr/bin/install -c gvfs-mount gvfs-cat gvfs-open gvfs-save gvfs-ls gvfs-tree gvfs-info gvfs-set-attribute gvfs-trash gvfs-rename gvfs-rm gvfs-copy gvfs-move gvfs-monitor-file gvfs-monitor-dir gvfs-mkdir gvfs-mime '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    libtool: install: /usr/bin/install -c gvfs-mount /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-mount
    libtool: install: /usr/bin/install -c gvfs-cat /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-cat
    libtool: install: /usr/bin/install -c gvfs-open /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-open
    libtool: install: /usr/bin/install -c gvfs-save /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-save
    libtool: install: /usr/bin/install -c gvfs-ls /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-ls
    libtool: install: /usr/bin/install -c gvfs-tree /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-tree
    libtool: install: /usr/bin/install -c gvfs-info /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-info
    libtool: install: /usr/bin/install -c gvfs-set-attribute /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-set-attribute
    libtool: install: /usr/bin/install -c gvfs-trash /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-trash
    libtool: install: /usr/bin/install -c gvfs-rename /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-rename
    libtool: install: /usr/bin/install -c gvfs-rm /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-rm
    libtool: install: /usr/bin/install -c gvfs-copy /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-copy
    libtool: install: /usr/bin/install -c gvfs-move /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-move
    libtool: install: /usr/bin/install -c gvfs-monitor-file /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-monitor-file
    libtool: install: /usr/bin/install -c gvfs-monitor-dir /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-monitor-dir
    libtool: install: /usr/bin/install -c gvfs-mkdir /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-mkdir
    libtool: install: /usr/bin/install -c gvfs-mime /home/yuri/build/gvfs/pkg/gvfs/usr/bin/gvfs-mime
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    /usr/bin/install -c gvfs-less '/home/yuri/build/gvfs/pkg/gvfs/usr/bin'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/bash-completion/completions'
    /usr/bin/install -c -m 644 completion/gvfs '/home/yuri/build/gvfs/pkg/gvfs/usr/share/bash-completion/completions'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/programs'
    Making install in test
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make install-am
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'
    make[3]: Nothing to be done for 'install-exec-am'.
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/test'
    Making install in man
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[2]: Nothing to be done for 'install-exec-am'.
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man1'
    /usr/bin/install -c -m 644 gvfs-cat.1 gvfs-copy.1 gvfs-info.1 gvfs-ls.1 gvfs-less.1 gvfs-mime.1 gvfs-mkdir.1 gvfs-monitor-dir.1 gvfs-monitor-file.1 gvfs-mount.1 gvfs-move.1 gvfs-open.1 gvfs-rename.1 gvfs-rm.1 gvfs-save.1 gvfs-set-attribute.1 gvfs-trash.1 gvfs-tree.1 gvfsd.1 gvfsd-fuse.1 gvfsd-metadata.1 '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man1'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man7'
    /usr/bin/install -c -m 644 gvfs.7 '/home/yuri/build/gvfs/pkg/gvfs/usr/share/man/man7'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/man'
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Nothing to be done for 'install-exec-am'.
    make install-data-hook
    make[3]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    if test -z "/home/yuri/build/gvfs/pkg/gvfs" -a "/usr/bin/gio-querymodules" != "no" ; then \
    /usr/bin/gio-querymodules /usr/lib/gio/modules ; \
    fi
    make[3]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-smb()...
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-smb"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-afc()...
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-afc-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-afc-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-afc/usr/lib/gvfs/gvfs-afc-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 afc.monitor '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.AfcVolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-afc/usr/share/dbus-1/services'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/afc'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-afc"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-afp()...
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-afp"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-gphoto2()...
    make install-am
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make[2]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-gphoto2-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-gphoto2-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/lib/gvfs/gvfs-gphoto2-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 gphoto2.monitor '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.GPhoto2VolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-gphoto2/usr/share/dbus-1/services'
    make[2]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/gphoto2'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-gphoto2"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-goa()...
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-goa-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-goa-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-goa/usr/lib/gvfs/gvfs-goa-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 goa.monitor '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.GoaVolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-goa/usr/share/dbus-1/services'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/goa'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-goa"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Starting package_gvfs-mtp()...
    make[1]: Entering directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/lib/gvfs'
    /bin/sh ../../libtool --mode=install /usr/bin/install -c gvfs-mtp-volume-monitor '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/lib/gvfs'
    libtool: warning: '../../common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: warning: '/home/yuri/build/gvfs/src/gvfs-1.22.2/common/libgvfscommon.la' has not been installed in '/usr/lib/gvfs'
    libtool: install: /usr/bin/install -c .libs/gvfs-mtp-volume-monitor /home/yuri/build/gvfs/pkg/gvfs-mtp/usr/lib/gvfs/gvfs-mtp-volume-monitor
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/install -c -m 644 mtp.monitor '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/gvfs/remote-volume-monitors'
    /usr/bin/mkdir -p '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/dbus-1/services'
    /usr/bin/install -c -m 644 org.gtk.Private.MTPVolumeMonitor.service '/home/yuri/build/gvfs/pkg/gvfs-mtp/usr/share/dbus-1/services'
    make[1]: Leaving directory '/home/yuri/build/gvfs/src/gvfs-1.22.2/monitor/mtp'
    ==> Tidying install...
    -> Purging unwanted files...
    -> Removing libtool files...
    -> Removing static library files...
    -> Compressing man and info pages...
    -> Stripping unneeded symbols from binaries and libraries...
    ==> Creating package "gvfs-mtp"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Leaving fakeroot environment.
    ==> Finished making: gvfs 1.22.2-4 (Mon Jan 19 12:57:55 EET 2015)
    What is this supposed to mean? Should I ignore it?

    On closer inspection, there are many more warnings there. Like:
    libtool: warning: remember to run 'libtool --finish /usr/lib/gvfs'
    libtool: warning: relinking 'libgvfsdbus.la'
    Makefile:1475: warning: overriding recipe for target 'check'
    Makefile:1295: warning: ignoring old recipe for target 'check'

  • [SOLVED] Error occured compiling mate-desktop

    Im installing it from AUR (yaourt) and it's dependencie for (whole) mate-desktop-environment:
    ==> mate-desktop-environment dependencies:
    - mate-common (already installed)
    - mate-doc-utils (already installed)
    - mate-corba (already installed)
    - mate-conf (already installed)
    - libmatecomponent (already installed)
    - mate-mime-data (already installed)
    - mate-vfs (already installed)
    - libmate (already installed)
    - libmatecanvas (already installed)
    - libmatecomponentui (already installed)
    - libmatekbd (already installed)
    - libmatekeyring (already installed)
    - mate-keyring (already installed)
    - libmateui (already installed)
    - libmatenotify (already installed)
    - mate-icon-theme (already installed)
    - mate-doc-utils (already installed)
    - libmateweather (already installed)
    - mate-backgrounds (already installed)
    - mate-desktop (building from AUR)
    - mate-settings-daemon (building from AUR)
    - mate-polkit (building from AUR)
    - mate-session-manager (building from AUR)
    - mate-dialogs (building from AUR)
    - mate-desktop (building from AUR)
    - mate-control-center (building from AUR)
    - mate-panel (building from AUR)
    - mate-file-manager (building from AUR)
    - mate-window-manager (building from AUR)
    - mate-notification-daemon (building from AUR)
    Here is the build output:
    ==> Continue building mate-desktop ? [Y/n]
    ==> --------------------------------------
    ==>
    ==> Building and installing package
    ==> Determining latest git revision...
    -> Version found: 20120425
    ==> Making package: mate-desktop 20120425-1 (Wed Apr 25 03:59:45 CEST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    ==> Extracting Sources...
    ==> Starting build()...
    ==> Connecting to GIT server....
    Cloning into 'mate-desktop'...
    remote: Counting objects: 545, done.
    remote: Compressing objects: 100% (241/241), done.
    remote: Total 545 (delta 290), reused 501 (delta 246)
    Receiving objects: 100% (545/545), 1.26 MiB | 119 KiB/s, done.
    Resolving deltas: 100% (290/290), done.
    ==> GIT checkout done or server timeout
    ==> Starting build...
    Cloning into '/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build'...
    done.
    /usr/bin/mate-autogen
    checking for autoconf >= 2.53...
    testing autoconf2.50... not found.
    testing autoconf... found 2.68
    checking for automake >= 1.9...
    testing automake-1.11... found 1.11.5
    checking for libtool >= 1.4.3...
    testing libtoolize... found 2.4.2
    checking for glib-gettext >= 2.2.0...
    testing glib-gettextize... found 2.30.2
    checking for intltool >= 0.25...
    testing intltoolize... found 0.50.2
    checking for pkg-config >= 0.14.0...
    testing pkg-config... found 0.26
    checking for gtk-doc >= 1.0...
    testing gtkdocize... found 1.18
    checking for mate-doc-utils >= 1.1.0...
    testing mate-doc-prepare... found 1.2.1
    checking for mate-common >= 1.1.0...
    testing mate-doc-common... found 1.2.1
    Checking for required M4 macros...
    Checking for forbidden M4 macros...
    Processing ./configure.in
    Running libtoolize...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./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'
    Running glib-gettextize... Ignore non-fatal messages.
    Copying file mkinstalldirs
    Copying file po/Makefile.in.in
    Please add the files
    codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
    progtest.m4
    from the /aclocal directory to your autoconf macro directory
    or directly to your aclocal.m4 file.
    You will also need config.guess and config.sub, which you can get from
    ftp://ftp.gnu.org/pub/gnu/config/.
    Running intltoolize...
    Running gtkdocize...
    Running mate-doc-common...
    Running mate-doc-prepare...
    You should add the contents of '/usr/share/aclocal/mate-doc-utils.m4' to 'aclocal.m4'.
    Putting files in AC_CONFIG_MACRO_DIR, 'm4'.
    Running aclocal-1.11...
    Running autoconf...
    Running autoheader...
    Running automake-1.11...
    configure.in:38: installing `./config.guess'
    configure.in:38: installing `./config.sub'
    configure.in:10: installing `./install-sh'
    configure.in:10: installing `./missing'
    libmate-desktop/Makefile.am: installing `./depcomp'
    Running ./configure --enable-maintainer-mode --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static --disable-scrollkeeper --disable-startup-notification --enable-unique --disable-nyancat ...
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking how to create a ustar tar archive... gnutar
    checking whether make supports nested variables... yes
    checking whether to enable maintainer-specific portions of Makefiles... yes
    checking whether NLS is requested... yes
    checking for style of include used by make... 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 dependency style of gcc... gcc3
    checking for intltool >= 0.40.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.14.2
    checking for XML::Parser... ok
    checking for library containing strerror... none required
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking how to run the C preprocessor... gcc -E
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for ANSI C header files... yes
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... /bin/sed
    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 i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop
    checking how to convert i686-pc-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... dlltool
    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 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) 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 whether gcc understands -Wno-sign-compare... yes
    checking what warning flags to pass to the C compiler... -Wall -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wno-sign-compare
    checking what language compliance flags to pass to the C compiler...
    checking which gtk+ version to compile against... 2.0
    checking Startup notification library >= 0.5... yes
    Building without libstartup-notification
    checking for X... libraries , headers
    checking for XLIB... yes
    checking for xrandr... yes
    checking for MATE_DESKTOP... yes
    checking for python... /usr/bin/python
    checking for python version... 3.2
    checking for python platform... linux2
    checking for python script directory... ${prefix}/lib/python3.2/site-packages
    checking for python extension module directory... ${exec_prefix}/lib/python3.2/site-packages
    checking for MATE_ABOUT... yes
    checking mate-doc-utils >= 0.3.2... yes
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for LC_MESSAGES... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking for ngettext in libc... yes
    checking for dgettext in libc... yes
    checking for bind_textdomain_codeset... yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for UNIQUE... yes
    checking for mawk... no
    checking for gawk... /usr/bin/gawk
    checking for perl5... no
    checking for perl... /usr/bin/perl
    checking for gtkdoc-check... /usr/bin/gtkdoc-check
    checking for gtkdoc-rebase... /usr/bin/gtkdoc-rebase
    checking for gtkdoc-mkpdf... /usr/bin/gtkdoc-mkpdf
    checking whether to build gtk-doc documentation... no
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating mate-about/Makefile
    config.status: creating mate-about/mate-about.desktop.in
    config.status: creating libmate-desktop/Makefile
    config.status: creating libmate-desktop/libmate/Makefile
    config.status: creating libmate-desktop/libmateui/Makefile
    config.status: creating libmate-desktop/mate-desktop-2.0.pc
    config.status: creating libmate-desktop/mate-desktop-2.0-uninstalled.pc
    config.status: creating docs/Makefile
    config.status: creating docs/reference/Makefile
    config.status: creating docs/reference/mate-desktop/Makefile
    config.status: creating mate-version.xml.in
    config.status: creating po/Makefile.in
    config.status: creating desktop-docs/Makefile
    config.status: creating desktop-docs/fdl/Makefile
    config.status: creating desktop-docs/gpl/Makefile
    config.status: creating desktop-docs/lgpl/Makefile
    config.status: creating man/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    config.status: executing default-1 commands
    config.status: executing po/stamp-it commands
    mate-desktop 1.2.0 ==================
    prefix: /usr
    exec_prefix: ${prefix}
    libdir: ${exec_prefix}/lib
    bindir: ${exec_prefix}/bin
    sbindir: ${exec_prefix}/sbin
    sysconfdir: /etc
    localstatedir: /var
    datadir: ${datarootdir}
    source code location: .
    compiler: gcc
    cflags: -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2
    Maintainer mode: yes
    Warn about deprecations: yes
    Gtk+ version: 2.0
    Build mate-about: yes
    Use libunique: yes
    Build desktop-wide docs: yes
    Use external pnp.ids: no (internal)
    Startup notification support: no
    XRandr support: yes
    Build gtk-doc documentation: no
    Now type `make' to compile mate-desktop
    make all-recursive
    make[1]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build'
    Making all in po
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/po'
    MSGFMT af.gmo
    MSGFMT am.gmo
    MSGFMT an.gmo
    MSGFMT ar.gmo
    MSGFMT as.gmo
    MSGFMT ast.gmo
    MSGFMT az.gmo
    MSGFMT be.gmo
    MSGFMT [email protected]
    MSGFMT bg.gmo
    MSGFMT bn.gmo
    MSGFMT bn_IN.gmo
    MSGFMT br.gmo
    MSGFMT bs.gmo
    MSGFMT ca.gmo
    MSGFMT [email protected]
    MSGFMT crh.gmo
    MSGFMT cs.gmo
    MSGFMT cy.gmo
    MSGFMT da.gmo
    MSGFMT de.gmo
    MSGFMT dz.gmo
    MSGFMT el.gmo
    MSGFMT en_CA.gmo
    MSGFMT en_GB.gmo
    MSGFMT [email protected]
    MSGFMT eo.gmo
    MSGFMT es.gmo
    MSGFMT et.gmo
    MSGFMT eu.gmo
    MSGFMT fa.gmo
    MSGFMT fi.gmo
    MSGFMT fr.gmo
    MSGFMT fur.gmo
    MSGFMT ga.gmo
    MSGFMT gl.gmo
    MSGFMT gu.gmo
    MSGFMT he.gmo
    MSGFMT hi.gmo
    MSGFMT hr.gmo
    MSGFMT hu.gmo
    MSGFMT hy.gmo
    MSGFMT ia.gmo
    MSGFMT id.gmo
    MSGFMT ig.gmo
    MSGFMT is.gmo
    MSGFMT it.gmo
    MSGFMT ja.gmo
    MSGFMT ka.gmo
    MSGFMT kk.gmo
    MSGFMT kn.gmo
    MSGFMT ko.gmo
    MSGFMT ku.gmo
    MSGFMT ky.gmo
    MSGFMT li.gmo
    MSGFMT lo.gmo
    MSGFMT lt.gmo
    MSGFMT lv.gmo
    MSGFMT mai.gmo
    MSGFMT mg.gmo
    MSGFMT mi.gmo
    MSGFMT mk.gmo
    MSGFMT ml.gmo
    MSGFMT mn.gmo
    MSGFMT mr.gmo
    MSGFMT ms.gmo
    MSGFMT nb.gmo
    MSGFMT nds.gmo
    MSGFMT ne.gmo
    MSGFMT nl.gmo
    MSGFMT nn.gmo
    MSGFMT nso.gmo
    MSGFMT oc.gmo
    MSGFMT or.gmo
    MSGFMT pa.gmo
    MSGFMT pl.gmo
    MSGFMT ps.gmo
    MSGFMT pt.gmo
    MSGFMT pt_BR.gmo
    MSGFMT ro.gmo
    MSGFMT ru.gmo
    MSGFMT rw.gmo
    MSGFMT si.gmo
    MSGFMT sk.gmo
    MSGFMT sl.gmo
    MSGFMT sq.gmo
    MSGFMT sr.gmo
    MSGFMT [email protected]
    MSGFMT sv.gmo
    MSGFMT ta.gmo
    MSGFMT te.gmo
    MSGFMT th.gmo
    MSGFMT tk.gmo
    MSGFMT tr.gmo
    MSGFMT ug.gmo
    MSGFMT uk.gmo
    MSGFMT ur.gmo
    MSGFMT uz.gmo
    MSGFMT [email protected]
    MSGFMT vi.gmo
    MSGFMT wa.gmo
    MSGFMT xh.gmo
    MSGFMT yi.gmo
    MSGFMT yo.gmo
    MSGFMT zh_CN.gmo
    MSGFMT zh_HK.gmo
    MSGFMT zh_TW.gmo
    MSGFMT zu.gmo
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/po'
    Making all in libmate-desktop
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop'
    Making all in libmate
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop/libmate'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop/libmate'
    Making all in libmateui
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop/libmateui'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop/libmateui'
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop'
    CC mate-desktop-item.lo
    CC mate-desktop-utils.lo
    CC mate-desktop-thumbnail.lo
    mate-desktop-thumbnail.c: In function 'mimetype_supported_by_gdk_pixbuf':
    mate-desktop-thumbnail.c:622:3: warning: passing argument 2 of 'g_hash_table_new_full' from incompatible pointer type [enabled by default]
    In file included from /usr/include/glib-2.0/glib.h:50:0,
    from mate-desktop-thumbnail.c:36:
    /usr/include/glib-2.0/glib/ghash.h:62:13: note: expected 'GEqualFunc' but argument is of type 'gboolean (*)(const gchar *, const gchar *)'
    CC mate-thumbnail-pixbuf-utils.lo
    CC mate-bg.lo
    mate-bg.c: In function 'pixbuf_draw_gradient':
    mate-bg.c:2402:10: warning: variable 'dst_limit' set but not used [-Wunused-but-set-variable]
    CC mate-bg-crossfade.lo
    mate-bg-crossfade.c: In function 'draw_background':
    mate-bg-crossfade.c:402:3: warning: implicit declaration of function 'gdk_drawable_get_display' [-Wimplicit-function-declaration]
    mate-bg-crossfade.c:402:3: warning: nested extern declaration of 'gdk_drawable_get_display' [-Wnested-externs]
    mate-bg-crossfade.c:402:11: warning: assignment makes pointer from integer without a cast [enabled by default]
    mate-bg-crossfade.c:401:15: warning: variable 'display' set but not used [-Wunused-but-set-variable]
    CC display-name.lo
    CC mate-rr.lo
    CC mate-rr-config.lo
    CC mate-rr-labeler.lo
    CC edid-parse.lo
    CCLD libmate-desktop-2.la
    CC test-ditem.o
    test-ditem.c: In function 'test_ditem':
    test-ditem.c:93:9: warning: ignoring return value of 'getcwd', declared with attribute warn_unused_result [-Wunused-result]
    CCLD test-ditem
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop'
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/libmate-desktop'
    Making all in docs
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs'
    Making all in reference
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference'
    Making all in mate-desktop
    make[4]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference/mate-desktop'
    make[4]: Nothing to be done for `all'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference/mate-desktop'
    make[4]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference'
    make[4]: Nothing to be done for `all-am'.
    make[4]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference'
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs/reference'
    make[3]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs'
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/docs'
    Making all in man
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/man'
    make[2]: Nothing to be done for `all'.
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/man'
    Making all in mate-about
    make[2]: Entering directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/mate-about'
    CC mate_about-mate-about.o
    In file included from mate-about.c:24:0:
    mate-about.h:63:3: error: initializer element is not constant
    mate-about.h:63:3: error: (near initialization for 'comments_array[0]')
    mate-about.h:66:3: error: initializer element is not constant
    mate-about.h:66:3: error: (near initialization for 'comments_array[1]')
    mate-about.h:69:3: error: initializer element is not constant
    mate-about.h:69:3: error: (near initialization for 'comments_array[2]')
    mate-about.h:73:3: error: initializer element is not constant
    mate-about.h:73:3: error: (near initialization for 'comments_array[3]')
    mate-about.h:76:3: error: initializer element is not constant
    mate-about.h:76:3: error: (near initialization for 'comments_array[4]')
    mate-about.h:81:2: error: initializer element is not constant
    mate-about.h:81:2: error: (near initialization for 'comments_array[5]')
    make[2]: *** [mate_about-mate-about.o] Error 1
    make[2]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build/mate-about'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/tmp/yaourt-tmp-broi/aur-mate-desktop/src/mate-desktop-build'
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build mate-desktop.
    ==> Restart building mate-desktop ? [y/N]
    ==> --
    Thanks
    Last edited by broi (2012-04-25 11:31:17)

    trusktr wrote:
    Hey, I didn't really take a look at your errors, but... Have you tried the mate-desktop.org repo? There's no need to compile anything if you install from there. Just add
    [mate]
    Server = http://packages.mate-desktop.org/repo/archlinux/$arch
    to /etc/pacman.conf then do 'pacman -S mate' for a basic install, or 'pacman -S mate mate-extra mate-extras' for a full install.
    Thanks bro, it works now!

  • 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

  • [SOLVED] configure: error: cannot run C compiled programs

    I'm trying to build lib32-libxkbcommon 0.5.0-1 from AUR with makepkg. I already tried installing pacman (setting the default makepkg.conf) and multilib-devel with no luck.
    makepkg messages:
    ==> Making package: lib32-libxkbcommon 0.5.0-1 (Mon May 11 00:17:05 EEST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found libxkbcommon-0.5.0.tar.xz
    ==> Validating source files with sha256sums...
    libxkbcommon-0.5.0.tar.xz ... Passed
    ==> Extracting sources...
    -> Extracting libxkbcommon-0.5.0.tar.xz with bsdtar
    bsdtar: Failed to set default locale
    ==> Starting prepare()...
    ==> Removing existing $pkgdir/ directory...
    ==> Starting build()...
    checking for a BSD-compatible install... /usr/bin/install -c
    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 to enable maintainer-specific portions of Makefiles... yes
    checking for style of include used by make... GNU
    checking for gcc... gcc -m32
    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... configure: error: in `/mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0':
    configure: error: cannot run C compiled programs.
    If you meant to cross compile, use `--host'.
    See `config.log' for more details
    ==> ERROR: A failure occurred in build().
    Aborting...
    makepkg.conf:
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
    'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
    'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
    'rsync::/usr/bin/rsync --no-motd -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/wget
    #-- The package required by makepkg to download VCS sources
    # Format: 'protocol::package'
    VCSCLIENTS=('bzr::bzr'
    'git::git'
    'hg::mercurial'
    'svn::subversion')
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    #-- Compiler and Linker Flags
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CPPFLAGS="-D_FORTIFY_SOURCE=2"
    CFLAGS="-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4"
    CXXFLAGS="${CFLAGS}"
    LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
    #-- Make Flags: change this for DistCC/SMP systems
    MAKEFLAGS="-j5"
    #-- Debugging flags
    DEBUG_CFLAGS="-g -fvar-tracking-assignments"
    DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(!distcc color !ccache check !sign)
    # A negated environment option will do the opposite of the comments below.
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    #-- check: Run the check() function if present in the PKGBUILD
    #-- sign: Generate PGP signature file
    BUILDENV=(!distcc color !ccache check !sign)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    #-- Specify a directory for package building.
    #BUILDDIR=/tmp/makepkg
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- staticlibs: Leave static library (.a) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    #-- upx: Compress binary executable files using UPX
    #-- debug: Add debugging flags as specified in DEBUG_* variables
    OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Options to be used when stripping binaries. See `man strip' for details.
    STRIP_BINARIES="--strip-all"
    #-- Options to be used when stripping shared libraries. See `man strip' for details.
    STRIP_SHARED="--strip-unneeded"
    #-- Options to be used when stripping static libraries. See `man strip' for details.
    STRIP_STATIC="--strip-debug"
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Source packages: specify a fixed directory where all src packages will be placed
    #SRCPKGDEST=/home/srcpackages
    #-- Log files: specify a fixed directory where all log files will be placed
    #LOGDEST=/home/makepkglogs
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    #-- Specify a key to use for package signing
    #GPGKEY=""
    # COMPRESSION DEFAULTS
    COMPRESSGZ=(gzip -c -f -n)
    COMPRESSBZ2=(bzip2 -c -f)
    COMPRESSXZ=(xz -c -z -)
    COMPRESSLRZ=(lrzip -q)
    COMPRESSLZO=(lzop -q)
    COMPRESSZ=(compress -c -f)
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.xz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:
    config.log:
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
    It was created by libxkbcommon configure 0.5.0, which was
    generated by GNU Autoconf 2.69. Invocation command line was
    $ ./configure --prefix=/usr --libdir=/usr/lib32 --disable-docs --disable-static
    ## Platform. ##
    hostname = Arch
    uname -m = x86_64
    uname -r = 4.0.1-1-ARCH
    uname -s = Linux
    uname -v = #1 SMP PREEMPT Wed Apr 29 12:00:26 CEST 2015
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = unknown
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /usr/local/sbin
    PATH: /usr/local/bin
    PATH: /usr/bin
    PATH: /usr/lib/jvm/default/bin
    PATH: /usr/bin/site_perl
    PATH: /usr/bin/vendor_perl
    PATH: /usr/bin/core_perl
    ## Core tests. ##
    configure:2424: checking for a BSD-compatible install
    configure:2492: result: /usr/bin/install -c
    configure:2503: checking whether build environment is sane
    configure:2558: result: yes
    configure:2709: checking for a thread-safe mkdir -p
    configure:2748: result: /usr/bin/mkdir -p
    configure:2755: checking for gawk
    configure:2771: found /usr/bin/gawk
    configure:2782: result: gawk
    configure:2793: checking whether make sets $(MAKE)
    configure:2815: result: yes
    configure:2844: checking whether make supports nested variables
    configure:2861: result: yes
    configure:2987: checking whether to enable maintainer-specific portions of Makefiles
    configure:2996: result: yes
    configure:3023: checking for style of include used by make
    configure:3051: result: GNU
    configure:3122: checking for gcc
    configure:3149: result: gcc -m32
    configure:3378: checking for C compiler version
    configure:3387: gcc -m32 --version >&5
    gcc (GCC) 5.1.0
    Copyright (C) 2015 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:3398: $? = 0
    configure:3387: gcc -m32 -v >&5
    Using built-in specs.
    COLLECT_GCC=gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/5.1.0/lto-wrapper
    Target: x86_64-unknown-linux-gnu
    Configured with: /build/gcc-multilib/src/gcc-5-20150505/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --with-default-libstdcxx-abi=c++98
    Thread model: posix
    gcc version 5.1.0 (GCC)
    configure:3398: $? = 0
    configure:3387: gcc -m32 -V >&5
    gcc: error: unrecognized command line option '-V'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3398: $? = 1
    configure:3387: gcc -m32 -qversion >&5
    gcc: error: unrecognized command line option '-qversion'
    gcc: fatal error: no input files
    compilation terminated.
    configure:3398: $? = 1
    configure:3418: checking whether the C compiler works
    configure:3440: gcc -m32 -march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro conftest.c >&5
    configure:3444: $? = 0
    configure:3492: result: yes
    configure:3495: checking for C compiler default output file name
    configure:3497: result: a.out
    configure:3503: checking for suffix of executables
    configure:3510: gcc -m32 -o conftest -march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro conftest.c >&5
    configure:3514: $? = 0
    configure:3536: result:
    configure:3558: checking whether we are cross compiling
    configure:3566: gcc -m32 -o conftest -march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -Wl,-O1,--sort-common,--as-needed,-z,relro conftest.c >&5
    In file included from /usr/include/stdio.h:27:0,
    from conftest.c:11:
    /usr/include/features.h:365:25: fatal error: sys/cdefs.h: No such file or directory
    compilation terminated.
    configure:3570: $? = 1
    configure:3577: ./conftest
    ./configure: line 3579: ./conftest: No such file or directory
    configure:3581: $? = 127
    configure:3588: error: in `/mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0':
    configure:3590: error: cannot run C compiled programs.
    If you meant to cross compile, use `--host'.
    See `config.log' for more details
    ## Cache variables. ##
    ac_cv_env_CC_set=set
    ac_cv_env_CC_value='gcc -m32'
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4'
    ac_cv_env_CPPFLAGS_set=set
    ac_cv_env_CPPFLAGS_value=-D_FORTIFY_SOURCE=2
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_DOT_set=
    ac_cv_env_DOT_value=
    ac_cv_env_DOXYGEN_set=
    ac_cv_env_DOXYGEN_value=
    ac_cv_env_LDFLAGS_set=set
    ac_cv_env_LDFLAGS_value=-Wl,-O1,--sort-common,--as-needed,-z,relro
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_PKG_CONFIG_LIBDIR_set=
    ac_cv_env_PKG_CONFIG_LIBDIR_value=
    ac_cv_env_PKG_CONFIG_PATH_set=set
    ac_cv_env_PKG_CONFIG_PATH_value=/usr/lib32/pkgconfig
    ac_cv_env_PKG_CONFIG_set=
    ac_cv_env_PKG_CONFIG_value=
    ac_cv_env_XCB_XKB_CFLAGS_set=
    ac_cv_env_XCB_XKB_CFLAGS_value=
    ac_cv_env_XCB_XKB_LIBS_set=
    ac_cv_env_XCB_XKB_LIBS_value=
    ac_cv_env_XORG_MALLOC_DEBUG_ENV_set=
    ac_cv_env_XORG_MALLOC_DEBUG_ENV_value=
    ac_cv_env_YACC_set=
    ac_cv_env_YACC_value=
    ac_cv_env_YFLAGS_set=
    ac_cv_env_YFLAGS_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_path_install='/usr/bin/install -c'
    ac_cv_path_mkdir=/usr/bin/mkdir
    ac_cv_prog_AWK=gawk
    ac_cv_prog_ac_ct_CC='gcc -m32'
    ac_cv_prog_make_make_set=yes
    am_cv_make_support_nested_variables=yes
    ## Output variables. ##
    ACLOCAL='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing aclocal-1.14'
    ADMIN_MAN_DIR=''
    ADMIN_MAN_SUFFIX=''
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='$${TAR-tar}'
    AM_BACKSLASH='\'
    AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
    AM_DEFAULT_VERBOSITY='1'
    AM_V='$(V)'
    APP_MAN_DIR=''
    APP_MAN_SUFFIX=''
    AR=''
    AUTOCONF='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing autoconf'
    AUTOHEADER='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing autoheader'
    AUTOMAKE='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing automake-1.14'
    AWK='gawk'
    BASE_CFLAGS=''
    BUILD_LINUX_TESTS_FALSE=''
    BUILD_LINUX_TESTS_TRUE=''
    CC='gcc -m32'
    CCDEPMODE=''
    CFLAGS='-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4'
    CHANGELOG_CMD=''
    CPP=''
    CPPFLAGS='-D_FORTIFY_SOURCE=2'
    CWARNFLAGS=''
    CYGPATH_W='echo'
    DEFS=''
    DEPDIR='.deps'
    DLLTOOL=''
    DOT=''
    DOXYGEN=''
    DRIVER_MAN_DIR=''
    DRIVER_MAN_SUFFIX=''
    DSYMUTIL=''
    DUMPBIN=''
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    ENABLE_DOCS_FALSE=''
    ENABLE_DOCS_TRUE=''
    ENABLE_X11_FALSE=''
    ENABLE_X11_TRUE=''
    EXEEXT=''
    FGREP=''
    FILE_MAN_DIR=''
    FILE_MAN_SUFFIX=''
    GREP=''
    HAVE_DOT=''
    HAVE_DOT_FALSE=''
    HAVE_DOT_TRUE=''
    HAVE_DOXYGEN_FALSE=''
    HAVE_DOXYGEN_TRUE=''
    HAVE_NO_UNDEFINED_FALSE=''
    HAVE_NO_UNDEFINED_TRUE=''
    INSTALL_CMD=''
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    LD=''
    LDFLAGS='-Wl,-O1,--sort-common,--as-needed,-z,relro'
    LIBOBJS=''
    LIBS=''
    LIBTOOL=''
    LIB_MAN_DIR=''
    LIB_MAN_SUFFIX=''
    LIPO=''
    LN_S=''
    LTLIBOBJS=''
    MAINT=''
    MAINTAINER_MODE_FALSE='#'
    MAINTAINER_MODE_TRUE=''
    MAKEINFO='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/missing makeinfo'
    MANIFEST_TOOL=''
    MAN_SUBSTS=''
    MISC_MAN_DIR=''
    MISC_MAN_SUFFIX=''
    MKDIR_P='/usr/bin/mkdir -p'
    NM=''
    NMEDIT=''
    OBJDUMP=''
    OBJEXT=''
    OTOOL64=''
    OTOOL=''
    PACKAGE='libxkbcommon'
    PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=libxkbcommon'
    PACKAGE_NAME='libxkbcommon'
    PACKAGE_STRING='libxkbcommon 0.5.0'
    PACKAGE_TARNAME='libxkbcommon'
    PACKAGE_URL='http://xkbcommon.org'
    PACKAGE_VERSION='0.5.0'
    PATH_SEPARATOR=':'
    PKG_CONFIG=''
    PKG_CONFIG_LIBDIR=''
    PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
    RANLIB=''
    RT_LIBS=''
    SED=''
    SET_MAKE=''
    SHELL='/bin/sh'
    STRICT_CFLAGS=''
    STRIP=''
    VERSION='0.5.0'
    XCB_XKB_CFLAGS=''
    XCB_XKB_LIBS=''
    XKBCONFIGROOT=''
    XLOCALEDIR=''
    XORG_MALLOC_DEBUG_ENV=''
    XORG_MAN_PAGE=''
    YACC=''
    YACC_INST=''
    YFLAGS=''
    ac_ct_AR=''
    ac_ct_CC='gcc -m32'
    ac_ct_DUMPBIN=''
    am__EXEEXT_FALSE=''
    am__EXEEXT_TRUE=''
    am__fastdepCC_FALSE=''
    am__fastdepCC_TRUE=''
    am__include='include'
    am__isrc=''
    am__leading_dot='.'
    am__nodep='_no'
    am__quote=''
    am__tar='$${TAR-tar} chof - "$$tardir"'
    am__untar='$${TAR-tar} xf -'
    bindir='${exec_prefix}/bin'
    build=''
    build_alias=''
    build_cpu=''
    build_os=''
    build_vendor=''
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    dvidir='${docdir}'
    exec_prefix='NONE'
    host=''
    host_alias=''
    host_cpu=''
    host_os=''
    host_vendor=''
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh='${SHELL} /mnt/tmp/yaourt-tmp-tsester/aur-lib32-libxkbcommon/src/libxkbcommon-0.5.0/build-aux/install-sh'
    libdir='/usr/lib32'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='${prefix}/var'
    mandir='${datarootdir}/man'
    mkdir_p='$(MKDIR_P)'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='${prefix}/etc'
    target_alias=''
    ## confdefs.h. ##
    /* confdefs.h */
    #define PACKAGE_NAME "libxkbcommon"
    #define PACKAGE_TARNAME "libxkbcommon"
    #define PACKAGE_VERSION "0.5.0"
    #define PACKAGE_STRING "libxkbcommon 0.5.0"
    #define PACKAGE_BUGREPORT "[url]https://bugs.freedesktop.org/enter_bug.cgi?product=libxkbcommon[/url]"
    #define PACKAGE_URL "[url]http://xkbcommon.org[/url]"
    #define PACKAGE "libxkbcommon"
    #define VERSION "0.5.0"
    configure: exit 1
    other info:
    core/pacman 4.2.1-1
    multilib/gcc-multilib 4.9.2-4 (multilib-devel) [installed]
        The GNU Compiler Collection - C and C++ frontends for multilib
    multilib/lib32-fakeroot 1.20.2-1 (multilib-devel) [installed]
        Tool for simulating superuser privileges (32-bit)
    multilib/lib32-libltdl 2.4.5-1 (multilib-devel) [installed]
        A generic library support script (32-bit)
    Last edited by tsester (2015-05-10 22:10:28)

    tsester wrote:P.S.: I recently transfered the linux system between failing disks
    In that case you should probably check that no other packages are missing files with
    pacman -Qkk 2>&1 | grep "No such file or directory"
    Any packages that report that they're missing files, you should reinstall.

  • [SOLVED] ocrfeeder-git PKGBUILD doesn't work

    https://aur.archlinux.org/packages/ocrfeeder-git/
    [pippo@linux ocrfeeder-git]$ makepkg -s
    ==> Creazione del pacchetto: ocrfeeder-git 0.7.11.20.g22218bc-1 (mar 18 nov 2014, 14.32.01, CET)
    ==> Controllo delle dipendenze durante l'avvio in corso...
    ==> Controllo delle dipendenze durante la compilazione in corso...
    ==> Download dei sorgenti in corso...
    -> Clonazione del repository ocrfeeder git in corso...
    Clone nel repository spoglio '/home/pippo/TEMP/ocrfeeder-git/ocrfeeder'...
    remote: Counting objects: 3584, done.
    remote: Compressing objects: 100% (2578/2578), done.
    remote: Total 3584 (delta 2415), reused 1346 (delta 936)
    Ricezione degli oggetti: 100% (3584/3584), 1.71 MiB | 510.00 KiB/s, done.
    Risoluzione dei delta: 100% (2415/2415), done.
    Checking connectivity... fatto.
    ==> Validazione dei sorgenti con sha512sums in corso...
    ocrfeeder ... Ignorato
    ==> Estrazione dei sorgenti in corso...
    -> Creazione di una copia di lavoro del repository ocrfeeder git in corso...
    Cloning into 'ocrfeeder'...
    fatto.
    ==> Avvio di pkgver() in corso...
    ==> Versione aggiornata: ocrfeeder-git 0.8-1
    ==> Avvio di build() in corso...
    /usr/bin/gnome-autogen.sh
    checking for automake >= 1.11.2...
    testing automake... found 1.14.1
    checking for autoreconf >= 2.53...
    testing autoreconf... found 2.69
    checking for glib-gettext >= 2.2.0...
    testing glib-gettextize... found 2.42.0
    checking for intltool >= 0.25...
    testing intltoolize... found 0.50.2
    checking for gnome-doc-utils >= 0.4.2...
    testing gnome-doc-prepare... found 0.20.10
    Checking for required M4 macros...
    Processing ./configure.ac
    Running glib-gettextize... Ignore non-fatal messages.
    Copying file po/Makefile.in.in
    Please add the files
    codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
    progtest.m4
    from the /usr/share/aclocal directory to your autoconf macro directory
    or directly to your aclocal.m4 file.
    You will also need config.guess and config.sub, which you can get from
    ftp://ftp.gnu.org/pub/gnu/config/.
    Running gnome-doc-prepare...
    You should add the contents of '/usr/share/aclocal/gnome-doc-utils.m4' to 'aclocal.m4'.
    Putting files in AC_CONFIG_MACRO_DIR, 'm4'.
    Running intltoolize...
    Running autoreconf...
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal --force --warnings=no-portability -I m4 ${ACLOCAL_FLAGS}
    autoreconf: configure.ac: tracing
    autoreconf: configure.ac: not using Libtool
    autoreconf: running: /usr/bin/autoconf --force --warnings=no-portability
    autoreconf: configure.ac: not using Autoheader
    autoreconf: running: automake --add-missing --copy --force-missing --warnings=no-portability
    configure.ac:48: installing './compile'
    configure.ac:9: installing './install-sh'
    configure.ac:9: installing './missing'
    Makefile.am: installing './INSTALL'
    src/ocrfeeder/Makefile.am:3: installing './py-compile'
    autoreconf: Leaving directory `.'
    Running ./configure --enable-maintainer-mode PYTHON=python2 ...
    checking for a BSD-compatible install... /usr/bin/install -c
    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 to enable maintainer-specific portions of Makefiles... yes
    checking whether make supports nested variables... (cached) yes
    checking whether python2 version is >= 2.5... 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 python2 module: enchant... yes
    checking python2 module: sane... yes
    checking python2 module: PIL... yes
    checking python2 module: reportlab... yes
    checking python2 module: gobject... yes
    checking gobject introspection module Gtk... yes
    checking gobject introspection module GooCanvas... no
    configure: error: failed to find required GObject Introspection module GooCanvas
    ==> ERRORE: Si è verificato un errore in build().
    L'operazione sta per essere interrotta...
    with yaourt:
    ocrfeeder-git 0.7.11.20.g22218bc-1 (gio 19 set 2013, 16.13.18, CEST)
    ( Pacchetto non supportato: Potenzialmente pericoloso! )
    ==> Modificare PKGBUILD [S/n] ("A" per annullare)
    ==> ----------------------------------------------
    ==> n
    ==> Dipendenze di ocrfeeder-git
    - python2-pyenchant (già installato)
    - pygoocanvas (già installato)
    - python2-gtkspell (già installato)
    - python2-imaging (già installato)
    - python2-lxml (già installato)
    - python2-reportlab (già installato)
    - ghostscript (già installato)
    - unpaper (già installato)
    - sane (già installato)
    - desktop-file-utils (già installato)
    - intltool (già installato)
    - gnome-doc-utils (già installato)
    - gnome-common (già installato)
    ==> Modificare ocrfeeder.install [S/n] ("A" per annullare)
    ==> -------------------------------------------------------
    ==> n
    ==> Continuare la compilazione di ocrfeeder-git [S/n]
    ==> -------------------------------------------------
    ==>
    ==> Compilazione e installazione del pacchetto
    ==> Creazione del pacchetto: ocrfeeder-git 0.7.11.20.g22218bc-1 (mar 18 nov 2014, 18.53.10, CET)
    ==> Controllo delle dipendenze durante l'avvio in corso...
    ==> Controllo delle dipendenze durante la compilazione in corso...
    ==> Download dei sorgenti in corso...
    -> Clonazione del repository ocrfeeder git in corso...
    Clone nel repository spoglio '/tmp/yaourt-tmp-pippo/aur-ocrfeeder-git/ocrfeeder'...
    remote: Counting objects: 3584, done.
    remote: Compressing objects: 100% (2578/2578), done.
    remote: Total 3584 (delta 2414), reused 1346 (delta 936)
    Ricezione degli oggetti: 100% (3584/3584), 1.71 MiB | 556.00 KiB/s, done.
    Risoluzione dei delta: 100% (2414/2414), done.
    Checking connectivity... fatto.
    ==> Validazione dei sorgenti con sha512sums in corso...
    ocrfeeder ... Ignorato
    ==> Estrazione dei sorgenti in corso...
    -> Creazione di una copia di lavoro del repository ocrfeeder git in corso...
    Cloning into 'ocrfeeder'...
    fatto.
    ==> Avvio di pkgver() in corso...
    ==> Versione aggiornata: ocrfeeder-git 0.8-1
    ==> Avvio di build() in corso...
    /usr/bin/gnome-autogen.sh
    checking for automake >= 1.11.2...
    testing automake... found 1.14.1
    checking for autoreconf >= 2.53...
    testing autoreconf... found 2.69
    checking for glib-gettext >= 2.2.0...
    testing glib-gettextize... found 2.42.0
    checking for intltool >= 0.25...
    testing intltoolize... found 0.50.2
    checking for gnome-doc-utils >= 0.4.2...
    testing gnome-doc-prepare... found 0.20.10
    Checking for required M4 macros...
    Processing ./configure.ac
    Running glib-gettextize... Ignore non-fatal messages.
    Copying file po/Makefile.in.in
    Please add the files
    codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4
    progtest.m4
    from the /usr/share/aclocal directory to your autoconf macro directory
    or directly to your aclocal.m4 file.
    You will also need config.guess and config.sub, which you can get from
    ftp://ftp.gnu.org/pub/gnu/config/.
    Running gnome-doc-prepare...
    You should add the contents of '/usr/share/aclocal/gnome-doc-utils.m4' to 'aclocal.m4'.
    Putting files in AC_CONFIG_MACRO_DIR, 'm4'.
    Running intltoolize...
    Running autoreconf...
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal --force --warnings=no-portability -I m4 ${ACLOCAL_FLAGS}
    autoreconf: configure.ac: tracing
    autoreconf: configure.ac: not using Libtool
    autoreconf: running: /usr/bin/autoconf --force --warnings=no-portability
    autoreconf: configure.ac: not using Autoheader
    autoreconf: running: automake --add-missing --copy --force-missing --warnings=no-portability
    configure.ac:48: installing './compile'
    configure.ac:9: installing './install-sh'
    configure.ac:9: installing './missing'
    Makefile.am: installing './INSTALL'
    src/ocrfeeder/Makefile.am:3: installing './py-compile'
    autoreconf: Leaving directory `.'
    Running ./configure --enable-maintainer-mode PYTHON=python2 ...
    checking for a BSD-compatible install... /usr/bin/install -c
    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 to enable maintainer-specific portions of Makefiles... yes
    checking whether make supports nested variables... (cached) yes
    checking whether python2 version is >= 2.5... 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 python2 module: enchant... yes
    checking python2 module: sane... yes
    checking python2 module: PIL... yes
    checking python2 module: reportlab... yes
    checking python2 module: gobject... yes
    checking gobject introspection module Gtk... yes
    checking gobject introspection module GooCanvas... no
    configure: error: failed to find required GObject Introspection module GooCanvas
    ==> ERRORE: Si è verificato un errore in build().
    L'operazione sta per essere interrotta...
    ==> ERRORE: Makepkg non è riuscito a compilare ocrfeeder-git.
    ==> Riavviare la compilazione di ocrfeeder-git [s/N]
    ==> ------------------------------------------------
    ==>
    $ pacman -Q|grep canvas
    goocanvas1 1.0.0-3
    pygoocanvas 0.14.1-6
    EDIT:
    SOLVED:
    # pacman -S goocanvas
    Last edited by quellen (2014-11-18 18:02:18)

    VCS PKGBUILDs need to include the VCS type at the end of the pkgname. In this case your package should be named "wifiz-git".
    Here's an updated version of your PKGBUILD:
    # Maintainer: Cody Dostal <[email protected]>
    pkgname=wifiz-git
    _gitname=WiFiz
    pkgver=0.9.2.2.r1.g8147a9f
    pkgrel=1
    pkgdesc="NetCTL GUI Frontend, written in wxPython. Stable Version."
    arch=('any')
    url="https://github.com/codywd/$_gitname"
    license=('MIT')
    depends=('python2' 'wxpython' 'wireless_tools' 'netctl' 'wpa_supplicant')
    makedepends=('git')
    optdepends=('gedit: manually edit profiles')
    conflicts=('wifiz' 'wifiz-nightly')
    provides=('wifiz')
    source=("git://github.com/codywd/$_gitname.git")
    sha256sums=('SKIP')
    pkgver() {
    cd "$srcdir/$_gitname"
    git describe --always --long | sed -E 's/([^-]*-g)/r\1/;s/-/./g'
    package() {
    cd "$srcdir/$_gitname"
    python2 setup.py install --root="$pkgdir/" --optimize=1
    Note the following changes:
    pkgname
    conflicts with "wifiz" (all VCS packages should provide and conflict with their non-VCS equivalents)
    removed redundant echo and shell invocation from pkgver function
    "$srcdir/$_gitname" instead of "$_gitname" in pkgver function: the git repo will not be in the same directory if the user sets SRCDIR in makepkg.conf

  • [Solved] pcsx2 segfaults on run, can't build from ABS or AUR (x86_64)

    pcsx2 1.0.0-5 from multilib segfaults immediately after running the command.
    [alexis@cuddles ~]$ pcsx2
    Segmentation fault (core dumped)
    Trying to compile with ABS produces this:
    [alexis@cuddles pcsx2]$ makepkg -s
    ==> Making package: pcsx2 1.0.0-5 (Wed Jul 3 22:29:01 MDT 2013)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Installing missing dependencies...
    resolving dependencies...
    looking for inter-conflicts...
    :: lib32-mesa-libgl and lib32-catalyst-utils are in conflict (lib32-libgl). Remove lib32-catalyst-utils? [y/N]
    I'm pretty sure (but not positive) that lib32-catalyst-utils should be providing lib32-libgl. If I patch the PKGBUILD to remove the dependency on lib32-mesa-libgl (might be a bad idea, but it doesn't seem to be causing the issue), it fails when linking, producing thousands of lines like:
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_tree_view_scroll_to_cell'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_widget_is_composited'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_widget_set_size_request'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_notebook_set_current_page'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_text_buffer_place_cursor'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_editable_delete_selection'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_text_iter_begins_tag'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_tree_view_new_with_model'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_entry_get_text'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_editable_get_position'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_toggle_button_set_active'
    /usr/lib32/libwx_gtk2u_core-2.8.so: undefined reference to `gtk_toolbar_remove_space'
    collect2: error: ld returned 1 exit status
    make[2]: *** [pcsx2/pcsx2] Error 1
    make[1]: *** [pcsx2/CMakeFiles/pcsx2.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    gtk packages I have installed:
    [alexis@cuddles pcsx2]$ sudo pacman -Q | grep gtk
    gtk-engines 2.21.0-1
    gtk-sharp-2 2.12.11-1
    gtk-update-icon-cache 2.24.19-1
    gtk2 2.24.19-1
    gtk3 3.8.2-1
    gtkmm 2.24.4-1
    gtkmm3 3.8.1-1
    lib32-gtk2 2.24.19-1
    lib32-wxgtk 2.8.12.1-5
    libdbusmenu-gtk2 12.10.2-1
    pygtk 2.24.0-3
    pywebkitgtk 1.1.8-2
    transmission-gtk 2.77-3
    webkitgtk2 1.10.2-7
    wireshark-gtk 1.10.0-3
    wxgtk 2.8.12.1-5
    wxgtk2.9 2.9.4-3
    Hope I provided enough info. Any help is appreciated :3.
    Edit: Oh, and the AUR package (the svn build) fails to compile a dependency, lib32-gtk-engines (another AUR package), with the following error:
    ==> Making package: lib32-gtk-engines 2.21.0-2 (Wed Jul 3 22:45:55 MDT 2013)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found gtk-engines-2.21.0.tar.gz
    ==> Validating source files with md5sums...
    gtk-engines-2.21.0.tar.gz ... Passed
    ==> Extracting sources...
    -> Extracting gtk-engines-2.21.0.tar.gz with bsdtar
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    checking for a BSD-compatible install... /usr/bin/install -c
    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 to enable maintainer-specific portions of Makefiles... no
    checking for gcc... gcc -m32
    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 -m32 accepts -g... yes
    checking for gcc -m32 option to accept ISO C89... none needed
    checking for style of include used by make... GNU
    checking dependency style of gcc -m32... gcc3
    checking whether make sets $(MAKE)... (cached) yes
    checking whether gcc -m32 and cc understand -c and -o together... yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    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 -m32... /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... dlltool
    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 -m32 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 -m32 -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 -m32 supports -fno-rtti -fno-exceptions... no
    checking for gcc -m32 option to produce PIC... -fPIC -DPIC
    checking if gcc -m32 PIC flag -fPIC -DPIC works... yes
    checking if gcc -m32 static flag -static works... yes
    checking if gcc -m32 supports -c -o file.o... yes
    checking if gcc -m32 supports -c -o file.o... (cached) yes
    checking whether the gcc -m32 linker (/usr/bin/ld -m elf_i386) 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 whether NLS is requested... yes
    checking for intltool >= 0.31.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.18.0
    checking for XML::Parser... ok
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for LC_MESSAGES... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking for ngettext in libc... yes
    checking for dgettext in libc... yes
    checking for bind_textdomain_codeset... yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for GTK... no
    configure: error: GTK+-2.12 is required to compile gtk-engines
    ==> ERROR: A failure occurred in build().
    Aborting...
    edit #2: backtrace!
    Reading symbols from /usr/bin/pcsx2...(no debugging symbols found)...done.
    (gdb) run
    Starting program: /usr/bin/pcsx2
    warning: Could not load shared library symbols for linux-gate.so.1.
    Do you need "set solib-search-path" or "set sysroot"?
    Program received signal SIGSEGV, Segmentation fault.
    0xf7fe6b43 in _dl_relocate_object () from /lib/ld-linux.so.2
    (gdb) bt
    #0 0xf7fe6b43 in _dl_relocate_object () from /lib/ld-linux.so.2
    #1 0xf7fe0508 in dl_main () from /lib/ld-linux.so.2
    #2 0xf7ff1013 in _dl_sysdep_start () from /lib/ld-linux.so.2
    #3 0xf7fe0a6b in _dl_start () from /lib/ld-linux.so.2
    #4 0xf7fdd097 in _start () from /lib/ld-linux.so.2
    Last edited by alexis_evo (2013-07-05 16:55:23)

    alexis_evo wrote:I wonder why pacman/makepkg is trying to install lib32-mesa-libgl over it. I am using Vi0L0's unofficial catalyst (and xorg) repositories, if it matters.
    Because pcsx2's PKGBUILD has "lib32-mesa-libgl" as makedepends, while I think it should be the virtual name "lib32-gl". It can cause pacman to uninstall nvidia (lib32-nvidia-libgl) or ATI (lib32-catalyst-utils) in order to install mesa files -- not good, I suppose.
    Please file a bug report against pcsx2 package.
    Last edited by josephg (2013-07-04 17:09:14)

Maybe you are looking for

  • Vb code----Expected-end of statement----this is error coming when debugging.

    'VERSION 5.00 'Object = "{648A5603-2C6E-101B-82B6-000000000014}#1.1#0"; "Mscomm32.ocx" Begin VB.Form FrmMain    BackColor = &H80000002    StartUpPosition = 3    'Windows Default    WindowState = 2        'Maximized    Begin VB.Timer Timer3       Inte

  • T43p is going to freeze for 2 minutes on every xp startup

    Hello to everyone. I'm as new in this forum as i'm new to my Thinkpad T43p. Unfortunately i've got one problem with my notebook. Hopefully someone of you may help me with this:  i already did a complete and fresh new windows xp installation to get ri

  • Profit center wise Balance Sheet

    Dear Experts, I am working in a project right now and the company requirement is to get the Balance sheet profit center Wise. We are implementing ECC 6 and have activated Document splitting Functionality. We are Considering products as Profit centers

  • Importing Flash into FCP

    I have Flash Pro 8 and FCP Pro HD and am still trying to learn both. Can I create a piece in Flash and import it into FCP? If I need to upgrade FCP, I will - I just need to know if it's possible, and how to do it. thanks a lot. j.

  • How can firefox load a complete page of a game in facebook instead of halfpage?

    When I play zynga games in facebook (mafia wars), the page won't show completely. It starts normally but the game won't show completely even if I scroll down it would still be incomplete.