[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)

Similar Messages

  • [SOLVED] AUR package not building for haskell-platform

    Unforunately I have a problem in which a package seems to not build for `haskell-json` on the AUR. The build terminates like so:
    Configuring json-0.7...
    Building json-0.7...
    Preprocessing library json-0.7...
    [1 of 7] Compiling Text.JSON.Types ( Text/JSON/Types.hs, dist/build/Text/JSON/Types.o )
    [2 of 7] Compiling Text.JSON.String ( Text/JSON/String.hs, dist/build/Text/JSON/String.o )
    [3 of 7] Compiling Text.JSON.ReadP ( Text/JSON/ReadP.hs, dist/build/Text/JSON/ReadP.o )
    [4 of 7] Compiling Text.JSON.Parsec ( Text/JSON/Parsec.hs, dist/build/Text/JSON/Parsec.o )
    [5 of 7] Compiling Text.JSON.Pretty ( Text/JSON/Pretty.hs, dist/build/Text/JSON/Pretty.o )
    [6 of 7] Compiling Text.JSON ( Text/JSON.hs, dist/build/Text/JSON.o )
    [7 of 7] Compiling Text.JSON.Generic ( Text/JSON/Generic.hs, dist/build/Text/JSON/Generic.o )
    Text/JSON.hs:73:18:
    Could not find module `Data.Text'
    Perhaps you haven't installed the "dyn" libraries for package `text-0.11.3.1'?
    Use -v to see a list of the files searched for.
    However, I can actually confirm that this *does* build when I do it with cabal itself. For some reason issuing an indirect build via arch build system causes failure. Here is the output from `ghc-pkg list text`:
    /usr/lib/ghc-7.6.3/package.conf.d
    text-0.11.3.1
    Any ideas as to what is going wrong would be much appreciated.
    Last edited by eazar001 (2014-01-10 22:41:23)

    karol wrote:Have you tried installing from the haskell unofficial repo? haskell-core has haskell-json 0.7-9.
    https://wiki.archlinux.org/index.php/Un … skell-core
    Unfortunately, once I try to get `haskell-json` up and running it fails to complete because:
    xmonad: requires haskell-mtl=2.1.2-3
    Version incompatibility \=

  • [SOLVED]BCM4322 driver not building

    I'm trying to build this driver (64-bit) with these instructions , and when I use make or make clean, it returns
    KBUILD_NOPEDANTIC=1 make -C /lib/modules/`uname -r`/build M=`pwd`
    make: *** /lib/modules/3.0-ARCH/build: no such file or directory. Stop.
    make: *** [all] Error 2
    What do I need to do to fix these errors? Thanks for your time.
    Last edited by brainard52 (2012-04-16 21:32:21)

    Is there any reason you are not installing aur/broadcom-wl?
    ewaller@odin:~ 1011 %packer -Si broadcom-wl
    Repository : aur
    Name : broadcom-wl
    Version : 5.100.82.112-3
    URL : http://www.broadcom.com/support/802.11/linux_sta.php
    Licenses : custom
    Groups : None
    Provides : None
    Depends On : linux
    Make Depends : linux-headers
    Optional Deps : None
    Conflicts With : None
    Replaces : None
    Architecture : i686 x86_64
    Description : Broadcom 802.11abgn hybrid Linux networking device driver
    ewaller@odin:~ 1012 %

  • DC Builds fine on my machine. does not build on another developer's machine

    hello,
    I have a web dynpro type of development component.
    I had developed it locally on my machine. Now I checked in that DC on JDI.
    Now when another developer tries to sync and create Project for that DC on his machine, it does not build fine.
    Errors related to Mapping definitation inconsistent, missing type etc appear on his machine.
    But the DC still builds fine on my machine.
    Please see the [screenshot|http://learnsaponline.blogspot.com/2011/12/dc-does-not-build-fine-on-another.html] of the errors on the other developer's machine.
    Please suggest a solution
    Thanks !
    seventyros
    Edited by: seventyros on Dec 28, 2011 5:24 PM

    hi Chris,
    Yes I am using a DC in This DC. The used DC builds fine on other developer's machine. The problem is with Using DC.
    Please suggest what changes or settings I need to do in the using DC on my machine so that the errors on other developer's machine are automatically resolved on sync.
    Thanks !
    seventyros
    Edited by: seventyros on Dec 28, 2011 8:11 PM

  • When i attach my iphone 4 with computer it shows one of the USB devices attached to this computer has malfunctioned and windows does not recognize it,now what can i do ..plz help me

    when i attach my iphone 4 with computer it shows one of the USB devices attached to this computer has malfunctioned and windows does not recognize it,now what can i do ..plz help me

    I would first try unplugging All the USB devices plugged into your computer, and then plug back in just the iPhone and see if that is recognized.  Also, do you have the latest version of iTunes for Windows installed on your PC, as you need to?
    Hope this helps

  • Upgraded Cube does not build

    Sometimes a modified cube will not build after release. It cannot find the esm file -- which is there -- or will not stop, or Essbase thinks it is being used.
    We are using version 7.1.3 on a Windows server, and deployment cannot be carried out through EAS. We deploy through Windows batch commands. Given that we must deploy this way, is there anything we can do for the cube to prevent these failures? We already stop the application before building, and prevent logins.
    Kevin

    Hi All
    The above is a false alarm.
    Basically it turned out that one of the keys in the fact table was not a leaf node in the dimension.
    After rectifying that all works fine now.

  • TS1398 My wi-fi does not work properly now I have updated my iPhone 4 can any one help

    My wifi does not work properly now I have updated my iPhone 4 to the iOS 6 operating system can someone please help me? Also on my maps I can not zoom in as image is so distorted

    Make sure your ring/silent switch on the side of the phone is not On (red dot showing).

  • For Macbook Pro Mid2010: Why not build a WiFi based AirDrop solution between iOS8 and Yosemite? Really sad it does not work.

    For Macbook Pro Mid2010: Why not build a WiFi based AirDrop solution between iOS8 and Yosemite? Really sad it does not work.

    Your Mac is too old
    To Airdrop between a Mac an iOS device
    System Requirements
    To see if your Mac works with AirDrop, make sure you’re in the Finder by clicking the desktop (the background area of your screen), or by clicking the Finder icon in the Dock. Then, check to see if AirDrop is listed as an option in the Go menu. If you don't see AirDrop listed, your Mac doesn't support this feature.
    In order to transfer files between a Mac and and an iPhone, iPad or iPod touch
    your iOS device needs to include a lightning connector
    your iOS device needs iOS 7 or later installed
    your Mac needs to be a 2012 or later model with OS X Yosemite installed
    Your Mac and iOS device both need bluetooth and Wi-Fi turned on. You do not have to be connected to a specific Wi-Fi network.
    To transfer files between two Mac computers, you need the Mac models listed below with Wi-Fi turned on and OS X Lion or later installed.
    From:
    Mac Basics: AirDrop lets you send files from your Mac to nearby Macs and iOS devices - Apple Support

  • I rented a movie and it downloaded but the movie skips and i can hear the words but the picture does not? and now the movie is gone from the library and i only rented it an hour ago? what do i do?

    I rented a movie and it downloaded but the movie skips and i can hear the words but the picture does not? and now the movie is gone from the library and i only rented it an hour ago? what do i do?

    I'd report the problem to the iTunes Store. 
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not playing properly. If you can't see "Report a Problem" next to the item, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.

  • Sms code for verification does not reach to my mobile. ? i can not access my e-mail because of code that does not sent right now. code that related to my alternated e-mail was sent , but not to mobile

    sms code for verification does not reach to my mobile. ? i can not access my e-mail because of code that does not sent right now. code that related to my alternated e-mail was sent , but not to mobile

    Bugzilla is not the place for this sort of problem. Forwarded this post to the relevant team.

  • TS1410 By mistake I disconnected my iPod Classic when it said Do not disconnect. Now it doesn't appear in iTunes, but it does appear on my desktop. How can I get to reappear in iTunes (have tried resetting and rebooting).

    By mistake I disconnected my iPod (5th generation) when it said Do not disconnect. Now it doesn't appear in iTunes, but it does appear on my desktop. How can I get to reappear in iTunes? I have tried resetting and rebooting. And my iTunes is up to date on my macbook pro, mountain lion, OS X 10.8.
    Thank you!

    The iPod's filesystem may be corrupted.  This may seem like overkill, but it has been known to help many others in the same boat.  Try doing a low level reformat of the iPod's hard disk using the instructions in this article.
    http://www.methodshop.com/gadgets/ipodsupport/erase/
    B-rock

  • Help page does not build refernce Models summary.

    Currently, we use the MVC default help page feature and enable the XMLPrvider:
    config.SetDocumentationProvider(new XmlDocumentationProvider(HttpContext.Current.Server.MapPath("~/App_Data/ManagementApi.xml")));
    When we access the help page, we didn’t found the Reference Model property summary, the Description column for the Reference Model is Null, because when we build the WebAPI project, it only build its own Models, not build the Reference Model,
    So is there anyway can do it, when we build the API project, it also build the Reference Models?

    Hi Will,
    Thanks for your investigating, I did it like you described. the issue is when we build the
    WebApi project, the models which used from the
    Reference Project did not build to the xml file, for instance, we have a Web API project called
    WebProject, and in the Project we use the TestClass
    from the Class Library Project called Models, when we build the
    WebProject, the TestClass did not build in the Specified Xml File. so we did not see the Description in the WebAPI help page, Currently, I try to use a workaround to achieve it, below is the link I found, hope to help your understading:
    http://aspnetwebstack.codeplex.com/workitem/1720
    I set the Models build to another XML file, and use it for the
    Provider, It works.

  • Could not build cups-canon-3.00 from AUR

    Hi!
    I'm coming from linux mint and I'm totally amazed by simplicity of Arch Linux. However, I have problem with installing my printer (Canon IP1900). I'm unable to install canon-cups-3.00 from AUR (using yaourt). It gives me this error:
    ==> Zaczynam build()
    patching file backend/src/cnij_backend_common.c
    patching file cngpijmon/src/bjcupsmon_cups.c
    ......... libs
    processing .
    Running libtoolize...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: You should add the contents of the following files to `aclocal.m4':
    libtoolize: `/usr/share/aclocal/libtool.m4'
    libtoolize: `/usr/share/aclocal/ltoptions.m4'
    libtoolize: `/usr/share/aclocal/ltversion.m4'
    libtoolize: `/usr/share/aclocal/ltsugar.m4'
    libtoolize: `/usr/share/aclocal/lt~obsolete.m4'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    Running aclocal ...
    aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    configure.in:4: error: 'AM_CONFIG_HEADER': this macro is obsolete.
    You should use the 'AC_CONFIG_HEADERS' macro instead.
    /usr/share/aclocal-1.13/obsolete-err.m4:12: AM_CONFIG_HEADER is expanded from...
    configure.in:4: the top level
    autom4te: /usr/bin/m4 failed with exit status: 1
    aclocal: error: echo failed with exit status: 1
    Running autoheader...
    autoheader: error: AC_CONFIG_HEADERS not found in configure.in
    Running automake --gnu ...
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    configure.in: error: no proper invocation of AM_INIT_AUTOMAKE was found.
    configure.in: You should verify that configure.in invokes AM_INIT_AUTOMAKE,
    configure.in: that aclocal.m4 is present in the top-level directory,
    configure.in: and that aclocal.m4 was recently regenerated (using aclocal)
    configure.in:9: installing './install-sh'
    Makefile.am: installing './COPYING' using GNU General Public License v3 file
    Makefile.am: Consider adding the COPYING file to the version control system
    Makefile.am: for your code, to avoid questions about which license your project uses
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    buftool/Makefile.am:1: error: library used but 'RANLIB' is undefined
    buftool/Makefile.am:1: The usual way to define 'RANLIB' is to add 'AC_PROG_RANLIB'
    buftool/Makefile.am:1: to 'configure.in' and run 'autoconf' again.
    buftool/Makefile.am: installing './depcomp'
    /usr/share/automake-1.13/am/depend2.am: error: am__fastdepCC does not appear in AM_CONDITIONAL
    /usr/share/automake-1.13/am/depend2.am: The usual way to define 'am__fastdepCC' is to add 'AC_PROG_CC'
    /usr/share/automake-1.13/am/depend2.am: to 'configure.in' and run 'aclocal' and 'autoconf' again
    /usr/share/automake-1.13/am/depend2.am: error: AMDEP does not appear in AM_CONDITIONAL
    /usr/share/automake-1.13/am/depend2.am: The usual way to define 'AMDEP' is to add one of the compiler tests
    /usr/share/automake-1.13/am/depend2.am: AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC, AC_PROG_OBJCXX,
    /usr/share/automake-1.13/am/depend2.am: AM_PROG_AS, AM_PROG_GCJ, AM_PROG_UPC
    /usr/share/automake-1.13/am/depend2.am: to 'configure.in' and run 'aclocal' and 'autoconf' again
    paramlist/Makefile.am:1: error: Libtool library used but 'LIBTOOL' is undefined
    paramlist/Makefile.am:1: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
    paramlist/Makefile.am:1: to 'configure.in' and run 'aclocal' and 'autoconf' again.
    paramlist/Makefile.am:1: If 'LT_INIT' is in 'configure.in', make sure
    paramlist/Makefile.am:1: its definition is in aclocal's search path.
    Running autoconf ...
    configure.in:2: error: possibly undefined macro: AM_INIT_AUTOMAKE
    If this token and others are legitimate, please use m4_pattern_allow.
    See the Autoconf documentation.
    configure.in:4: error: possibly undefined macro: AM_CONFIG_HEADER
    configure.in:11: error: possibly undefined macro: AM_PROG_LIBTOOL
    Running ./configure --prefix=/usr --enable-progpath=/usr/bin ...
    configure: WARNING: unrecognized options: --enable-progpath
    ./configure: line 2181: syntax error near unexpected token `buftool,'
    ./configure: line 2181: `AM_INIT_AUTOMAKE(buftool, 1.0.0)'
    ==> BŁĄD: Wystąpił błąd w build().
    Przerywam...
    ==> ERROR: Makepkg was unable to build cups-canon-3.00.
    I tried downgrading automake to 1.11 from AUR, but then, when I try to compile cups-canon-3.00 it just gives me error, that I don't have automake (yes, I did "export automake=automake-1.11").
    I'm fighting with it for hours, and still nothing...

    It looks like this time it changed something so I gave it two tries again:
    Before 1st autogen:
    ==> Zaczynam build()
    patching file backend/src/cnij_backend_common.c
    patching file cngpijmon/src/bjcupsmon_cups.c
    ......... libs
    processing .
    Running libtoolize...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: You should add the contents of the following files to `aclocal.m4':
    libtoolize: `/usr/share/aclocal/libtool.m4'
    libtoolize: `/usr/share/aclocal/ltoptions.m4'
    libtoolize: `/usr/share/aclocal/ltversion.m4'
    libtoolize: `/usr/share/aclocal/ltsugar.m4'
    libtoolize: `/usr/share/aclocal/lt~obsolete.m4'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    Running aclocal ...
    aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    Running autoheader...
    Running automake --gnu ...
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    configure.in:2: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
    configure.in:2: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation
    configure.in:11: installing './config.guess'
    configure.in:11: installing './config.sub'
    configure.in:2: installing './install-sh'
    configure.in:2: installing './missing'
    Makefile.am: installing './COPYING' using GNU General Public License v3 file
    Makefile.am: Consider adding the COPYING file to the version control system
    Makefile.am: for your code, to avoid questions about which license your project uses
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    buftool/Makefile.am: installing './depcomp'
    Running autoconf ...
    Running ./configure --prefix=/usr --enable-progpath=/usr/bin ...
    configure: WARNING: unrecognized options: --enable-progpath
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking for g++... g++
    checking whether the C++ compiler works... yes
    checking for C++ compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking whether make sets $(MAKE)... (cached) yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking how to run the C++ preprocessor... g++ -E
    checking for ld used by g++... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC -DPIC
    checking if g++ PIC flag -fPIC -DPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking if g++ supports -c -o file.o... (cached) yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking dynamic linker characteristics... (cached) GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking for ANSI C header files... (cached) yes
    checking for sys/wait.h that is POSIX.1 compatible... yes
    checking malloc.h usability... yes
    checking malloc.h presence... yes
    checking for malloc.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking for unistd.h... (cached) yes
    checking for an ANSI C-conforming const... yes
    checking for pid_t... yes
    checking vfork.h usability... no
    checking vfork.h presence... no
    checking for vfork.h... no
    checking for fork... yes
    checking for vfork... yes
    checking for working fork... yes
    checking for working vfork... (cached) yes
    checking for stdlib.h... (cached) yes
    checking for GNU libc compatible malloc... yes
    checking for dup2... yes
    checking for memset... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating buftool/Makefile
    config.status: creating paramlist/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    configure: WARNING: unrecognized options: --enable-progpath
    Now type `make' to compile buftool
    make all-recursive
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    Making all in paramlist
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -O2 -MT paramlist.lo -MD -MP -MF .deps/paramlist.Tpo -c -o paramlist.lo paramlist.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -O2 -MT paramlist.lo -MD -MP -MF .deps/paramlist.Tpo -c paramlist.c -fPIC -DPIC -o .libs/paramlist.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -O2 -MT paramlist.lo -MD -MP -MF .deps/paramlist.Tpo -c paramlist.c -o paramlist.o >/dev/null 2>&1
    mv -f .deps/paramlist.Tpo .deps/paramlist.Plo
    /bin/sh ../libtool --tag=CC --mode=link gcc -O2 -Wall -O2 -Wl,-O1,--sort-common,--as-needed,-z,relro -o libparamlist.la paramlist.lo
    libtool: link: ar cru .libs/libparamlist.a .libs/paramlist.o
    libtool: link: ranlib .libs/libparamlist.a
    libtool: link: ( cd ".libs" && rm -f "libparamlist.la" && ln -s "../libparamlist.la" "libparamlist.la" )
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    Making all in buftool
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -MT buftool.o -MD -MP -MF .deps/buftool.Tpo -c -o buftool.o buftool.c
    mv -f .deps/buftool.Tpo .deps/buftool.Po
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -MT buflist.o -MD -MP -MF .deps/buflist.Tpo -c -o buflist.o buflist.c
    mv -f .deps/buflist.Tpo .deps/buflist.Po
    rm -f libbuftool.a
    ar cru libbuftool.a buftool.o buflist.o
    ranlib libbuftool.a
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    Making install in paramlist
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    Making install in buftool
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    ......... cngpij
    processing .
    Running libtoolize...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: You should add the contents of the following files to `aclocal.m4':
    libtoolize: `/usr/share/aclocal/libtool.m4'
    libtoolize: `/usr/share/aclocal/ltoptions.m4'
    libtoolize: `/usr/share/aclocal/ltversion.m4'
    libtoolize: `/usr/share/aclocal/ltsugar.m4'
    libtoolize: `/usr/share/aclocal/lt~obsolete.m4'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    Running aclocal ...
    aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    Running autoheader...
    autoheader: WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot'
    autoheader: WARNING: and `config.h.top', to define templates for `config.h.in'
    autoheader: WARNING: is deprecated and discouraged.
    autoheader:
    autoheader: WARNING: Using the third argument of `AC_DEFINE' and
    autoheader: WARNING: `AC_DEFINE_UNQUOTED' allows one to define a template without
    autoheader: WARNING: `acconfig.h':
    autoheader:
    autoheader: WARNING: AC_DEFINE([NEED_FUNC_MAIN], 1,
    autoheader: [Define if a function `main' is needed.])
    autoheader:
    autoheader: WARNING: More sophisticated templates can also be produced, see the
    autoheader: WARNING: documentation.
    Running automake --gnu ...
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    configure.in:2: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
    configure.in:2: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation
    configure.in:20: installing './config.guess'
    configure.in:20: installing './config.sub'
    configure.in:2: installing './install-sh'
    configure.in:2: installing './missing'
    cngpij/Makefile.am: installing './depcomp'
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    Running autoconf ...
    Running ./configure --prefix=/usr --enable-progpath=/usr/bin ...
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking for g++... g++
    checking whether the C++ compiler works... yes
    checking for C++ compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking whether make sets $(MAKE)... (cached) yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking how to run the C++ preprocessor... g++ -E
    checking for ld used by g++... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC -DPIC
    checking if g++ PIC flag -fPIC -DPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking if g++ supports -c -o file.o... (cached) yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking dynamic linker characteristics... (cached) GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking for main in -lcups... yes
    checking for main in -lparamlist... no
    checking for main in -lpopt... yes
    checking for ANSI C header files... (cached) yes
    checking for sys/wait.h that is POSIX.1 compatible... yes
    checking arpa/inet.h usability... yes
    checking arpa/inet.h presence... yes
    checking for arpa/inet.h... yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking netdb.h usability... yes
    checking netdb.h presence... yes
    checking for netdb.h... yes
    checking netinet/in.h usability... yes
    checking netinet/in.h presence... yes
    checking for netinet/in.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking sys/socket.h usability... yes
    checking sys/socket.h presence... yes
    checking for sys/socket.h... yes
    checking for unistd.h... (cached) yes
    checking for an ANSI C-conforming const... yes
    checking for size_t... yes
    checking for pid_t... yes
    checking vfork.h usability... no
    checking vfork.h presence... no
    checking for vfork.h... no
    checking for fork... yes
    checking for vfork... yes
    checking for working fork... yes
    checking for working vfork... (cached) yes
    checking for stdlib.h... (cached) yes
    checking for GNU libc compatible malloc... yes
    checking for memset... yes
    checking for socket... yes
    checking for strdup... yes
    checking for strrchr... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating cngpij/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    Now type `make' to compile
    make all-recursive
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij'
    Making all in cngpij
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij/cngpij'
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -I../include/cncl -I../include/misc -I../../libs/paramlist -O2 -MT bjcups.o -MD -MP -MF .deps/bjcups.Tpo -c -o bjcups.o bjcups.c
    mv -f .deps/bjcups.Tpo .deps/bjcups.Po
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -I../include/cncl -I../include/misc -I../../libs/paramlist -O2 -MT getipc.o -MD -MP -MF .deps/getipc.Tpo -c -o getipc.o getipc.c
    getipc.c: In function ‘GetIPCData’:
    getipc.c:63:48: warning: passing argument 3 of ‘accept’ from incompatible pointer type [enabled by default]
    In file included from /usr/include/netinet/in.h:24:0,
    from /usr/include/arpa/inet.h:22,
    from getipc.c:21:
    /usr/include/sys/socket.h:244:12: note: expected ‘socklen_t * __restrict__’ but argument is of type ‘size_t *’
    mv -f .deps/getipc.Tpo .deps/getipc.Po
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -I../include/cncl -I../include/misc -I../../libs/paramlist -O2 -MT bjutil.o -MD -MP -MF .deps/bjutil.Tpo -c -o bjutil.o bjutil.c
    mv -f .deps/bjutil.Tpo .deps/bjutil.Po
    /bin/sh ../libtool --tag=CC --mode=link gcc -O2 -Wall -I../include/cncl -I../include/misc -I../../libs/paramlist -O2 -L../../libs/paramlist -Wl,-O1,--sort-common,--as-needed,-z,relro -o cngpij bjcups.o getipc.o bjutil.o -lpopt -lcups -lparamlist -lpopt -lcups
    libtool: link: gcc -O2 -Wall -I../include/cncl -I../include/misc -I../../libs/paramlist -O2 -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -o cngpij bjcups.o getipc.o bjutil.o -L../../libs/paramlist /tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist/.libs/libparamlist.a -lpopt -lcups
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij/cngpij'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij'
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij'
    Making install in cngpij
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij/cngpij'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij/cngpij'
    /usr/bin/mkdir -p '/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/pkg/usr/bin'
    /bin/sh ../libtool --mode=install /usr/bin/install -c cngpij '/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/pkg/usr/bin'
    libtool: install: /usr/bin/install -c cngpij /tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/pkg/usr/bin/cngpij
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij/cngpij'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij/cngpij'
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/cngpij'
    ......... pstocanonij
    processing .
    Running libtoolize...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: You should add the contents of the following files to `aclocal.m4':
    libtoolize: `/usr/share/aclocal/libtool.m4'
    libtoolize: `/usr/share/aclocal/ltoptions.m4'
    libtoolize: `/usr/share/aclocal/ltversion.m4'
    libtoolize: `/usr/share/aclocal/ltsugar.m4'
    libtoolize: `/usr/share/aclocal/lt~obsolete.m4'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    libtoolize: `AC_PROG_RANLIB' is rendered obsolete by `LT_INIT'
    Running aclocal ...
    aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    Running autoheader...
    autoheader: WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot'
    autoheader: WARNING: and `config.h.top', to define templates for `config.h.in'
    autoheader: WARNING: is deprecated and discouraged.
    autoheader:
    autoheader: WARNING: Using the third argument of `AC_DEFINE' and
    autoheader: WARNING: `AC_DEFINE_UNQUOTED' allows one to define a template without
    autoheader: WARNING: `acconfig.h':
    autoheader:
    autoheader: WARNING: AC_DEFINE([NEED_FUNC_MAIN], 1,
    autoheader: [Define if a function `main' is needed.])
    autoheader:
    autoheader: WARNING: More sophisticated templates can also be produced, see the
    autoheader: WARNING: documentation.
    Running automake --gnu ...
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    configure.in:2: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
    configure.in:2: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation
    configure.in:22: installing './config.guess'
    configure.in:22: installing './config.sub'
    configure.in:2: installing './install-sh'
    configure.in:2: installing './missing'
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    filter/Makefile.am: installing './depcomp'
    Running autoconf ...
    Running ./configure --prefix=/usr --enable-progpath=/usr/bin ...
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking for g++... g++
    checking whether the C++ compiler works... yes
    checking for C++ compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking how to run the C preprocessor... gcc -E
    checking whether ln -s works... yes
    checking whether make sets $(MAKE)... (cached) yes
    checking for ranlib... ranlib
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... (cached) ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking how to run the C++ preprocessor... g++ -E
    checking for ld used by g++... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC -DPIC
    checking if g++ PIC flag -fPIC -DPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking if g++ supports -c -o file.o... (cached) yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking dynamic linker characteristics... (cached) GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking for main in -lcups... yes
    checking for main in -lparamlist... no
    checking for main in -lpopt... yes
    checking for ANSI C header files... (cached) yes
    checking for sys/wait.h that is POSIX.1 compatible... yes
    checking arpa/inet.h usability... yes
    checking arpa/inet.h presence... yes
    checking for arpa/inet.h... yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking malloc.h usability... yes
    checking malloc.h presence... yes
    checking for malloc.h... yes
    checking netdb.h usability... yes
    checking netdb.h presence... yes
    checking for netdb.h... yes
    checking netinet/in.h usability... yes
    checking netinet/in.h presence... yes
    checking for netinet/in.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking sys/socket.h usability... yes
    checking sys/socket.h presence... yes
    checking for sys/socket.h... yes
    checking for unistd.h... (cached) yes
    checking for an ANSI C-conforming const... yes
    checking for size_t... yes
    checking for pid_t... yes
    checking vfork.h usability... no
    checking vfork.h presence... no
    checking for vfork.h... no
    checking for fork... yes
    checking for vfork... yes
    checking for working fork... yes
    checking for working vfork... (cached) yes
    checking for stdlib.h... (cached) yes
    checking for GNU libc compatible malloc... yes
    checking for dup2... yes
    checking for memset... yes
    checking for socket... yes
    checking for strdup... yes
    checking for strrchr... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating filter/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    Now type `make' to compile
    make all-recursive
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij'
    Making all in filter
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij/filter'
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -I../../libs/buftool -O2 -MT pstocanonij.o -MD -MP -MF .deps/pstocanonij.Tpo -c -o pstocanonij.o pstocanonij.c
    pstocanonij.c: In function ‘get_ps_params’:
    pstocanonij.c:249:3: warning: pointer targets in passing argument 1 of ‘buflist_new’ differ in signedness [-Wpointer-sign]
    In file included from pstocanonij.c:35:0:
    ../../libs/buftool/buflist.h:38:10: note: expected ‘unsigned char *’ but argument is of type ‘char *’
    pstocanonij.c:299:5: warning: value computed is not used [-Wunused-value]
    pstocanonij.c:385:3: warning: pointer targets in passing argument 1 of ‘buflist_new’ differ in signedness [-Wpointer-sign]
    In file included from pstocanonij.c:35:0:
    ../../libs/buftool/buflist.h:38:10: note: expected ‘unsigned char *’ but argument is of type ‘char *’
    pstocanonij.c: In function ‘make_cmd_param’:
    pstocanonij.c:905:6: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[256]’ [-Wformat]
    pstocanonij.c:906:6: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[256]’ [-Wformat]
    pstocanonij.c:935:6: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[256]’ [-Wformat]
    pstocanonij.c:936:6: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[256]’ [-Wformat]
    pstocanonij.c: In function ‘exec_filter’:
    pstocanonij.c:1133:6: warning: variable ‘status’ set but not used [-Wunused-but-set-variable]
    mv -f .deps/pstocanonij.Tpo .deps/pstocanonij.Po
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -I../../libs/buftool -O2 -MT canonopt.o -MD -MP -MF .deps/canonopt.Tpo -c -o canonopt.o canonopt.c
    mv -f .deps/canonopt.Tpo .deps/canonopt.Po
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -I../../libs/buftool -O2 -MT paramlist.o -MD -MP -MF .deps/paramlist.Tpo -c -o paramlist.o paramlist.c
    mv -f .deps/paramlist.Tpo .deps/paramlist.Po
    /bin/sh ../libtool --tag=CC --mode=link gcc -O2 -Wall -I../../libs/buftool -O2 -L../../libs/buftool -Wl,-O1,--sort-common,--as-needed,-z,relro -o pstocanonij pstocanonij.o canonopt.o paramlist.o -lcups ../../libs/buftool/libbuftool.a -lpopt -lcups
    libtool: link: gcc -O2 -Wall -I../../libs/buftool -O2 -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -o pstocanonij pstocanonij.o canonopt.o paramlist.o -L../../libs/buftool ../../libs/buftool/libbuftool.a -lpopt -lcups
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij/filter'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij'
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij'
    Making install in filter
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij/filter'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij/filter'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    /usr/bin/mkdir -p '/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/pkg/usr/lib/cups/filter'
    /bin/sh ../libtool --mode=install /usr/bin/install -c pstocanonij '/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/pkg/usr/lib/cups/filter'
    libtool: install: /usr/bin/install -c pstocanonij /tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/pkg/usr/lib/cups/filter/pstocanonij
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij/filter'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij/filter'
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/pstocanonij'
    ......... backend
    processing .
    Running libtoolize...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: You should add the contents of the following files to `aclocal.m4':
    libtoolize: `/usr/share/aclocal/libtool.m4'
    libtoolize: `/usr/share/aclocal/ltoptions.m4'
    libtoolize: `/usr/share/aclocal/ltversion.m4'
    libtoolize: `/usr/share/aclocal/ltsugar.m4'
    libtoolize: `/usr/share/aclocal/lt~obsolete.m4'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    Running aclocal ...
    aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    Running autoheader...
    autoheader: WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot'
    autoheader: WARNING: and `config.h.top', to define templates for `config.h.in'
    autoheader: WARNING: is deprecated and discouraged.
    autoheader:
    autoheader: WARNING: Using the third argument of `AC_DEFINE' and
    autoheader: WARNING: `AC_DEFINE_UNQUOTED' allows one to define a template without
    autoheader: WARNING: `acconfig.h':
    autoheader:
    autoheader: WARNING: AC_DEFINE([NEED_FUNC_MAIN], 1,
    autoheader: [Define if a function `main' is needed.])
    autoheader:
    autoheader: WARNING: More sophisticated templates can also be produced, see the
    autoheader: WARNING: documentation.
    Running automake --gnu ...
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    configure.in:2: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
    configure.in:2: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation
    configure.in:19: installing './config.guess'
    configure.in:19: installing './config.sub'
    configure.in:2: installing './install-sh'
    configure.in:2: installing './missing'
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    src/Makefile.am: installing './depcomp'
    src/Makefile.am:10: warning: 'CFLAGS' is a user variable, you should not override it;
    src/Makefile.am:10: use 'AM_CFLAGS' instead
    Running autoconf ...
    Running ./configure --prefix=/usr --enable-progpath=/usr/bin ...
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking for g++... g++
    checking whether the C++ compiler works... yes
    checking for C++ compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking whether make sets $(MAKE)... (cached) yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking how to run the C++ preprocessor... g++ -E
    checking for ld used by g++... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC -DPIC
    checking if g++ PIC flag -fPIC -DPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking if g++ supports -c -o file.o... (cached) yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking dynamic linker characteristics... (cached) GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking for main in -lcups... yes
    checking for ANSI C header files... (cached) yes
    checking for sys/wait.h that is POSIX.1 compatible... yes
    checking arpa/inet.h usability... yes
    checking arpa/inet.h presence... yes
    checking for arpa/inet.h... yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking netdb.h usability... yes
    checking netdb.h presence... yes
    checking for netdb.h... yes
    checking netinet/in.h usability... yes
    checking netinet/in.h presence... yes
    checking for netinet/in.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking sys/socket.h usability... yes
    checking sys/socket.h presence... yes
    checking for sys/socket.h... yes
    checking for unistd.h... (cached) yes
    checking for an ANSI C-conforming const... yes
    checking for size_t... yes
    checking for pid_t... yes
    checking vfork.h usability... no
    checking vfork.h presence... no
    checking for vfork.h... no
    checking for fork... yes
    checking for vfork... yes
    checking for working fork... yes
    checking for working vfork... (cached) yes
    checking for stdlib.h... (cached) yes
    checking for GNU libc compatible malloc... yes
    checking for memset... yes
    checking for socket... yes
    checking for strdup... yes
    checking for strrchr... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    Now type `make' to compile
    make all-recursive
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend'
    Making all in src
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend/src'
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -MT cnij_backend_common.o -MD -MP -MF .deps/cnij_backend_common.Tpo -c -o cnij_backend_common.o cnij_backend_common.c
    mv -f .deps/cnij_backend_common.Tpo .deps/cnij_backend_common.Po
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -MT cnij_usb.o -MD -MP -MF .deps/cnij_usb.Tpo -c -o cnij_usb.o cnij_usb.c
    cnij_usb.c: In function ‘main’:
    cnij_usb.c:97:7: warning: unused variable ‘port’ [-Wunused-variable]
    cnij_usb.c:94:4: warning: unused variable ‘username’ [-Wunused-variable]
    cnij_usb.c:93:4: warning: unused variable ‘hostname’ [-Wunused-variable]
    cnij_usb.c:92:7: warning: unused variable ‘method’ [-Wunused-variable]
    mv -f .deps/cnij_usb.Tpo .deps/cnij_usb.Po
    /bin/sh ../libtool --tag=CC --mode=link gcc -O2 -Wall -Wl,-O1,--sort-common,--as-needed,-z,relro -o cnijusb cnij_backend_common.o cnij_usb.o -lcups -lcups
    libtool: link: gcc -O2 -Wall -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -o cnijusb cnij_backend_common.o cnij_usb.o -lcups
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend/src'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend'
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend'
    Making install in src
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend/src'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend/src'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    /usr/bin/mkdir -p '/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/pkg/usr/lib/cups/backend'
    /bin/sh ../libtool --mode=install /usr/bin/install -c cnijusb '/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/pkg/usr/lib/cups/backend'
    libtool: install: /usr/bin/install -c cnijusb /tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/pkg/usr/lib/cups/backend/cnijusb
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend/src'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend/src'
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/backend'
    . ip1900
    .......... lgmon
    processing .
    Running aclocal ...
    aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    configure.in:12: error: 'AM_CONFIG_HEADER': this macro is obsolete.
    You should use the 'AC_CONFIG_HEADERS' macro instead.
    /usr/share/aclocal-1.13/obsolete-err.m4:12: AM_CONFIG_HEADER is expanded from...
    configure.in:12: the top level
    autom4te: /usr/bin/m4 failed with exit status: 1
    aclocal: error: echo failed with exit status: 1
    Running autoheader...
    autoheader: WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot'
    autoheader: WARNING: and `config.h.top', to define templates for `config.h.in'
    autoheader: WARNING: is deprecated and discouraged.
    autoheader:
    autoheader: WARNING: Using the third argument of `AC_DEFINE' and
    autoheader: WARNING: `AC_DEFINE_UNQUOTED' allows one to define a template without
    autoheader: WARNING: `acconfig.h':
    autoheader:
    autoheader: WARNING: AC_DEFINE([NEED_FUNC_MAIN], 1,
    autoheader: [Define if a function `main' is needed.])
    autoheader:
    autoheader: WARNING: More sophisticated templates can also be produced, see the
    autoheader: WARNING: documentation.
    autoheader: error: AC_CONFIG_HEADERS not found in configure.in
    Running automake --gnu ...
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    configure.in: error: no proper invocation of AM_INIT_AUTOMAKE was found.
    configure.in: You should verify that configure.in invokes AM_INIT_AUTOMAKE,
    configure.in: that aclocal.m4 is present in the top-level directory,
    configure.in: and that aclocal.m4 was recently regenerated (using aclocal)
    src/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    src/Makefile.am: installing './depcomp'
    /usr/share/automake-1.13/am/depend2.am: error: am__fastdepCC does not appear in AM_CONDITIONAL
    /usr/share/automake-1.13/am/depend2.am: The usual way to define 'am__fastdepCC' is to add 'AC_PROG_CC'
    /usr/share/automake-1.13/am/depend2.am: to 'configure.in' and run 'aclocal' and 'autoconf' again
    /usr/share/automake-1.13/am/depend2.am: error: AMDEP does not appear in AM_CONDITIONAL
    /usr/share/automake-1.13/am/depend2.am: The usual way to define 'AMDEP' is to add one of the compiler tests
    /usr/share/automake-1.13/am/depend2.am: AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC, AC_PROG_OBJCXX,
    /usr/share/automake-1.13/am/depend2.am: AM_PROG_AS, AM_PROG_GCJ, AM_PROG_UPC
    /usr/share/automake-1.13/am/depend2.am: to 'configure.in' and run 'aclocal' and 'autoconf' again
    Running autoconf ...
    configure.in:11: error: possibly undefined macro: AM_INIT_AUTOMAKE
    If this token and others are legitimate, please use m4_pattern_allow.
    See the Autoconf documentation.
    configure.in:12: error: possibly undefined macro: AM_CONFIG_HEADER
    configure.in:27: error: possibly undefined macro: AM_PROG_CC_STDC
    configure.in:31: error: possibly undefined macro: AM_PATH_GTK_2_0
    Running ./configure --prefix=/usr --enable-libpath=/usr/lib/bjlib --enable-binpath=/usr/bin --enable-progpath=/usr/bin --program-suffix=ip1900 ...
    configure: WARNING: unrecognized options: --enable-libpath, --enable-binpath
    ./configure: line 1886: syntax error near unexpected token `lgmon{program_suffix},'
    ./configure: line 1886: `AM_INIT_AUTOMAKE(lgmon{program_suffix}, 3.00-1)'
    ==> BŁĄD: Wystąpił błąd w build().
    Przerywam...
    Before both:
    ==> Zaczynam build()
    patching file backend/src/cnij_backend_common.c
    patching file cngpijmon/src/bjcupsmon_cups.c
    ......... libs
    processing .
    Running libtoolize...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: You should add the contents of the following files to `aclocal.m4':
    libtoolize: `/usr/share/aclocal/libtool.m4'
    libtoolize: `/usr/share/aclocal/ltoptions.m4'
    libtoolize: `/usr/share/aclocal/ltversion.m4'
    libtoolize: `/usr/share/aclocal/ltsugar.m4'
    libtoolize: `/usr/share/aclocal/lt~obsolete.m4'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    Running aclocal ...
    aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    Running autoheader...
    Running automake --gnu ...
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    configure.in:2: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
    configure.in:2: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation
    configure.in:11: installing './config.guess'
    configure.in:11: installing './config.sub'
    configure.in:2: installing './install-sh'
    configure.in:2: installing './missing'
    Makefile.am: installing './COPYING' using GNU General Public License v3 file
    Makefile.am: Consider adding the COPYING file to the version control system
    Makefile.am: for your code, to avoid questions about which license your project uses
    automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    buftool/Makefile.am: installing './depcomp'
    Running autoconf ...
    Running ./configure --prefix=/usr --enable-progpath=/usr/bin ...
    configure: WARNING: unrecognized options: --enable-progpath
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking for g++... g++
    checking whether the C++ compiler works... yes
    checking for C++ compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking whether make sets $(MAKE)... (cached) yes
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking how to print strings... printf
    checking for a sed that does not truncate output... /usr/bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking how to run the C++ preprocessor... g++ -E
    checking for ld used by g++... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC -DPIC
    checking if g++ PIC flag -fPIC -DPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking if g++ supports -c -o file.o... (cached) yes
    checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking dynamic linker characteristics... (cached) GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking for ANSI C header files... (cached) yes
    checking for sys/wait.h that is POSIX.1 compatible... yes
    checking malloc.h usability... yes
    checking malloc.h presence... yes
    checking for malloc.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking for unistd.h... (cached) yes
    checking for an ANSI C-conforming const... yes
    checking for pid_t... yes
    checking vfork.h usability... no
    checking vfork.h presence... no
    checking for vfork.h... no
    checking for fork... yes
    checking for vfork... yes
    checking for working fork... yes
    checking for working vfork... (cached) yes
    checking for stdlib.h... (cached) yes
    checking for GNU libc compatible malloc... yes
    checking for dup2... yes
    checking for memset... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating buftool/Makefile
    config.status: creating paramlist/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    configure: WARNING: unrecognized options: --enable-progpath
    Now type `make' to compile buftool
    make all-recursive
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    Making all in paramlist
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -O2 -MT paramlist.lo -MD -MP -MF .deps/paramlist.Tpo -c -o paramlist.lo paramlist.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -O2 -MT paramlist.lo -MD -MP -MF .deps/paramlist.Tpo -c paramlist.c -fPIC -DPIC -o .libs/paramlist.o
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -O2 -MT paramlist.lo -MD -MP -MF .deps/paramlist.Tpo -c paramlist.c -o paramlist.o >/dev/null 2>&1
    mv -f .deps/paramlist.Tpo .deps/paramlist.Plo
    /bin/sh ../libtool --tag=CC --mode=link gcc -O2 -Wall -O2 -Wl,-O1,--sort-common,--as-needed,-z,relro -o libparamlist.la paramlist.lo
    libtool: link: ar cru .libs/libparamlist.a .libs/paramlist.o
    libtool: link: ranlib .libs/libparamlist.a
    libtool: link: ( cd ".libs" && rm -f "libparamlist.la" && ln -s "../libparamlist.la" "libparamlist.la" )
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    Making all in buftool
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -MT buftool.o -MD -MP -MF .deps/buftool.Tpo -c -o buftool.o buftool.c
    mv -f .deps/buftool.Tpo .deps/buftool.Po
    gcc -DHAVE_CONFIG_H -I. -I.. -O2 -MT buflist.o -MD -MP -MF .deps/buflist.Tpo -c -o buflist.o buflist.c
    mv -f .deps/buflist.Tpo .deps/buflist.Po
    rm -f libbuftool.a
    ar cru libbuftool.a buftool.o buflist.o
    ranlib libbuftool.a
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    Making install in paramlist
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/paramlist'
    Making install in buftool
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs/buftool'
    make[1]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[2]: Wejście do katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[2]: Nie ma nic do zrobienia w `install-exec-am'.
    make[2]: Nie ma nic do zrobienia w `install-data-am'.
    make[2]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    make[1]: Opuszczenie katalogu `/tmp/yaourt-tmp-kierek/aur-cups-canon-3.00/src/cnijfilter-common-3.00/libs'
    ......... cngpij
    processing .
    Running libtoolize...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: You should add the contents of the following files to `aclocal.m4':
    libtoolize: `/usr/share/aclocal/libtool.m4'
    libtoolize: `/usr/share/aclocal/ltoptions.m4'
    libtoolize: `/usr/share/aclocal/ltversion.m4'
    libtoolize: `/usr/share/aclocal/ltsugar.m4'
    libtoolize: `/usr/share/aclocal/lt~obsolete.m4'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    Running aclocal ...
    aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
    Running autoheader...
    autoheader: WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot'
    autoheader: WARNING: and `config.h.top', to define templates for `config.h.in'
    autoheader: WARNING: is deprecated and discouraged.
    autoheader:
    autoheader: WARNING: Using the third argument of `AC_DEFINE' and
    autoheader: WARNING: `AC_DEFINE_UNQUOTED' allows one to define a template without
    autoheader: WARNING: `acconfig.h':
    autoheader:
    autoheader: WARNING: AC_DEFINE([NEED_FUNC_MAIN], 1,
    autoheader: [Define if a function `main' is needed.])
    autoheader:
    autoheader: WARNING: More sophisticated templates can also be produced, see the
    autoheader: WARNING: documentation.

  • New Windows 10 Insider Preview Build 10074 now available

    New Windows 10 Insider Preview Build 10074 now available, see here- http://blogs.windows.com/bloggingwindows/2015/04/2​9/new-windows-10-insider-preview-build-10074-now-a​...
    and from that page:
    New Windows 10 Insider Preview Build 10074 now available
    April 29, 2015April 29, 2015 by Gabe Aul // PC, Tablet // 0 Comments
    113
    532
    37
    Hi everyone from the Build 2015 conference happening right now in San Francisco! If you haven’t already, check out Terry’s blog post about all the Windows 10 announcements we made today. If you’re at Build this week or at Ignite in Chicago next week – keep your eye out for me and say hello!
    Today we have a new build available to both the Fast and Slow ring for Windows Insiders (that means we’ll have ISOs available too for those of you who like a clean install.) With this build we continue to evolve the features and design for Windows 10, and you’ll see a lot of subtle changes and improvements, many of which were influenced directly by Windows Insiders. One of those changes is the reintroduction of some Aero Glass elements in the UI, but there are many more things throughout the product as well. We continue to use your feedback directly day to day in how our feature teams operate, and we hope that Windows 10 will be the best version of Windows yet because you had a direct hand in its creation.
    One other subtle change that you’ll notice is that we’ve changed how we talk about the builds from “Technical Preview” to “Insider Preview” to reflect the importance of the Windows Insider community in how we’re building Windows 10.
    And speaking of Windows Insiders, we were super excited to host the 10 winners of our Windows Insiders to Campus contest in Redmond last week and hear their thoughts on the program and the product. We’ll share more on that soon.
    Here is what’s newSome of the things that Joe demoed on stage earlier today during the Build keynote are not yet included in this build and will be in future builds. But we still have a bunch of new stuff for you to check out!
    General UX improvements: We made a bunch of UX improvements with the last build and you’ll see even more in this build. For example, you’ll notice a new Live Tile animation for Start in addition to in addition to some performance and stability improvements for Live Tiles.
    We’ve done work to better support high DPI displays. And we know many Windows Insiders are running multi-mon setups – often with 2 monitors with different DPI. You will start to see some work we’re doing to make sure core UX components in Windows scale correctly on both your monitors so things look nice regardless of DPI.
    We’ve also heard loud in clear that many Windows Insiders want to see Aero Glass from Windows 7 make a comeback. We’ve been working out how to satisfy this request, and are trying some things out with this build to see how you like them. We’re running a little A/B test with this build. 50% of you will normal transparency on the Start menu and taskbar while the other 50% will see a blur effect on the Start menu and taskbar (like frosted glass). If Windows Insiders really like the blur effect, we will add it to more areas and even consider making it the default instead of standard transparency. Which one did you get? Send us feedback about it via the Windows Feedback app!
    Even more improvements to Continuum: We’re continuing to make Continuum better and invest in a simplified taskbar. Additionally when you close an application in Tablet mode, we take you back to the Start screen instead of the desktop as you would expect when using a tablet. You will see general polish on snapping, and the shared divider between two snapped windows now let’s you adjust the size.
    Multi-tasking improvements: We’re continuing to refine and complete our mulit-tasking experience with Windows 10. Check out Alt-Tab, Task-View, and Snap Assist. Snap Assist also now supports the ability to close a window during Snap Assist.
    New default Windows sounds: We’ve heard a lot of feedback from people that they want some fresh system sounds for Windows 10. Check them out and let us know what you think.
    Visual refresh for Cortana: You will see a visual refresh for Cortana in this build that makes the experience feel more ingrained into the overall Windows experience. Start and Cortana are now more tightly integrated. As you start to search for an app from within Start, Cortana can seamlessly take over and bring back the right result. The new Windows split view control has been added to Cortana’s left rail, offering quick access to key Cortana functionality like the Notebook, Reminders or Feedback on how Cortana’s doing. This split view control helps anchor Cortana to the rest of the Windows UI and provides navigation consistent with many other Windows first party applications.
    New experiences in Cortana: We are making available some new and updated experiences in Cortana powered by Bing Instant Answers. Cortana will aim to answer your question while you’re still typing. Here are a few questions you can try:
    Weather – “Seattle Weather”
    Finance – “MSFT stock”
    Dictionary – “define astounding”
    Calculator – “48*92”
    Flight Status – “UA 238”
    Reference – “how tall is brad pitt”
    Showtimes – “movies near me”
    Tech Help – “memory in my computer”
    Time Zone – “time in London”
    Unit Conversion – “42 ft in meters”
    Chit Chat – “tell me a joke”
    Updates for the Music and Video Preview apps: We’ve also shipped updates to these apps. The Music Preview app (3.6.999.0) has some UX improvements including a more immersive Now Playing experience with a true full screen mode. With the Video Preview app (3.6.999.0) – you can download movies, TV shows, and TV seasons and check progress, pause, resume, cancel the download. You can also download, delete, and even re-download videos as many times as you want on up to three devices (we’re planning to increase the number of devices you can download content too!). Closed captioning for purchased content now appears. You will see a list of new features when you first launch these app after each update!
    Xbox app April 2015 update: The Xbox app for Windows 10 has been updated (your version number should be 4.4.9014.0 or higher) with new features like Game DVR for PC games, screenshots, a Live Tile, user profiles, and real-name sharing. Oh and the drivers for Xbox controllers are now included with Windows 10, so you no longer have to download and install controller drivers on Windows 10. For more on this month’s Xbox app for Windows 10 update as well as the new Avatars app – read this blog post.
    Windows Store Beta improvements: We’re excited about delivering a single unified Store experience in Windows 10 which we’re talking more about this week at Build. We’ve made some improvements to the Store Beta which is now a blue tile instead of grey. Xbox Live games should be working and so are in-app purchases. Apps you purchased on a PC running Windows 8.1 will now show up in the Store Beta on Windows 10 as owned (and vice-versa). We’re also expanding the Store Beta from 41 markets with the addition of these new markets: Afghanistan, Åland Islands, Albania, Algeria, American Samoa, Andorra, Angola, Anguilla, Antarctica, Antigua and Barbuda, Armenia, Aruba, Azerbaijan, The Bahamas, Bangladesh, Barbados, Belize, Benin, Bermuda, Bahrain, Bhutan, Bolivia, Bonaire, Bosnia and Herzegovina, Botswana, Bouvet Island, Cyprus, Dominican Republic, El Salvador, Georgia, Ghana, Guatemala, Iceland, Iraq, Kazakhstan, Malta, Pakistan, Qatar, Sri Lanka, Jordan, Lebanon, Nicaragua, Oman, Panama, Puerto Rico, Paraguay, Trinidad and Tobago, Uganda, Venezuela.
    Discovering features and apps in Windows 10: We are investing in easy “bite-sized” learning and discovery experiences so that users can get more out of Windows 10. This ranges from tips and tricks on the Lock screen, to helping users discover high quality apps through Start, the Lock screen and Cortana. Be confident that you won’t miss out on new features and enjoy the ease of having high quality apps curated for you. It’s optional, and if anything doesn’t strike your fancy, you can provide feedback directly, such as whether you like an image or an app. These new experiences will be rolling out over time, so you may not see them in your market yet.
    Here are some things we fixed
    You can now launch Win32 (desktop) apps from the Start menu again. Sorry about this bug!
    You should be able to download music in the Xbox Music and Music Preview apps.
    When you minimize an app playing audio, it should continue playing in the background.
    Here are some known issues
    Developers cannot enable Developer Mode in the Settings app for installing and testing apps on this build. We’ll enable this in an upcoming build. In the meantime, you will need enable your device for development using the Group Policy Editor.
    There is an issue in this build preventing some games from playing in full screen mode. We’re working to get a fix out via WU as soon as possible.
    The People app continues to crash. We’re planning to release an update for the People app through the Store Beta that fixes this.
    We hope you’ll agree that 10074 has some nice improvements and is another step forward towards delivering a great Windows 10 release. Please put it through the paces and keep sending us feedback on the things that you like and the things you want us to keep working on using the Windows Feedback app. I hope that you’ll also download the development tools released at Build and will build some terrific Universal Windows apps as well!
    Thanks,
    g
    S70-ABT2N22 Windows 7 Pro & 8.1Pro, C55-A5180 Windows 8.1****Click on White “Kudos” STAR to say thanks!****

    Which computer? There is a label on the bottom.
    Try an older version of the driver for your model.
       Touchpad stopped working
    -Jerry

  • I have IMac 10.7.5 Lion I use I forgot the password and I did a few fixes from the we sites, which did not work and now I can not get the computer to reboot the gray screen comes on and if a shift c I get a load bar and it goes half way and help

    I have IMac 10.7.5 Lion I use I forgot the password and I did a few fixes from web sites, which did not work and now I can not get the computer to reboot the gray screen comes on with the apple and if a shift+c, I get a load bar and it goes half way and stops, I can get into the black screen area with the hard drive info
    I did the following:   mount -uw /    rm/var/db/.AppleSetupDone    shutdown/uses/us  reboot Ok I know I should not have, but now I need help to reboot and hopefully not lose everything on the desk top, Linda Markle

    You did the wrong things. In the future it's a good idea to remember not to do something when you don't know what you are doing and what happens when you do it.
    Forgot Your Account Password
    For Lion, Mountain Lion, or Mavericks
        Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
         When the menubar appears select Terminal from the Utilities menu.
         Enter resetpassword at the prompt and press RETURN. Follow
         instructions in the dialog window that will appear.
         Or see:
           Reset a Mac OS X 10.7 Lion Password
           OS X Mountain Lion- Reset a login password,
           OS X Mavericks- Solve password problems,
           OS X Lion- Apple ID can be used to reset your user account password.

Maybe you are looking for

  • Email to be sent on execution of Process chain

    Hi, I have a requirement as follows. On successful execution of process chain an email must be sent to a group of users. I have made a distribution list using Tcode SO23 and included the message in the last step of process chain. But no messsge is be

  • When saving a file in Indesign the tab goes off the top of the page

    Having trouble with dragging the size of the artboard window and when I save a document the top of the tab goes off the page?

  • Intel Mini: Diabling the onboard bluetooth hardware/using a Dlink USB BT

    I have a Intel Mini Core 2 Duo (1.8x Ghz) I broke the bluetooth antennae connector inside the case while upgrading the memory. My BT keyboard and mouse continues to work, but only with the case open, and when they are very close to the computer. I ha

  • Editing a MS Word document on CD

    Okay, I am working on a variety of books which I want to save on CDs so that I can more easily access the individual chapters in order to edit them as I need to.  How the F do I go about doing this?  I inserted a blank CD-RW and saved a chapter to it

  • Regarding sessions in Jsp

    Hi All, I have developed one web application using JSP's, which is accessed by more than 500 employees at a time. today i noticed that some employees getting another employee data, who is also accessing at same time. i am not able understand what is