Filezilla doesn't build

Here's what I get when I do a makepkg ...
if g++ -DHAVE_CONFIG_H -I. -I. -I../../src/include -I./../include -I/usr/include -I/usr/include -I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -march=i686 -mtune=generic -O2 -pipe -Wall -g -fexceptions -MT libengine_a-ControlSocket.o -MD -MP -MF ".deps/libengine_a-ControlSocket.Tpo" -c -o libengine_a-ControlSocket.o `test -f 'ControlSocket.cpp' || echo './'`ControlSocket.cpp; \
then mv -f ".deps/libengine_a-ControlSocket.Tpo" ".deps/libengine_a-ControlSocket.Po"; else rm -f ".deps/libengine_a-ControlSocket.Tpo"; exit 1; fi
ControlSocket.cpp:972: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
make[2]: *** [libengine_a-ControlSocket.o] Error 1
make[2]: Leaving directory `/home/max/filezilla/src/filezilla-3.0.0-beta8/src/engine'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/max/filezilla/src/filezilla-3.0.0-beta8/src'
make: *** [all-recursive] Error 1
==> ERROR: Build Failed. Aborting...
[max@myhost filezilla]$
How can I fix this?

This worked for me:
# $Id: PKGBUILD,v 1.27 2007/03/13 17:48:30 jgc Exp $
# Maintainer: tobias <[email protected]>
# Original Contributor: Tom Newsom <[email protected]>
# New Version - Contributor: Bob Finch <[email protected]>
# with help from J. Santiago Hirschfeld <[email protected]> aka Angelus
pkgname=wxgtk
pkgver=2.8.4
force=y
pkgrel=1
pkgdesc="wxGTK - GTK+ implementation of wxWidgets API for GUI"
arch=(i686 x86_64)
license=('LGPL')
depends=('gtk2>=2.10.9' 'mesa')
source=(http://heanet.dl.sourceforge.net/wxwindows/wxGTK-2.8.4.tar.bz2)
url="http://wxwidgets.org"
build() {
cd ${startdir}/src/wxGTK-$pkgver
autoconf
./configure --prefix=/usr --with-gtk=2 --with-opengl --enable-unicode \
--without-gnomeprint --disable-optimize || return 1
make || return 1
make -C locale allmo
make DESTDIR=${startdir}/pkg install || return 1
cd contrib/src
make || return 1
make DESTDIR=${startdir}/pkg install || return 1
# Contributor: Alexander Fehr <[email protected]>
pkgname=filezilla
pkgver=3.0.0beta11
pkgrel=1
pkgdesc="Fast and reliable FTP client"
arch=('i686')
url="http://filezilla.sourceforge.net/"
license=('GPL')
depends=('wxgtk' 'libidn')
source=(http://dl.sourceforge.net/$pkgname/FileZilla_3.0.0-beta11_src.tar.bz2 \
filezilla.desktop)
build() {
cd $startdir/src/$pkgname-3.0.0-beta11
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
install -D -m644 src/interface/resources/filezilla.png \
$startdir/pkg/usr/share/pixmaps/filezilla.png
install -D -m644 ../filezilla.desktop \
$startdir/pkg/usr/share/applications/filezilla.desktop
It's BETA11
Last edited by jond (2007-07-27 10:18:54)

Similar Messages

  • Dock / Stacks doesn't build preview thumbnails

    Sometimes (totally random, impossible to reproduce) on computer startup, the Dock doesn't build the preview thumbnails for the items stored in the Stacks (Documents and Downloads stacks). There are very few items in there: few folders with no special icons in Documents and 2 files; both files are the standard PDF files (About Stacks.pdf and About Downloads.pdf), there are no additional files that might require or use a 3rd party preview plugin.
    The dock is located on the right side of the screen (obviously, vertical position), maximization effect is enabled. If the preview is not built, I only get the standard pdf icon.
    A fix is to restart the Dock (killall -HUP Dock), that makes the Dock rebuild the preview thumbnails.
    Once the bug is 'started' (at least one thumbnail isn't rebuilt), it keeps behaving like this all the time (all restarts), but the issue applies to different thumbnails.
    Is this a known bug or am I the only one affected? I don't seem to find any other relevant topics in here.

    Hi and welcome to  Discussions,
    I have the same problem from time to time and it's also absolutely random which icons get a preview and which don't. I believe it's more likely to happen when you click on the folders right after a reboot, but this could just be coincidence. You're not alone and this is simply a bug, I think.
    Björn
    PS: You can leave feedback over here: http://www.apple.com/feedback/macosx.html

  • JAXB XML doesn't build default/fixed values?

    Hi people.
    I need to build a status XML that must look like this:
    <rule name="TeamPayment" result="Auditing">
       <code>968</code>
       <code>571</code>
    </rule>I'm using JAXB 2, there is a attribute named 'result' with a fixed value that the marshaller doesn't adds to the XML.
    I'm not setting the value of attribute 'result' in my code, because it has a fixed value and I think the marshaller must obey the Schema definition.
    Also, I set the Schema to the marshaller. marsh.setSchema(ruleSchema); This is the Schema:
    <xsd:complexType name="RuleInstance" abstract="true">
       <xsd:sequence>
          <xsd:element name="errorCode" type="xsd:string" minOccurs="0"
                maxOccurs="unbounded"/>
          <xsd:element name="scriptText" type="xsd:string" minOccurs="0"
                maxOccurs="1"/>
       </xsd:sequence>
       <xsd:attribute name="name" type="xsd:string" use="required"/>
    </xsd:complexType>
    <xsd:complexType name="AuditingRuleInstance">
       <xsd:complexContent>
          <xsd:extension base="tns:RuleInstance">
             <xsd:attribute name="result" type="xsd:string" fixed="Auditing"/>
          </xsd:extension>
       </xsd:complexContent>
    </xsd:complexType>
    <xsd:complexType name="ApprovedRuleInstance">
       <xsd:complexContent>
          <xsd:extension base="tns:RuleInstance">
             <xsd:attribute name="result" type="xsd:string" fixed="Approved"/>
          </xsd:extension>
       </xsd:complexContent>
    </xsd:complexType>
    <xsd:complexType name="DeniedRuleInstance">
       <xsd:complexContent>
          <xsd:extension base="tns:RuleInstance">
             <xsd:attribute name="result" type="xsd:string" fixed="Denied"/>
          </xsd:extension>
       </xsd:complexContent>
    </xsd:complexType>
    <xsd:complexType name="IgnoredRuleInstance">
       <xsd:complexContent>
          <xsd:extension base="tns:RuleInstance">
             <xsd:attribute name="result" type="xsd:string" fixed="Ignored"/>
          </xsd:extension>
       </xsd:complexContent>
    </xsd:complexType>
    <xsd:complexType name="DeferredRuleInstance">
       <xsd:complexContent>
          <xsd:extension base="tns:RuleInstance">
             <xsd:attribute name="result" type="xsd:string" fixed="Deferred"/>
          </xsd:extension>
       </xsd:complexContent>
    </xsd:complexType>
    <xsd:element name="rule" type="tns:RuleInstance"/>Am I doing something wrong?
    Att,
    TJ.

    I'm not so good at cmake, but I believe that you'll need to explicitely set OpenCV_ROOT_DIR in the PKGBUILD. /usr is defined in cmake/modules/FindOpenCV.cmake, but cmake seems to be missing it.

  • [SOLVED] dolphin-emu doesn't build

    I am trying to install dolphin-emu from AUR and when I do, it fails to build and I get the error message:
    CMake Error at CMakeLists.txt:235 (message):
    GLU is required but not found
    Note: It does find libGL.so
    I tried manually cloning the git repo and I get the same error when trying to build it.
    I have spend hours searching Google to no avail.  I have freeglut, nvidia-utils, etc all installed.  I found a fix for Ubuntu which was to install the freeglut3-dev package, but that doesn't seem to exist on Arch (or maybe it is just installed with freeglut?)
    Any ideas?  Thanks!
    Last edited by DanB91 (2012-11-26 14:31:44)

    Pajaro wrote:
    they seem to say here that you have to set OPENGL_INCLUDE_DIR
    http://code.google.com/p/dolphin-emu/wiki/Linux_Build
    Thanks for the reply!  The comment you seem to be referring to doesn't seem to be the problem, though.  CMake can find the OpenGL directory and the OpenGL library (libGL.so).
    Last edited by DanB91 (2012-11-19 00:47:49)

  • [SOLVED]Matplotlib doesn't build (perhaps Python issue)

    Hi there,
    when trying to install `python2-matplotlib-noqt` I ve run into the following error:
    Traceback (most recent call last):
    File "setup.py", line 155, in <module>
    result = package.check()
    File "/tmp/yaourt-tmp-alex/aur-python2-matplotlib-noqt/src/matplotlib-1.4.2/setupext.py", line 1729, in check
    return super(BackendGtkAgg, self).check()
    File "/tmp/yaourt-tmp-alex/aur-python2-matplotlib-noqt/src/matplotlib-1.4.2/setupext.py", line 504, in check
    additional_info = self.check_requirements()
    File "/tmp/yaourt-tmp-alex/aur-python2-matplotlib-noqt/src/matplotlib-1.4.2/setupext.py", line 1626, in check_requirements
    import gtk
    File "/usr/lib/python2.7/site-packages/gtk-2.0/gtk/__init__.py", line 45, in <module>
    from gtk.deprecation import _Deprecated, _DeprecatedConstant
    ValueError: bad marshal data (unknown type code)
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build python2-matplotlib-noqt.
    Googling suggests that the problem is incompatibility between matplotlib and python versions. So I updated python to version 3.4, but pkgbuid still pulls file from `/usr/lib/python2.7`,though this particular version is not explicitly set in `PKGBUILD`:
    pkgname=python2-matplotlib-noqt
    pkgver=1.4.2
    pkgrel=1
    pkgdesc="A python plotting library, making publication quality plots"
    arch=('i686' 'x86_64')
    url='http://matplotlib.org'
    license=('custom')
    depends=('python2-pytz' 'python2-numpy' 'python2-cairo' 'python2-dateutil' 'python2-pyparsing')
    makedepends=('python2-pytz' 'python2-numpy' 'tk' 'python2-cairo' 'python2-dateutil'
    'python2-gobject' 'python2-pyparsing' 'pygtk' 'python-six' 'ghostscript' 'texlive-bin')
    optdepends=('python-gobject: for GTK3Agg/GTK3Cairo backend'
    'python-cairo: for GTK3Cairo backend'
    'tk: used by the TkAgg backend'
    'ghostscript: usetex dependencies'
    'texlive-bin: usetex dependencies'
    'python-tornado: for webagg backend')
    source=("https://github.com/matplotlib/matplotlib/archive/v$pkgver.tar.gz")
    sha512sums=('60e7cca791fe607f17db85e5e5a85d4a503c7ae584cd0333ff271ca0a92acbb3f08774c2d0f6e03414a1fe116187d0bcf5c47d29935e77c5a0e91e493db8333f')
    prepare() {
    cd matplotlib-${pkgver}
    for file in $(find . -name '*.py' -print); do
    sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python2|" \
    -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python2|" ${file}
    done
    build() {
    cd matplotlib-${pkgver}
    python2 setup.py build
    package() {
    cd matplotlib-${pkgver}
    python2 setup.py install -O1 --skip-build --root "${pkgdir}" --prefix=/usr
    install -dm755 "${pkgdir}"/usr/share/licenses/python2-matplotlib-noqt
    install -m 644 doc/users/license.rst "${pkgdir}"/usr/share/licenses/python2-matplotlib-noqt
    i'm at a loss
    Last edited by L1ghtmareI (2014-11-02 10:22:46)

    First of all, you should be clear about what's you are doing. You are trying to build python2-matplotlib-noqt from the AUR. Bugs in the AUR packages must be mentioned/discussed in the comment of that package. I don't see how this package disable the qt dependency besides nor requiring it, but I have not investigate the build process of matplotlib. What I would suggest is to try to build the official python-matplotlib package and make the modification yourself so that it does not depend of qt, if you know how to do it. If not, simply install the official package.
    Last edited by olive (2014-11-01 21:59:41)

  • Upload webpage through Filezilla doesn't work

    Hi
    I've created a page with Muse, I tried to upload it through ftp to an external hosting, but it doesn't work. Apparently I make eveyrthing correct but when I go to my website the page won't show. Hosting name is netsons.
    Can anybody help?
    Thank you

    Are you using the built in FTP or a third party FTP client? Is that a 404 error when you access the page at the remote site? Make sure you do not have Export Page option disabled for the affected page (look for the option in the page's context menu in Plan/Design mode).
    If that is not the case, please share the page URL.
    Thanks,
    Vinayak

  • Enemylines3 from AUR doesn't build

    Hi everyone,
    I tried building enemylines3 from AUR and it stops building with the following error:
    hiscore.cc:4:24: fatal error: curl/types.h: No such file or directory
    compilation terminated.
    The file /usr/include/curl/types.h is indeed missing on my up-to-date system. As I'm not that much into programming to fix the code with the file missing I just wrote a patch to remove the curl dependency alltogether.
    diff -urB enemylines3-1.2/hiscore.cc enemylines3-1.2-patched/hiscore.cc
    --- enemylines3-1.2/hiscore.cc 2006-03-30 18:16:47.000000000 +0200
    +++ enemylines3-1.2-patched/hiscore.cc 2013-03-02 12:34:29.618621436 +0100
    @@ -1,4 +1,5 @@
    #include <sstream>
    +#define NOCURL
    #ifndef NOCURL
    #include <curl/curl.h>
    #include <curl/types.h>
    and updated the PKGBUILD file accordingly
    pkgname=enemylines3
    pkgver=1.2
    pkgrel=1
    pkgdesc="Semi-abstract first person 3d-shooter game."
    arch=('i686' 'x86_64')
    url="http://proj.phk.at/el/3/"
    license=('GPL')
    depends=('sdl' 'sdl_mixer' 'sdl_ttf')
    makedepends=()
    provides=()
    conflicts=()
    replaces=()
    backup=()
    options=()
    install=
    source=(http://proj.phk.at/el/3/$pkgname-$pkgver.tar.bz2
    enemylines_gcc43.patch
    enemylines3_rmcurldep.patch)
    noextract=()
    md5sums=('aa9538749df25bc967195fefe1439791'
    'd35dfc6f66bbed7d0c936da15b945d64'
    'cd6c20ae8a971fdfaa247c7eb808f4f9' )
    build() {
    cd "$srcdir"
    patch -p0 -i enemylines_gcc43.patch || return 1
    patch -p0 -i enemylines3_rmcurldep.patch || return 1
    cd "$pkgname-$pkgver"
    make || return 1
    make DESTDIR="$pkgdir/usr" install
    # vim:set ts=2 sw=2 et:
    Now it builds fine but of course without the hiscore functionality (which I don't need).
    What should I/we do now? Of course it makes no sense to have a broken package in the AUR but on the other hand some users probably want the hiscore functionality. Is there anyone willing to write another patch to make it work again or is it even an error in the curl package (why is the file missing?).

    http://projects.springlobby.info/issues/1575
    https://wiki.openstreetmap.org/wiki/Talk:Gosmore
    https://bugs.archlinux.org/task/27094
    curl/types.h is deprecated by curl devs and seems to be removed completely since curl version 7.21.7 .
    using sed to replace curl/types.h with curl/curl.h seems like it's worth a try.

  • Dbxml doesn't build on mac os x

    Hi,
    i just downloaded dbxml-2.4.16.tar.gz; untar'd it with tar xvxf dbxml-2.4.16.tar.gz; cd'd into the directory and executed the build with the following line and results. Any clues would be great. This is the first release i've had any problems with.
    Best wishes,
    --greg
    bash-3.2$ pwd
    /Users/lgm/work/src/devtools/dbxml-2.4.16
    bash-3.2$ sudo ./buildall.sh enable-java prefix=/opt/local/dbxml
    Password:
    Start DB build: Wed May 20 12:28:12 PDT 2009
    Configuring Berkeley DB
    gcc -c -I. -I../dist/.. -O3 -fno-strict-aliasing ../dist/../libdb_java/db_java_wrap.c -fno-common -DPIC -o .libs/db_java_wrap.o
    ../dist/../libdb_java/db_java_wrap.c:123:17: error: jni.h: No such file or directory
    ... a lot more errors related to this one

    Hi
    I am trying to build dbxml-2.4.16 on a Mac OS X for a project I am involved in. It is not the most current version, but the newest version has deprecated some features that the project uses.
    I have issued the command
    buildall.sh --enable-java
    and it appears that it is able to build with java, but I am having an issue building xerces-c
    The message I am getting is:
    (C++) MacOSPlatformUtils.o
    MacOSPlatformUtils.cpp: In static member function 'static long unsigned int xerc
    esc_2_8::XMLPlatformUtils::getCurrentMillis()':
    MacOSPlatformUtils.cpp:363: error: 'kUnresolvedCFragSymbolAddress' was not decla
    red in this scope
    MacOSPlatformUtils.cpp: In static member function 'static void* xercesc_2_8::XML
    PlatformUtils::compareAndSwap(void**, const void*, const void*)':
    MacOSPlatformUtils.cpp:466: error: cast from 'const void*' to 'UInt32' loses pre
    cision
    MacOSPlatformUtils.cpp:467: error: cast from 'const void*' to 'UInt32' loses pre
    cision
    MacOSPlatformUtils.cpp: In static member function 'static int xercesc_2_8::XMLPl
    atformUtils::atomicIncrement(int&)':
    MacOSPlatformUtils.cpp:485: error: cannot convert 'long int*' to 'SInt32*' for a
    rgument '1' to 'SInt32 IncrementAtomic(SInt32*)'
    MacOSPlatformUtils.cpp: In static member function 'static int xercesc_2_8::XMLPl
    atformUtils::atomicDecrement(int&)':
    MacOSPlatformUtils.cpp:492: error: cannot convert 'long int*' to 'SInt32*' for a
    rgument '1' to 'SInt32 DecrementAtomic(SInt32*)'
    MacOSPlatformUtils.cpp: In static member function 'static void xercesc_2_8::XMLP
    latformUtils::platformInit()':
    MacOSPlatformUtils.cpp:511: error: cannot convert 'long int*' to 'SInt32*' for a
    rgument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    MacOSPlatformUtils.cpp:516: error: cannot convert 'long int*' to 'SInt32*' for a
    rgument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    MacOSPlatformUtils.cpp:523: error: 'kUnresolvedCFragSymbolAddress' was not decla
    red in this scope
    MacOSPlatformUtils.cpp: In function 'bool xercesc_2_8::XMLParsePathToFSRef_X(con
    st XMLCh*, FSRef&, xercesc_2_8::MemoryManager*)':
    MacOSPlatformUtils.cpp:840: error: 'FSMakeFSSpec' was not declared in this scope
    MacOSPlatformUtils.cpp:842: error: 'FSpMakeFSRef' was not declared in this scope
    MacOSPlatformUtils.cpp: In function 'bool xercesc_2_8::XMLParsePathToFSRef_Class
    ic(const XMLCh*, FSRef&, xercesc_2_8::MemoryManager*)':
    MacOSPlatformUtils.cpp:930: error: 'FSMakeFSSpec' was not declared in this scope
    MacOSPlatformUtils.cpp:932: error: 'FSpMakeFSRef' was not declared in this scope
    MacOSPlatformUtils.cpp: In function 'bool xercesc_2_8::XMLParsePathToFSSpec_Clas
    sic(const XMLCh*, FSSpec&, xercesc_2_8::MemoryManager*)':
    MacOSPlatformUtils.cpp:1065: error: 'XVolumeParam' was not declared in this scop
    e
    MacOSPlatformUtils.cpp:1065: error: expected `;' before 'xVolParam'
    MacOSPlatformUtils.cpp:1067: error: 'xVolParam' was not declared in this scope
    MacOSPlatformUtils.cpp:1071: error: 'PBXGetVolInfoSync' was not declared in this
    scope
    MacOSPlatformUtils.cpp:1098: error: 'FSMakeFSSpec' was not declared in this scop
    e
    MacOSPlatformUtils.cpp:1109: error: 'FSMakeFSSpec' was not declared in this scop
    e
    MacOSPlatformUtils.cpp:1131: error: 'CInfoPBRec' was not declared in this scope
    MacOSPlatformUtils.cpp:1131: error: expected `;' before 'catInfo'
    MacOSPlatformUtils.cpp:1396: error: 'catInfo' was not declared in this scope
    MacOSPlatformUtils.cpp:1396: error: 'struct FSSpec' has no member named 'name'
    MacOSPlatformUtils.cpp:1397: error: 'struct FSSpec' has no member named 'vRefNum
    MacOSPlatformUtils.cpp:1399: error: 'struct FSSpec' has no member named 'parID'
    MacOSPlatformUtils.cpp:1400: error: 'PBGetCatInfoSync' was not declared in this
    scope
    MacOSPlatformUtils.cpp:1404: error: 'struct FSSpec' has no member named 'name'
    MacOSPlatformUtils.cpp:1432: error: 'struct FSSpec' has no member named 'name'
    MacOSPlatformUtils.cpp:1440: error: 'struct FSSpec' has no member named 'parID'
    MacOSPlatformUtils.cpp:1443: error: 'struct FSSpec' has no member named 'parID'
    make[3]: *** [MacOSPlatformUtils.o] Error 1
    make[2]: *** [all] Error 2
    make[1]: *** [platforms] Error 2
    make: *** [Util] Error 2
    Is there something I should be doing that I am not?????
    Could you please help
    Thanks
    Jose

  • Exported build.xml doesn't build Service Control correctly

    We created a few components that build properly in Workshop...but not in the build.xml that Workshop generates. We are using Workshop 9.2.
    Here is what we did...
    1) Coded a Web Service that uses the ALDSP 3.0 dynamic mediator API (to access a data service)
    2) Generated a WSDL from that service
    3) Created a Service Control (that uses the WSDL from #2)
    When we do a build via Project -> Clean (with Build Automatically enabled), this gets built just fine.
    When we run the Ant task with the targets "clean, build", it fails when it tries to compile the SEI file (the file that gets generated for #3 above).
    During the build process (from the Workshop-exported build.xml file), the com.bea.control.servicecontrol.impl.ServiceControlAssembler appears to generate the MyServiceControlSEI.java file that does not compile.
    Although the compile error probably has to do with the naming conventions in our XML schema, we at least want to get the build.xml build process to act the same way as the regular Project -> Clean process (in which case our project builds just fine...even with our XML schema issues).
    My question is...does the Project -> Clean process use a different set of APTs or tasks to generate the SEI file than the build.xml process? If so, how can we configure the exported build.xml file to use the same tasks/tools as the Project -> Clean process?
    Thank you,
    Michael

    Hi Michael,
    Can you confirm if you are running the ant script from the command line and have run the setenv.cmd/sh script prior to running the ant tasks
    more info on executing ant script from the command line is available at
    [url http://e-docs.bea.com/wlw/docs102/guide/ideuserguide/build/conUseCustomAntBuild.html]http://e-docs.bea.com/wlw/docs102/guide/ideuserguide/build/conUseCustomAntBuild.html
    cheers
    Raj

  • Klibc doesn't build: The 'linux' symlink is missing

    Klibc 1.5.14 doesn't compile giving this error immediately after patching
    The 'linux' symlink is missing; it should point to a kernel tree
    configured for the i386 architecture.
    make: *** [linux] Error 1
    Should I file a bug report or is there anything I'm missing?

    New version (1.5.15) gives the same error.

  • Flex doesn't build the project anymore?

    Hello Forum
    I restarted my computer and the flex project this morning and when I try to debug the application I get a plain error message.  It launches the web url in debug mode but no page appears.  MAMP is running...  If I look in the project folder there is no html file anymore?  Any ideas what could have happend?
    Where do I setup the export properties for the html file?  (sort of like Publish properties in Flash CS4?)
    Thank you
    sk

    Shut down eclipse then clean your project in my case that usually 
    solves that kind of errors
    Sincerely,
    Michael
    El 21/04/2009, a las 11:01, "stephan.k" <[email protected]> escribió:
    >
    the error says: 'An Internal Error has occured'
    >

  • IExplorer doesn`t build up an applet within a plugin tag

    I`m developing a jsp application on a Netscape 6.0. Within it, the applets work fine, but within an IExplorer 6.0 there is nothing built up. Not even a grey square or any kind of ERROr-message.
    Why?

    Make sure in your IE settings the Java Sun
    Use Java 2 v1.3 (applet) is checked
    Also I would checkout some of the other java options in the IE explorer to make sure that is ok.

  • [SOLVED]fbpanel-dwm fails to build

    Hey guys, seems I'm in another predicament. I usually install AUR packages using:
    makepkg -s
    pacman -U aurpackage.tar.xz
    However, I can't seem to make it work for fbpanel-dwm. I've tried building it several times as well.
    Here's what I did:
    [reki@ws2][Downloads] $ tar xzvf fbpanel-dwm.tar.gz
    fbpanel-dwm
    fbpanel-dwm/PKGBUILD
    fbpanel-dwm/custom_height_and_margin.diff
    [reki@ws2][Downloads] $ cp fbpanel-dwm-6.1.tar.gz fbpanel-dwm
    `fbpanel-dwm-6.1.tar.gz' -> `fbpanel-dwm/fbpanel-dwm-6.1.tar.gz'
    [reki@ws2][Downloads] $ cd fbpanel-dwm
    [reki@ws2][fbpanel-dwm] $ ls
    custom_height_and_margin.diff fbpanel-dwm-6.1.tar.gz PKGBUILD
    And this is where the error pops up:
    [reki@ws2][fbpanel-dwm] $ makepkg -s
    ==> Making package: fbpanel-dwm 6.1-4 (Tue Jan 3 02:20:34 PHT 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found fbpanel-dwm-6.1.tar.gz
    -> Found custom_height_and_margin.diff
    ==> Validating source files with sha256sums...
    fbpanel-dwm-6.1.tar.gz ... Passed
    custom_height_and_margin.diff ... Passed
    ==> Extracting Sources...
    -> Extracting fbpanel-dwm-6.1.tar.gz with bsdtar
    ==> Entering fakeroot environment...
    ==> Starting build()...
    patching file panel/gconf_panel.c
    patching file panel/panel.h
    Creating ./panel/Makefile
    Creating ./plugins/genmon/Makefile
    Creating ./plugins/tclock/Makefile
    Creating ./plugins/unstable/test/Makefile
    Creating ./plugins/pager/Makefile
    Creating ./plugins/mem/Makefile
    Creating ./plugins/deskno/Makefile
    Creating ./plugins/meter/Makefile
    Creating ./plugins/volume/Makefile
    Creating ./plugins/Makefile
    Creating ./plugins/chart/Makefile
    Creating ./plugins/systray/Makefile
    Creating ./plugins/deskno2/Makefile
    Creating ./plugins/cpu/Makefile
    Creating ./plugins/menu/Makefile
    Creating ./plugins/space/Makefile
    Creating ./plugins/net/Makefile
    Creating ./plugins/taskbar/Makefile
    Creating ./plugins/wincmd/Makefile
    Creating ./plugins/battery/Makefile
    Creating ./plugins/launchbar/Makefile
    Creating ./plugins/dclock/Makefile
    Creating ./plugins/separator/Makefile
    Creating ./plugins/image/Makefile
    Creating ./plugins/icons/Makefile
    Creating ./Makefile
    Creating ./exec/Makefile
    Creating ./exec/make_profile
    Creating ./data/man/fbpanel.1
    Creating ./data/Makefile
    Creating ./data/images/Makefile
    Creating ./data/config/Makefile
    Creating ./data/config/default
    Creating ./data/config/pager
    Creating config.h
    Creating config.mk
    make[1]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/taskbar'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o taskbar.o taskbar.c
    cc taskbar.o -o taskbar.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/taskbar'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/launchbar'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o launchbar.o launchbar.c
    cc launchbar.o -o launchbar.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/launchbar'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/space'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o space.o space.c
    cc space.o -o space.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/space'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/menu'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o menu.o menu.c
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o system_menu.o system_menu.c
    cc menu.o system_menu.o -o menu.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/menu'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/pager'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o pager.o pager.c
    pager.c: In function ‘pager_rebuild_all’:
    pager.c:710:18: warning: variable ‘curdesk’ set but not used [-Wunused-but-set-variable]
    cc pager.o -o pager.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/pager'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/mem'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o mem.o mem.c
    cc mem.o -o mem.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/mem'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/chart'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o chart.o chart.c
    cc chart.o -o chart.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/chart'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/cpu'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o cpu.o cpu.c
    cpu.c: In function ‘cpu_get_load’:
    cpu.c:64:11: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result]
    cc cpu.o -o cpu.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/cpu'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/net'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o net.o net.c
    net.c: In function ‘net_get_load’:
    net.c:72:10: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result]
    net.c:73:10: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result]
    cc net.o -o net.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/net'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/systray'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o main.o main.c
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o fixedtip.o fixedtip.c
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o eggtraymanager.o eggtraymanager.c
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o egg-marshal.o egg-marshal.c
    cc main.o fixedtip.o eggtraymanager.o egg-marshal.o -o tray.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/systray'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/dclock'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o dclock.o dclock.c
    cc dclock.o -o dclock.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/dclock'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/wincmd'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o wincmd.o wincmd.c
    cc wincmd.o -o wincmd.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/wincmd'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/icons'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o icons.o icons.c
    cc icons.o -o icons.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/icons'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/separator'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o separator.o separator.c
    cc separator.o -o separator.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/separator'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/image'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o image.o image.c
    cc image.o -o image.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/image'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/deskno'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o deskno.o deskno.c
    cc deskno.o -o deskno.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/deskno'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/tclock'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o tclock.o tclock.c
    cc tclock.o -o tclock.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/tclock'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/genmon'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o genmon.o genmon.c
    genmon.c: In function ‘text_update’:
    genmon.c:50:10: warning: ignoring return value of ‘fgets’, declared with attribute warn_unused_result [-Wunused-result]
    cc genmon.o -o genmon.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/genmon'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/deskno2'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o deskno2.o deskno2.c
    deskno2.c: In function ‘clicked’:
    deskno2.c:28:11: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result]
    cc deskno2.o -o deskno2.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/deskno2'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/meter'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o meter.o meter.c
    cc meter.o -o meter.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/meter'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/volume'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o volume.o volume.c
    cc volume.o -o volume.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/volume'
    make[2]: Entering directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/battery'
    cc -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -O2 -Wall -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1 -I/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/panel -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng14 -fPIC -DPLUGIN -c -o battery.o battery.c
    cc battery.o -o battery.so -Wl,-O1,--sort-common,--as-needed,-z,relro,--hash-style=gnu -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -lglib-2.0 -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lglib-2.0 -shared
    make[2]: Leaving directory `/home/reki/Downloads/fbpanel-dwm/src/fbpanel-dwm-6.1/plugins/battery'
    make[1]: Leaving directory `/h

    I, too, have noticed that the PKGBUILD for fbpanel (6.1-2) doesn't build properly. I submitted a bug report here:
    https://bugs.archlinux.org/task/28463

  • [SOLVED] ipager does not build. Patched! Now it does.

    Dig in, children. ipager really is the coolest little thing!
    Some thanks should go to berbae. I just mashed up an AUR comment post of his with a little code fix I located in a blog post at the confignewton tech blog (dittoThanks).
    This patch supercedes the two other patches that package maintainer wakwanza is shipping with ipager-1.1.0-8. To clarify... Please swap out both of those patches (ipager.patch + ipager-gcc43.patch), instead using ipager-1.1.0-20120429.patch for a flawless build. (3 warnings of deprecation + 1 harmless other warning remain, though)
       ipager-1.1.0-20120429.patch:
    --- SConstruct.orig 2005-11-06 05:23:24.000000000 -0600
    +++ SConstruct 2012-04-29 06:59:11.927253922 -0500
    @@ -7,15 +7,16 @@
    # options
    ipager_optfile = [ 'scons.opts', 'user.opts' ]
    -ipager_options = Options(ipager_optfile)
    -ipager_options.AddOptions(
    - BoolOption('debug', 'build debug version', 0),
    - BoolOption('debug_events', 'debug xserve events', 0),
    - BoolOption('xinerama', 'support xinerama', 0),
    +ipager_options = Variables(ipager_optfile)
    +ipager_options.AddVariables(
    + BoolVariable('debug', 'build debug version', 0),
    + BoolVariable('debug_events', 'debug xserve events', 0),
    - PathOption('PREFIX', 'install-path base', '/usr/local'),
    - PathOption('DESTDIR', 'install to $DESTDIR/$PREFIX', '/')
    + BoolVariable('xinerama', 'support xinerama', 0),
    +
    + PathVariable('PREFIX', 'install-path base', '/usr'),
    + PathVariable('DESTDIR', 'install to $DESTDIR/$PREFIX', '/')
    @@ -31,10 +32,10 @@
    ipager_env = Environment(options = ipager_options, ENV = os.environ)
    ipager_env.Append(
    - CPPFLAGS = [ '-Wall' ],
    - CPPPATH = [ '/usr/X11R6/include' ],
    - LIBPATH = ['/usr/X11R6/lib']
    + CPPFLAGS = [ '-Wall', '-march=native', '-O' ],
    + CPPPATH = [ '/usr/include' ],
    + LIBPATH = [ '/usr/lib' ]
    +)
    ipager_options.Update(ipager_env)
    @@ -115,11 +116,10 @@
    else:
    print "yes"
    ipager_env.AppendUnique(
    - CPPPATH = imlib2_env.Dictionary()['CPPPATH'],
    - CCFLAGS = imlib2_env.Dictionary()['CCFLAGS'],
    - LIBPATH = imlib2_env.Dictionary()['LIBPATH'],
    - LIBS = imlib2_env.Dictionary()['LIBS']
    + CPPPATH = imlib2_env.Dictionary().get('CPPPATH'),
    + CCFLAGS = imlib2_env.Dictionary().get('CCFLAGS'),
    + LIBPATH = imlib2_env.Dictionary().get('LIBPATH'),
    + LIBS = imlib2_env.Dictionary().get('LIBS')
    conf.Finish()
    --- iconfig.cpp.orig 2012-04-28 19:34:36.902151855 -0500
    +++ iconfig.cpp 2012-04-28 18:31:28.000000000 -0500
    @@ -30,11 +30,11 @@
    #include <iostream>
    #include <fstream>
    #include <sstream>
    +#include <cstdlib>
    #include <sys/stat.h>
    #include <sys/types.h>
    +using namespace std;
    template <class T>
    bool from_string(T &t,
    --- ipager.cpp.orig 2012-04-28 19:34:36.928818549 -0500
    +++ ipager.cpp 2012-04-28 18:43:26.000000000 -0500
    @@ -31,6 +31,7 @@
    #include <iostream>
    #include <string>
    +#include <unistd.h>
    using namespace std;
    #include "pager.h"
    --- pager.cpp.orig 2012-04-28 19:34:36.928818549 -0500
    +++ pager.cpp 2012-04-28 19:07:28.000000000 -0500
    @@ -266,13 +266,13 @@
    /* Window updates go here */
    if (m_window_update.updateNetWindowList())
    updateNetWindowList();
    - if (m_window_update.displayIcons())
    - if (m_window_update.motion())
    + if (m_window_update.displayIcons()) {
    + if (m_window_update.motion()) {
    displayIcons(m_window_update.getX(), m_window_update.getY());
    - else
    + } else {
    displayIcons();
    + }
    + }
    /* ImLib updates go here */
    --- wm.cpp.orig 2012-04-28 19:34:36.928818549 -0500
    +++ wm.cpp 2012-04-28 18:42:07.000000000 -0500
    @@ -27,7 +27,9 @@
    #include <time.h>
    #include "atoms.h"
    +#include <cstdlib>
    +using namespace std;
    WM * WM::m_instance = 0;
    bool WM::x_error = false;
    This md5sum is what you'll get, IF you'll please add a newline at the patch EOF.
    f147f6a4ec3f8779bdc1c12cfbd5e03f ipager-1.1.0-20120429.patch
    Note: I messed with 3 pastebin sites, and now these \[code\] tags, never once able to successfully share without the truncation of the trailing newline at EOF. Hours of learning (yes, googling) how not to do it properly. Anyone care to point me to a non-truncating solution?  EDIT: [SOLVED] The patch program will ignore lines beginning with '#'. The solution is obvious, after re-reading the manual.
    P.S. My first post! (pat self on back) Sorry for my excellent english. :]
    Last edited by zero2cx (2012-04-29 20:10:01)

    berbae wrote:Thank you for sharing this.
    But it would be nice to have the maintainer wakwanza make the changes in AUR and increment the package release to 1.1.0-9
    Could you send a mail to him, and if there is no answer in one month, ask a TU in the AUR-general mailing list to orphan the package.
    And then you or someone else can adopt it and make the changes.
    You're welcome.
    wakwanza has been notified and on the clock since yesterday a.m. The aur commenting system generates an email to the maintainer with every new comment, I've read. But since this package's recent maintenance history is sketchy at best, I reached out to him/her myself. We will wait now.
    berbae wrote:
    Also you should have posted the link of the blog you found, but here it is: http://confignewton.com/?p=152
    I didn't try to rebuild the package recently, I presume it doesn't build with actual build chain tools...
    I will try your patch, but I prefer first that the maintainer updates the package in AUR to 1.1.0-9 with your modifications.
    Thank you for the link. I did not want to cross any lines into website solicitation, so I proceeded too catiously there.
    Yes, please try this and post back.
    [EDIT]: Awesome, wakwanza! --> Fresh ipager available: https://aur.archlinux.org/packages.php?ID=5415
    Last edited by zero2cx (2012-05-01 21:00:31)

  • E17 SVN Builder, a new script for pacman to keep your E17 up to date!

    I created a script called E17 SVN Builder because of what it does: create packages of E17 direct from SVN using the same PKGBUILDs as the Arch snapshots do. It came around because I was bitten by the Settings panel bug, which was fixed in upstream a few days after the SVN snapshot was taken. I wanted an up to date E17 install, so I created this script. Do NOT use it if you want your E17 install to be stable(r?)!
    I just thought I would share this script since it works for me. Perhaps people could help me improve it?
    Anyway, the dependancies right now are:
    yaourt-git (I need it to fetch the PKGBUILDs for the images from CVS)
    svn (to fetch the E17 code)
    TODO:
    - I need to get rid of the dependancy on yaourt-git by extracting the code for fetching the PKGBUILDs with it.
    - I want to be able to use flags with this.
    License: GPLv3
    Version: 0.2
    #!/bin/sh
    # * E17-svn-builder *
    # * A script to build E17 directly from SVN *
    # * By smartboyathome *
    VERSION=0.2
    usage(){
    echo 'E17 SVN Builder'
    echo 'This is version '$VERSION
    echo 'For now, this is a very simple script. It will fetch and build the PKGBUILDs for you. It is recommend you create a new directory to run this in, as it will pollute a directory with tons of files and folders.'
    echo '-h, --help; Show this message.'
    while [ "$#" -ne "0" ]; do
    case $1 in
    --help)
    usage
    exit 0
    -h)
    usage
    exit 0
    esac
    done
    buildpkg(){
    echo 'Building '$_E17PKG'...'
    # Check if the package directory exists, and if not, create it.
    if [ -d $_E17PKG ]; then
    cd $_E17PKG
    else
    mkdir $_E17PKG
    cd $_E17PKG
    fi
    # Check if the PKGBUILD exists, and if not, get it.
    if [ -d PKGBUILD ]; then
    yaourt -G $_E17PKG
    else
    mv PKGBUILD PKGBUILD.old
    yaourt -G $_E17PKG
    mv PKGBUILD PKGBUILD.new | mv PKGBUILD.old PKGBUILD
    cmp -s PKGBUILD PKGBUILD.new || mv PKGBUILD.new PKGBUILD
    fi
    makepkg PKGBUILD
    mv *.pkg.tar.gz ../
    cd ../
    # Make sure there aren't any left over environment variables from a previous run or program. This keeps things clean. :)
    unset _EXTRA
    unset _E17PKG
    echo 'Would you like to build the e17-extra-svn packages as well? (y/n)'
    read _EXTRA
    # Remove all packages
    rm *.pkg.tar.gz
    echo 'Beginning to build e17-svn packages...'
    #--- Begin building eina-svn ---
    _E17PKG=eina-svn
    buildpkg
    #--- Begin building eet-svn ---
    _E17PKG=eet-svn
    buildpkg
    #--- Begin building evas-svn ---
    _E17PKG=evas-svn
    buildpkg
    #--- Begin building ecore-svn ---
    _E17PKG=ecore-svn
    buildpkg
    #--- Begin building embryo-svn ---
    _E17PKG=embryo-svn
    buildpkg
    #--- Begin building edje-svn ---
    _E17PKG=edje-svn
    buildpkg
    #--- Begin building e_dbus-svn ---
    _E17PKG=e_dbus-svn
    buildpkg
    #--- Begin building efreet-svn ---
    _E17PKG=efreet-svn
    buildpkg
    #--- Begin building e-svn ---
    _E17PKG=e-svn
    buildpkg
    echo 'Finished building e17-svn packages!'
    if [ $EXTRA="y" ]; then
    echo 'Beginning to build e17-extra-svn packages...'
    #--- Begin building exml-svn ---
    _E17PKG=exml-svn
    buildpkg
    #--- Begin building emprint-svn ---
    _E17PKG=emprint-svn
    buildpkg
    #--- Begin building engrave-svn ---
    _E17PKG=engrave-svn
    buildpkg
    #--- Begin building epsilon-svn ---
    _E17PKG=epsilon-svn
    buildpkg
    #--- Begin building esmart-svn ---
    _E17PKG=esmart-svn
    buildpkg
    #--- Begin building etk-svn ---
    _E17PKG=etk-svn
    buildpkg
    #--- Begin building ewl-svn ---
    _E17PKG=ewl-svn
    buildpkg
    #--- Begin building e-modules-extra-svn ---
    _E17PKG=e-modules-extra-svn
    buildpkg
    #--- Begin building elitaire-svn ---
    _E17PKG=elitaire-svn
    buildpkg
    #--- Begin building entrance-svn ---
    _E17PKG=entrance-svn
    buildpkg
    #--- Begin building exhibit-svn ---
    _E17PKG=exhibit-svn
    buildpkg
    echo 'Finished building e17-extra-svn packages!'
    fi
    echo ''
    echo 'All package building is complete!'
    echo 'It is recommended you restart E17 after installing these packages.'
    echo 'To do this, go to menu > Enlightenment > Restart;'
    echo 'If you cant, then issue this command to restart it:'
    echo 'enlightenment_remote -restart'
    echo ''
    echo 'Have a nice day!'
    # Unsetting our variables so that we aren't messing with anything else. Also keeps things clean. :)
    unset _E17PKG
    unset _EXTRA
    exit 0
    Last edited by smartboyathome (2008-12-21 21:10:47)

    UPDATE! This package has had a couple changes:
    - Repetitive stuff was condensed into one piece of code. Now, its much easier to read.
    - I implemented extra differently. Instead of using a flag (which for some reason always sent me into a loop, I need more practice with scripting ), I just ask the person running the script whether they want to build extra as well as the core e17-svn stuff. Now it doesn't build them all automatically.

Maybe you are looking for