Page 17 of 48 FirstFirst ... 7151617181927 ... LastLast
Results 161 to 170 of 480

Thread: HOWTO: Install basic G15Tools support for the Logitech G15

  1. #161
    Join Date
    Apr 2006
    Beans
    118

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    What you'll need to do is download the latest distfiles for libg15, libg15render, g15daemon and g15composer. You can get them from http://g15tools.sourceforge.net/. Extract all of them, then build them in order. Go into the directory and configure the package with ./configure --prefix=/usr then build it with make and install with sudo make install. Lig15render and g15composer can be built with truetype font support if you add --enable-ttf to the configure line. You may need to install libfreetype6-dev to use truetype fonts.

  2. #162
    Join Date
    Sep 2005
    Location
    Christchurch, New Zealand
    Beans
    217
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    Hmmmm I'll try anything once...

    So I get the files, put them all into a temp folder.
    cd to the temp folder (then you sort of lost me, do I:
    then do a ./configure --prefix=/usr on each of the files??? eg: ./configure --prefix=/usr libg15

    If you could type each of the commands I need to do I could follow that real easy (I good at following commands)

    Quote Originally Posted by Aneurysm9 View Post
    What you'll need to do is download the latest distfiles for libg15, libg15render, g15daemon and g15composer. You can get them from http://g15tools.sourceforge.net/. Extract all of them, then build them in order. Go into the directory and configure the package with ./configure --prefix=/usr then build it with make and install with sudo make install. Lig15render and g15composer can be built with truetype font support if you add --enable-ttf to the configure line. You may need to install libfreetype6-dev to use truetype fonts.

  3. #163
    Join Date
    Apr 2006
    Beans
    118

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    sure, first we'll install libfreetype6-dev if you don't have it:
    Code:
    sudo apt-get install libfreetype6-dev
    then we'll extract all the files (assuming we're in a directory containing only the tar.bz2 files you've downloaded):
    Code:
    tar jxvf *.bz2
    Now we have directories for each tarball and we want to build them in order. Since we're doing the same thing for each directory we'll use a for loop to cut down on typing

    Code:
    for package in libg15-1.1.0 libg15render-1.1.1 g15daemon-1.2.6a g15composer-3.0.2
    do;
    cd $package
    ./configure --prefix=/usr --enable-ttf
    make
    sudo make install
    cd ..
    done
    And that should do it.

  4. #164
    Join Date
    Sep 2005
    Location
    Christchurch, New Zealand
    Beans
    217
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    Ok, I checked and the libfreetype6-dev is already installed..

    While I was waiting I have grabbed the files and extracted them into a folder called sources. (I ended up with the following folders

    g15composer-3.0.2
    g15daemon-1.2.6a
    g15lcd-1.2
    libg15-1.1.0
    libg15render-1.1.1

    Is this correct so far??

    If so, where do I put that loop?? paste it into terminal??

  5. #165
    Join Date
    Apr 2006
    Beans
    118

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    So far so good. We don't need g15lcd-1.2, that's the original program that the other tools reimplement. Paste the for loop into a shell and it should start building each package.

  6. #166
    Join Date
    Sep 2005
    Location
    Christchurch, New Zealand
    Beans
    217
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    oops, something not right.. - I pasted the lines into terminal like you said and got the following:

    ohn@kubuntu:/media/Go-Between/linux-g15/sources/sources$ for package in libg15-1.1.0 libg15render-1.1.1 g15daemon-1.2.6a g15composer-3.0.2
    > do;
    bash: syntax error near unexpected token `;'
    john@kubuntu:/media/Go-Between/linux-g15/sources/sources$ cd $package
    john@kubuntu:~$ ./configure --prefix=/usr --enable-ttf
    bash: ./configure: No such file or directory
    john@kubuntu:~$ make
    make: *** No targets specified and no makefile found. Stop.
    john@kubuntu:~$ sudo make install
    Password:
    make: *** No rule to make target `install'. Stop.
    john@kubuntu:~$

  7. #167
    Join Date
    Apr 2006
    Beans
    118

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    oops, serves me right for trying to give instructions from memory. Remove the ; and it should work.

  8. #168
    Join Date
    Sep 2005
    Location
    Christchurch, New Zealand
    Beans
    217
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    Should I have done that in root terminal instead of normal terminal?? cause it got a few errors (not allowed etc)

    Here is part of the output for you to look at, I can't understand it... (couldn't put it all in cause it was too long...)

    Code:
    john@kubuntu:/media/Go-Between/linux-g15/sources/sources$ for package in libg15-1.1.0 libg15render-1.1.1 g15daemon-1.2.6a g15composer-3.0.2
    > do
    > cd $package
    > ./configure --prefix=/usr --enable-ttf
    > make
    > sudo make install
    > cd ..
    > done
    chmod: changing permissions of `conf6657.sh': Operation not permitted
    chmod: changing permissions of `conf6657.file': Operation not permitted
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/nm -B
    checking whether ln -s works... no, using cp -p
    checking how to recognise dependent libraries... pass_all
    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 dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking for g++... g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking dependency style of g++... gcc3
    checking how to run the C++ preprocessor... g++ -E
    checking for g77... no
    checking for f77... no
    checking for xlf... no
    checking for frt... no
    checking for pgf77... no
    checking for cf77... no
    checking for fort77... no
    checking for fl32... no
    checking for af77... no
    checking for f90... no
    checking for xlf90... no
    checking for pgf90... no
    checking for pghpf... no
    checking for epcf90... no
    checking for gfortran... no
    checking for g95... no
    checking for f95... no
    checking for fort... no
    checking for xlf95... no
    checking for ifort... no
    checking for ifc... no
    checking for efc... no
    checking for pgf95... no
    checking for lf95... no
    checking for ftn... no
    checking whether we are using the GNU Fortran 77 compiler... no
    checking whether  accepts -g... no
    checking the maximum length of command line arguments... 32768
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for objdir... .libs
    checking for ar... ar
    checking for ranlib... ranlib
    checking for strip... strip
    checking if gcc static flag  works... yes
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC
    checking if gcc PIC flag -fPIC works... yes
    checking if gcc supports -c -o file.o... chmod: changing permissions of `.': Operation not permitted
    yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    configure: creating libtool
    chmod: changing permissions of `libtool': Operation not permitted
    appending configuration tag "CXX" to libtool
    checking for ld used by g++... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC
    checking if g++ PIC flag -fPIC works... yes
    checking if g++ supports -c -o file.o... chmod: changing permissions of `.': Operation not permitted
    yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    appending configuration tag "F77" to libtool
    chmod: changing permissions of `libtool': Operation not permitted
    checking for main in -lusb... yes
    checking for ANSI C header files... (cached) yes
    checking for string.h... (cached) yes
    checking usb.h usability... yes
    checking usb.h presence... yes
    checking for usb.h... yes
    checking for an ANSI C-conforming const... yes
    checking for memset... yes
    configure: creating ./config.status
    chmod: changing permissions of `./config.status': Operation not permitted
    chmod: changing permissions of `conf10052.sh': Operation not permitted
    chmod: changing permissions of `conf10052.file': Operation not permitted
    config.status: creating Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    make  all-am
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/libg15-1.1.0'
    if /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.     -g -O2 -MT libg15.lo -MD -MP -MF ".deps/libg15.Tpo" -c -o libg15.lo libg15.c; \
            then mv -f ".deps/libg15.Tpo" ".deps/libg15.Plo"; else rm -f ".deps/libg15.Tpo"; exit 1; fi
    mkdir .libs
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -MT libg15.lo -MD -MP -MF .deps/libg15.Tpo -c libg15.c  -fPIC -DPIC -o .libs/libg15.o
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -MT libg15.lo -MD -MP -MF .deps/libg15.Tpo -c libg15.c -o libg15.o >/dev/null 2>&1
    /bin/sh ./libtool --tag=CC --mode=link gcc  -g -O2   -o libg15.la -rpath /usr/lib -version-info 1:0:0 libg15.lo  -lusb
    gcc -shared  .libs/libg15.o  /usr/lib/libusb.so  -Wl,-soname -Wl,libg15.so.1 -o .libs/libg15.so.1.0.0
    (cd .libs && rm -f libg15.so.1 && cp -p libg15.so.1.0.0 libg15.so.1)
    cp: preserving times for `libg15.so.1': Operation not permitted
    make[1]: *** [libg15.la] Error 1
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/libg15-1.1.0'
    make: *** [all] Error 2
    /bin/sh ./libtool --tag=CC --mode=link gcc  -g -O2   -o libg15.la -rpath /usr/lib -version-info 1:0:0 libg15.lo  -lusb
    rm -fr  .libs/libg15.so.1 .libs/libg15.so.1.0.0
    gcc -shared  .libs/libg15.o  /usr/lib/libusb.so  -Wl,-soname -Wl,libg15.so.1 -o .libs/libg15.so.1.0.0
    (cd .libs && rm -f libg15.so.1 && cp -p libg15.so.1.0.0 libg15.so.1)
    (cd .libs && rm -f libg15.so && cp -p libg15.so.1.0.0 libg15.so)
    ar cru .libs/libg15.a  libg15.o
    ranlib .libs/libg15.a
    creating libg15.la
    (cd .libs && rm -f libg15.la && cp -p ../libg15.la libg15.la)
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/libg15-1.1.0'
    test -z "/usr/lib" || mkdir -p -- "/usr/lib"
     /bin/sh ./libtool --mode=install /usr/bin/install -c  'libg15.la' '/usr/lib/libg15.la'
    /usr/bin/install -c .libs/libg15.so.1.0.0 /usr/lib/libg15.so.1.0.0
    (cd /usr/lib && { cp -p -f libg15.so.1.0.0 libg15.so.1 || { rm -f libg15.so.1 && cp -p libg15.so.1.0.0 libg15.so.1; }; })
    (cd /usr/lib && { cp -p -f libg15.so.1.0.0 libg15.so || { rm -f libg15.so && cp -p libg15.so.1.0.0 libg15.so; }; })
    /usr/bin/install -c .libs/libg15.lai /usr/lib/libg15.la
    /usr/bin/install -c .libs/libg15.a /usr/lib/libg15.a
    ranlib /usr/lib/libg15.a
    chmod 644 /usr/lib/libg15.a
    PATH="$PATH:/sbin" ldconfig -n /usr/lib
    ldconfig: /usr/lib/libg15.so.1 is not a symbolic link
    
    ----------------------------------------------------------------------
    Libraries have been installed in:
       /usr/lib
    
    If you ever happen to want to link against installed libraries
    in a given directory, LIBDIR, you must either use libtool, and
    specify the full pathname of the library, or use the `-LLIBDIR'
    flag during linking and do at least one of the following:
       - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
         during execution
       - add LIBDIR to the `LD_RUN_PATH' environment variable
         during linking
       - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
       - have your system administrator add LIBDIR to `/etc/ld.so.conf'
    
    See any operating system documentation about shared libraries for
    more information, such as the ld(1) and ld.so(8) manual pages.
    ----------------------------------------------------------------------
    test -z "/usr/include" || mkdir -p -- "/usr/include"
     /usr/bin/install -c -m 644 'libg15.h' '/usr/include/libg15.h'
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/libg15-1.1.0'
    chmod: changing permissions of `conf10565.sh': Operation not permitted
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ANSI C... none needed
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking for a sed that does not truncate output... /bin/sed
    checking for egrep... grep -E
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/nm -B
    checking whether ln -s works... no, using cp -p
    checking how to recognise dependent libraries... pass_all
    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 dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking for g++... g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking dependency style of g++... gcc3
    checking how to run the C++ preprocessor... g++ -E
    checking for g77... no
    checking for f77... no
    checking for xlf... no
    checking for frt... no
    checking for pgf77... no
    checking for fort77... no
    checking for fl32... no
    checking for af77... no
    checking for f90... no
    checking for xlf90... no
    checking for pgf90... no
    checking for epcf90... no
    checking for f95... no
    checking for fort... no
    checking for xlf95... no
    checking for ifc... no
    checking for efc... no
    checking for pgf95... no
    checking for lf95... no
    checking for gfortran... no
    checking whether we are using the GNU Fortran 77 compiler... no
    checking whether  accepts -g... no
    checking the maximum length of command line arguments... 32768
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for objdir... .libs
    checking for ar... ar
    checking for ranlib... ranlib
    checking for strip... strip
    checking for correct ltmain.sh version... yes
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC
    checking if gcc PIC flag -fPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    configure: creating libtool
    chmod: changing permissions of `libtool': Operation not permitted
    appending configuration tag "CXX" to libtool
    checking for ld used by g++... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC
    checking if g++ PIC flag -fPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    appending configuration tag "F77" to libtool
    chmod: changing permissions of `libtool': Operation not permitted
    checking whether to enable FreeType2 support... yes
    checking for writePixmapToLCD in -lg15... yes
    checking for ceil in -lm... yes
    checking for an ANSI C-conforming const... yes
    checking for ANSI C header files... (cached) yes
    checking for string.h... (cached) yes
    checking ft2build.h usability... yes
    checking ft2build.h presence... no
    configure: WARNING: ft2build.h: accepted by the compiler, rejected by the preprocessor!
    configure: WARNING: ft2build.h: proceeding with the compiler's result
    checking for ft2build.h... yes
    checking for ANSI C header files... (cached) yes
    checking for memset... yes
    configure: creating ./config.status
    chmod: changing permissions of `./config.status': Operation not permitted
    chmod: changing permissions of `conf13747.sh': Operation not permitted
    config.status: creating Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    make  all-am
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/libg15render-1.1.1'
    if /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.    -g -O2 -I/usr/include/freetype2  -g -O2 -I/usr/include/freetype2 -MT text.lo -MD -MP -MF ".deps/text.Tpo" -c -o text.lo text.c; \
            then mv -f ".deps/text.Tpo" ".deps/text.Plo"; else rm -f ".deps/text.Tpo"; exit 1; fi
    mkdir .libs
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT text.lo -MD -MP -MF .deps/text.Tpo -c text.c  -fPIC -DPIC -o .libs/text.o
    text.c: In function 'g15r_renderString':
    text.c:92: warning: comparison between pointer and integer
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT text.lo -MD -MP -MF .deps/text.Tpo -c text.c -o text.o >/dev/null 2>&1
    if /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.    -g -O2 -I/usr/include/freetype2  -g -O2 -I/usr/include/freetype2 -MT pixel.lo -MD -MP -MF ".deps/pixel.Tpo" -c -o pixel.lo pixel.c; \
            then mv -f ".deps/pixel.Tpo" ".deps/pixel.Plo"; else rm -f ".deps/pixel.Tpo"; exit 1; fi
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT pixel.lo -MD -MP -MF .deps/pixel.Tpo -c pixel.c  -fPIC -DPIC -o .libs/pixel.o
    pixel.c: In function 'g15r_drawBar':
    pixel.c:324: warning: incompatible implicit declaration of built-in function 'ceil'
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT pixel.lo -MD -MP -MF .deps/pixel.Tpo -c pixel.c -o pixel.o >/dev/null 2>&1
    if /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.    -g -O2 -I/usr/include/freetype2  -g -O2 -I/usr/include/freetype2 -MT screen.lo -MD -MP -MF ".deps/screen.Tpo" -c -o screen.lo screen.c; \
            then mv -f ".deps/screen.Tpo" ".deps/screen.Plo"; else rm -f ".deps/screen.Tpo"; exit 1; fi
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT screen.lo -MD -MP -MF .deps/screen.Tpo -c screen.c  -fPIC -DPIC -o .libs/screen.o
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT screen.lo -MD -MP -MF .deps/screen.Tpo -c screen.c -o screen.o >/dev/null 2>&1
    if /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.    -g -O2 -I/usr/include/freetype2  -g -O2 -I/usr/include/freetype2 -MT font_6x4.lo -MD -MP -MF ".deps/font_6x4.Tpo" -c -o font_6x4.lo font_6x4.c; \
            then mv -f ".deps/font_6x4.Tpo" ".deps/font_6x4.Plo"; else rm -f ".deps/font_6x4.Tpo"; exit 1; fi
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT font_6x4.lo -MD -MP -MF .deps/font_6x4.Tpo -c font_6x4.c  -fPIC -DPIC -o .libs/font_6x4.o
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT font_6x4.lo -MD -MP -MF .deps/font_6x4.Tpo -c font_6x4.c -o font_6x4.o >/dev/null 2>&1
    if /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.    -g -O2 -I/usr/include/freetype2  -g -O2 -I/usr/include/freetype2 -MT font_7x5.lo -MD -MP -MF ".deps/font_7x5.Tpo" -c -o font_7x5.lo font_7x5.c; \
            then mv -f ".deps/font_7x5.Tpo" ".deps/font_7x5.Plo"; else rm -f ".deps/font_7x5.Tpo"; exit 1; fi
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT font_7x5.lo -MD -MP -MF .deps/font_7x5.Tpo -c font_7x5.c  -fPIC -DPIC -o .libs/font_7x5.o
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT font_7x5.lo -MD -MP -MF .deps/font_7x5.Tpo -c font_7x5.c -o font_7x5.o >/dev/null 2>&1
    if /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.    -g -O2 -I/usr/include/freetype2  -g -O2 -I/usr/include/freetype2 -MT font_8x8.lo -MD -MP -MF ".deps/font_8x8.Tpo" -c -o font_8x8.lo font_8x8.c; \
            then mv -f ".deps/font_8x8.Tpo" ".deps/font_8x8.Plo"; else rm -f ".deps/font_8x8.Tpo"; exit 1; fi
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT font_8x8.lo -MD -MP -MF .deps/font_8x8.Tpo -c font_8x8.c  -fPIC -DPIC -o .libs/font_8x8.o
     gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -I/usr/include/freetype2 -g -O2 -I/usr/include/freetype2 -MT font_8x8.lo -MD -MP -MF .deps/font_8x8.Tpo -c font_8x8.c -o font_8x8.o >/dev/null 2>&1
    /bin/sh ./libtool --tag=CC --mode=link gcc -g -O2 -I/usr/include/freetype2  -g -O2 -I/usr/include/freetype2   -o libg15render.la -rpath /usr/lib -version-info 1:0:0 text.lo pixel.lo screen.lo font_6x4.lo font_7x5.lo font_8x8.lo -lfreetype -lm -lg15
    gcc -shared  .libs/text.o .libs/pixel.o .libs/screen.o .libs/font_6x4.o .libs/font_7x5.o .libs/font_8x8.o  /usr/lib/libfreetype.so -lm /usr/lib/libg15.so -L/usr/lib  -Wl,-soname -Wl,libg15render.so.1 -o .libs/libg15render.so.1.0.0
    (cd .libs && rm -f libg15render.so.1 && cp -p libg15render.so.1.0.0 libg15render.so.1)
    cp: preserving times for `libg15render.so.1': Operation not permitted
    make[1]: *** [libg15render.la] Error 1
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/libg15render-1.1.1'
    make: *** [all] Error 2
    /bin/sh ./libtool --tag=CC --mode=link gcc -g -O2 -I/usr/include/freetype2  -g -O2 -I/usr/include/freetype2   -o libg15render.la -rpath /usr/lib -version-info 1:0:0 text.lo pixel.lo screen.lo font_6x4.lo font_7x5.lo font_8x8.lo -lfreetype -lm -lg15
    rm -fr  .libs/libg15render.so.1 .libs/libg15render.so.1.0.0
    gcc -shared  .libs/text.o .libs/pixel.o .libs/screen.o .libs/font_6x4.o .libs/font_7x5.o .libs/font_8x8.o  /usr/lib/libfreetype.so -lm /usr/lib/libg15.so -L/usr/lib  -Wl,-soname -Wl,libg15render.so.1 -o .libs/libg15render.so.1.0.0
    (cd .libs && rm -f libg15render.so.1 && cp -p libg15render.so.1.0.0 libg15render.so.1)
    (cd .libs && rm -f libg15render.so && cp -p libg15render.so.1.0.0 libg15render.so)
    ar cru .libs/libg15render.a  text.o pixel.o screen.o font_6x4.o font_7x5.o font_8x8.o
    ranlib .libs/libg15render.a
    creating libg15render.la
    (cd .libs && rm -f libg15render.la && cp -p ../libg15render.la libg15render.la)
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/libg15render-1.1.1'
    test -z "/usr/lib" || mkdir -p -- "/usr/lib"
     /bin/sh ./libtool --mode=install /usr/bin/install -c  'libg15render.la' '/usr/lib/libg15render.la'
    /usr/bin/install -c .libs/libg15render.so.1.0.0 /usr/lib/libg15render.so.1.0.0
    (cd /usr/lib && { cp -p -f libg15render.so.1.0.0 libg15render.so.1 || { rm -f libg15render.so.1 && cp -p libg15render.so.1.0.0 libg15render.so.1; }; })
    (cd /usr/lib && { cp -p -f libg15render.so.1.0.0 libg15render.so || { rm -f libg15render.so && cp -p libg15render.so.1.0.0 libg15render.so; }; })
    /usr/bin/install -c .libs/libg15render.lai /usr/lib/libg15render.la
    /usr/bin/install -c .libs/libg15render.a /usr/lib/libg15render.a
    chmod 644 /usr/lib/libg15render.a
    ranlib /usr/lib/libg15render.a
    PATH="$PATH:/sbin" ldconfig -n /usr/lib
    ldconfig: /usr/lib/libg15render.so.1 is not a symbolic link
    
    ldconfig: /usr/lib/libg15.so.1 is not a symbolic link
    
    ----------------------------------------------------------------------
    Libraries have been installed in:
       /usr/lib
    
    If you ever happen to want to link against installed libraries
    in a given directory, LIBDIR, you must either use libtool, and
    specify the full pathname of the library, or use the `-LLIBDIR'
    flag during linking and do at least one of the following:
       - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
         during execution
       - add LIBDIR to the `LD_RUN_PATH' environment variable
         during linking
       - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
       - have your system administrator add LIBDIR to `/etc/ld.so.conf'
    
    See any operating system documentation about shared libraries for
    more information, such as the ld(1) and ld.so(8) manual pages.
    ----------------------------------------------------------------------
    test -z "/usr/include" || mkdir -p -- "/usr/include"
     /usr/bin/install -c -m 644 'libg15render.h' '/usr/include/libg15render.h'
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/libg15render-1.1.1'
    chmod: changing permissions of `conf15121.sh': Operation not permitted
    chmod: changing permissions of `conf15121.file': Operation not permitted
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/nm -B
    checking whether ln -s works... no, using cp -p
    checking how to recognise dependent libraries... pass_all
    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 dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking for g++... g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking dependency style of g++... gcc3
    checking how to run the C++ preprocessor... g++ -E
    checking for g77... no
    checking for f77... no
    checking for xlf... no
    checking for frt... no
    checking for pgf77... no
    checking for cf77... no
    checking for fort77... no
    checking for fl32... no
    checking for af77... no
    checking for f90... no
    checking for xlf90... no
    checking for pgf90... no
    checking for pghpf... no
    checking for epcf90... no
    checking for gfortran... no
    checking for g95... no
    checking for f95... no
    checking for fort... no
    checking for xlf95... no
    checking for ifort... no
    checking for ifc... no
    checking for efc... no
    checking for pgf95... no
    checking for lf95... no
    checking for ftn... no
    checking whether we are using the GNU Fortran 77 compiler... no
    checking whether  accepts -g... no
    checking the maximum length of command line arguments... 32768
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for objdir... .libs
    checking for ar... ar
    checking for ranlib... ranlib
    checking for strip... strip
    checking if gcc static flag  works... yes
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC
    checking if gcc PIC flag -fPIC works... yes
    checking if gcc supports -c -o file.o... chmod: changing permissions of `.': Operation not permitted
    yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    configure: creating libtool
    chmod: changing permissions of `libtool': Operation not permitted
    appending configuration tag "CXX" to libtool
    checking for ld used by g++... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC
    checking if g++ PIC flag -fPIC works... yes
    checking if g++ supports -c -o file.o... chmod: changing permissions of `.': Operation not permitted
    yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    appending configuration tag "F77" to libtool
    chmod: changing permissions of `libtool': Operation not permitted
    checking for ranlib... (cached) ranlib
    checking for daemon_log in -ldaemon... yes
    checking for initLibG15 in -lg15... yes
    checking for sin in -lm... yes
    checking for pthread_mutex_init in -lpthread... yes
    checking for ANSI C header files... (cached) yes
    checking for sys/wait.h that is POSIX.1 compatible... yes
    checking linux/input.h usability... yes
    checking linux/input.h presence... yes
    checking for linux/input.h... yes
    checking for linux/uinput.h... yes
    checking for arpa/inet.h... yes
    checking for fcntl.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking for sys/socket.h... yes
    checking for unistd.h... (cached) yes
    checking for libg15.h... yes
    checking for struct uinput_user_dev.id... yes
    checking for an ANSI C-conforming const... yes
    checking for pid_t... yes
    checking for size_t... yes
    checking whether gcc needs -traditional... no
    checking sys/select.h usability... yes
    checking sys/select.h presence... yes
    checking for sys/select.h... yes
    checking for sys/socket.h... (cached) yes
    checking types of arguments for select... int,fd_set *,struct timeval *
    checking for strftime... yes
    checking for memset... yes
    checking for select... yes
    checking for socket... yes
    checking for strerror... yes
    configure: creating ./config.status
    chmod: changing permissions of `./config.status': Operation not permitted
    chmod: changing permissions of `conf19086.sh': Operation not permitted
    chmod: changing permissions of `conf19086.file': Operation not permitted
    config.status: creating Makefile
    config.status: creating g15daemon/Makefile
    config.status: creating libg15daemon_client/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    make  all-recursive
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a'
    Making all in libg15daemon_client
    make[2]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/libg15daemon_client'
    if /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I..     -g -O2 -MT g15daemon_net.lo -MD -MP -MF ".deps/g15daemon_net.Tpo" -c -o g15daemon_net.lo g15daemon_net.c; \
            then mv -f ".deps/g15daemon_net.Tpo" ".deps/g15daemon_net.Plo"; else rm -f ".deps/g15daemon_net.Tpo"; exit 1; fi
    mkdir .libs
     gcc -DHAVE_CONFIG_H -I. -I. -I.. -g -O2 -MT g15daemon_net.lo -MD -MP -MF .deps/g15daemon_net.Tpo -c g15daemon_net.c  -fPIC -DPIC -o .libs/g15daemon_net.o
     gcc -DHAVE_CONFIG_H -I. -I. -I.. -g -O2 -MT g15daemon_net.lo -MD -MP -MF .deps/g15daemon_net.Tpo -c g15daemon_net.c -o g15daemon_net.o >/dev/null 2>&1
    /bin/sh ../libtool --tag=CC --mode=link gcc  -g -O2   -o libg15daemon_client.la -rpath /usr/lib -version-info 1:2:0 g15daemon_net.lo  -lpthread -lm -lg15 -ldaemon
    gcc -shared  .libs/g15daemon_net.o  -lpthread -lm /usr/lib/libg15.so -L/usr/lib /usr/lib/libdaemon.so  -Wl,-soname -Wl,libg15daemon_client.so.1 -o .libs/libg15daemon_client.so.1.0.2
    (cd .libs && rm -f libg15daemon_client.so.1 && cp -p libg15daemon_client.so.1.0.2 libg15daemon_client.so.1)
    cp: preserving times for `libg15daemon_client.so.1': Operation not permitted
    make[2]: *** [libg15daemon_client.la] Error 1
    make[2]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/libg15daemon_client'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a'
    make: *** [all] Error 2
    Making install in libg15daemon_client
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/libg15daemon_client'
    /bin/sh ../libtool --tag=CC --mode=link gcc  -g -O2   -o libg15daemon_client.la -rpath /usr/lib -version-info 1:2:0 g15daemon_net.lo  -lpthread -lm -lg15 -ldaemon
    rm -fr  .libs/libg15daemon_client.so.1 .libs/libg15daemon_client.so.1.0.2
    gcc -shared  .libs/g15daemon_net.o  -lpthread -lm /usr/lib/libg15.so -L/usr/lib /usr/lib/libdaemon.so  -Wl,-soname -Wl,libg15daemon_client.so.1 -o .libs/libg15daemon_client.so.1.0.2
    (cd .libs && rm -f libg15daemon_client.so.1 && cp -p libg15daemon_client.so.1.0.2 libg15daemon_client.so.1)
    (cd .libs && rm -f libg15daemon_client.so && cp -p libg15daemon_client.so.1.0.2 libg15daemon_client.so)
    ar cru .libs/libg15daemon_client.a  g15daemon_net.o
    ranlib .libs/libg15daemon_client.a
    creating libg15daemon_client.la
    (cd .libs && rm -f libg15daemon_client.la && cp -p ../libg15daemon_client.la libg15daemon_client.la)
    make[2]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/libg15daemon_client'
    test -z "/usr/lib" || mkdir -p -- "/usr/lib"
     /bin/sh ../libtool --mode=install /usr/bin/install -c  'libg15daemon_client.la' '/usr/lib/libg15daemon_client.la'
    /usr/bin/install -c .libs/libg15daemon_client.so.1.0.2 /usr/lib/libg15daemon_client.so.1.0.2
    (cd /usr/lib && { cp -p -f libg15daemon_client.so.1.0.2 libg15daemon_client.so.1 || { rm -f libg15daemon_client.so.1 && cp -p libg15daemon_client.so.1.0.2 libg15daemon_client.so.1; }; })
    cp: `libg15daemon_client.so.1.0.2' and `libg15daemon_client.so.1' are the same file
    (cd /usr/lib && { cp -p -f libg15daemon_client.so.1.0.2 libg15daemon_client.so || { rm -f libg15daemon_client.so && cp -p libg15daemon_client.so.1.0.2 libg15daemon_client.so; }; })
    /usr/bin/install -c .libs/libg15daemon_client.lai /usr/lib/libg15daemon_client.la
    /usr/bin/install -c .libs/libg15daemon_client.a /usr/lib/libg15daemon_client.a
    ranlib /usr/lib/libg15daemon_client.a
    chmod 644 /usr/lib/libg15daemon_client.a
    PATH="$PATH:/sbin" ldconfig -n /usr/lib
    ldconfig: /usr/lib/libg15render.so.1 is not a symbolic link
    
    ldconfig: /usr/lib/libg15daemon_client.so.1 is not a symbolic link
    
    ldconfig: /usr/lib/libg15.so.1 is not a symbolic link
    
    ----------------------------------------------------------------------
    Libraries have been installed in:
       /usr/lib
    
    If you ever happen to want to link against installed libraries
    in a given directory, LIBDIR, you must either use libtool, and
    specify the full pathname of the library, or use the `-LLIBDIR'
    flag during linking and do at least one of the following:
       - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
         during execution
       - add LIBDIR to the `LD_RUN_PATH' environment variable
         during linking
       - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
       - have your system administrator add LIBDIR to `/etc/ld.so.conf'

  9. #169
    Join Date
    Sep 2005
    Location
    Christchurch, New Zealand
    Beans
    217
    Distro
    Kubuntu 9.04 Jaunty Jackalope

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    heres the rest of it

    Code:
    See any operating system documentation about shared libraries for
    more information, such as the ld(1) and ld.so(8) manual pages.
    ----------------------------------------------------------------------
    test -z "/usr/include" || mkdir -p -- "/usr/include"
     /usr/bin/install -c -m 644 'g15daemon_client.h' '/usr/include/g15daemon_client.h'
    make[2]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/libg15daemon_client'
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/libg15daemon_client'
    Making install in g15daemon
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/g15daemon'
    if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../libg15daemon_client/    -g -O2 -MT lcdclient_test.o -MD -MP -MF ".deps/lcdclient_test.Tpo" -c -o lcdclient_test.o lcdclient_test.c; \
            then mv -f ".deps/lcdclient_test.Tpo" ".deps/lcdclient_test.Po"; else rm -f ".deps/lcdclient_test.Tpo"; exit 1; fi
    /bin/sh ../libtool --tag=CC --mode=link gcc  -g -O2   -o g15daemontest  lcdclient_test.o ../libg15daemon_client/libg15daemon_client.la -lpthread -lm -lg15 -ldaemon
    mkdir .libs
    gcc -g -O2 -o .libs/g15daemontest lcdclient_test.o  ../libg15daemon_client/.libs/libg15daemon_client.so -lpthread -lm /usr/lib/libg15.so /usr/lib/libusb.so /usr/lib/libdaemon.so
    creating g15daemontest
    if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../libg15daemon_client/    -g -O2 -MT g15_net.o -MD -MP -MF ".deps/g15_net.Tpo" -c -o g15_net.o g15_net.c; \
            then mv -f ".deps/g15_net.Tpo" ".deps/g15_net.Po"; else rm -f ".deps/g15_net.Tpo"; exit 1; fi
    g15_net.c: In function ‘process_client_cmds’:
    g15_net.c:126: warning: assignment from incompatible pointer type
    if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../libg15daemon_client/    -g -O2 -MT g15_uinput.o -MD -MP -MF ".deps/g15_uinput.Tpo" -c -o g15_uinput.o g15_uinput.c; \
            then mv -f ".deps/g15_uinput.Tpo" ".deps/g15_uinput.Po"; else rm -f ".deps/g15_uinput.Tpo"; exit 1; fi
    if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../libg15daemon_client/    -g -O2 -MT utility_funcs.o -MD -MP -MF ".deps/utility_funcs.Tpo" -c -o utility_funcs.o utility_funcs.c; \
            then mv -f ".deps/utility_funcs.Tpo" ".deps/utility_funcs.Po"; else rm -f ".deps/utility_funcs.Tpo"; exit 1; fi
    if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../libg15daemon_client/    -g -O2 -MT main.o -MD -MP -MF ".deps/main.Tpo" -c -o main.o main.c; \
            then mv -f ".deps/main.Tpo" ".deps/main.Po"; else rm -f ".deps/main.Tpo"; exit 1; fi
    if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../libg15daemon_client/    -g -O2 -MT linked_lists.o -MD -MP -MF ".deps/linked_lists.Tpo" -c -o linked_lists.o linked_lists.c; \
            then mv -f ".deps/linked_lists.Tpo" ".deps/linked_lists.Po"; else rm -f ".deps/linked_lists.Tpo"; exit 1; fi
    linked_lists.c: In function ‘lcdnode_remove’:
    linked_lists.c:126: warning: comparison of distinct pointer types lacks a cast
    if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../libg15daemon_client/    -g -O2 -MT gfx_primitives.o -MD -MP -MF ".deps/gfx_primitives.Tpo" -c -o gfx_primitives.o gfx_primitives.c; \
            then mv -f ".deps/gfx_primitives.Tpo" ".deps/gfx_primitives.Po"; else rm -f ".deps/gfx_primitives.Tpo"; exit 1; fi
    /bin/sh ../libtool --tag=CC --mode=link gcc  -g -O2   -o g15daemon  g15_net.o g15_uinput.o utility_funcs.o main.o linked_lists.o gfx_primitives.o  -lpthread -lm -lg15 -ldaemon
    gcc -g -O2 -o g15daemon g15_net.o g15_uinput.o utility_funcs.o main.o linked_lists.o gfx_primitives.o  -lpthread -lm /usr/lib/libg15.so /usr/lib/libusb.so /usr/lib/libdaemon.so
    make[2]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/g15daemon'
    test -z "/usr/sbin" || mkdir -p -- "/usr/sbin"
      /bin/sh ../libtool --mode=install /usr/bin/install -c 'g15daemon' '/usr/sbin/g15daemon'
    /usr/bin/install -c g15daemon /usr/sbin/g15daemon
    make[2]: Nothing to be done for `install-data-am'.
    make[2]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/g15daemon'
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a/g15daemon'
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a'
    make[2]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a'
    make[2]: Nothing to be done for `install-exec-am'.
    test -z "/usr/share/doc/g15daemon-1.2.6a" || mkdir -p -- "/usr/share/doc/g15daemon-1.2.6a"
     /usr/bin/install -c -m 644 'FAQ' '/usr/share/doc/g15daemon-1.2.6a/FAQ'
     /usr/bin/install -c -m 644 'README.usage' '/usr/share/doc/g15daemon-1.2.6a/README.usage'
     /usr/bin/install -c -m 644 'README' '/usr/share/doc/g15daemon-1.2.6a/README'
     /usr/bin/install -c -m 644 'ChangeLog' '/usr/share/doc/g15daemon-1.2.6a/ChangeLog'
     /usr/bin/install -c -m 644 'TODO' '/usr/share/doc/g15daemon-1.2.6a/TODO'
     /usr/bin/install -c -m 644 'AUTHORS' '/usr/share/doc/g15daemon-1.2.6a/AUTHORS'
     /usr/bin/install -c -m 644 'NEWS' '/usr/share/doc/g15daemon-1.2.6a/NEWS'
     /usr/bin/install -c -m 644 'LICENSE' '/usr/share/doc/g15daemon-1.2.6a/LICENSE'
    test -z "/usr/share/man/man1" || mkdir -p -- "/usr/share/man/man1"
     /usr/bin/install -c -m 644 '././Documentation/g15daemon.1' '/usr/share/man/man1/g15daemon.1'
    test -z "/usr/share/man/man3" || mkdir -p -- "/usr/share/man/man3"
     /usr/bin/install -c -m 644 '././Documentation/g15daemon_client_devel.3' '/usr/share/man/man3/g15daemon_client_devel.3'
    make[2]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a'
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15daemon-1.2.6a'
    chmod: changing permissions of `conf20263.sh': Operation not permitted
    chmod: changing permissions of `conf20263.file': Operation not permitted
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking for flex... no
    checking for lex... no
    checking for yywrap in -lfl... no
    checking for yywrap in -ll... no
    checking for bison... no
    checking for byacc... no
    checking whether to enable FreeType2 support... checking for g15r_ttfLoad in -lg15render... yes
    yes
    checking for g15_send in -lg15daemon_client... yes
    checking for g15r_initCanvas in -lg15render... yes
    checking for pthread_create in -lpthread... yes
    checking how to run the C preprocessor... gcc -E
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -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 fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking sys/socket.h usability... yes
    checking sys/socket.h presence... yes
    checking for sys/socket.h... yes
    checking for sys/stat.h... (cached) yes
    checking libg15.h usability... yes
    checking libg15.h presence... yes
    checking for libg15.h... yes
    checking libg15render.h usability... yes
    checking libg15render.h presence... no
    configure: WARNING: libg15render.h: accepted by the compiler, rejected by the preprocessor!
    configure: WARNING: libg15render.h: proceeding with the compiler's result
    checking for libg15render.h... yes
    checking g15daemon_client.h usability... yes
    checking g15daemon_client.h presence... yes
    checking for g15daemon_client.h... yes
    checking for an ANSI C-conforming const... yes
    configure: creating ./config.status
    chmod: changing permissions of `./config.status': Operation not permitted
    chmod: changing permissions of `conf21406.sh': Operation not permitted
    chmod: changing permissions of `conf21406.file': Operation not permitted
    config.status: creating Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    make  all-am
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15composer-3.0.2'
    if gcc -DHAVE_CONFIG_H -I. -I. -I.     -g -O2 -I/usr/include/freetype2 -MT g15composer.o -MD -MP -MF ".deps/g15composer.Tpo" -c -o g15composer.o g15composer.c; \
            then mv -f ".deps/g15composer.Tpo" ".deps/g15composer.Po"; else rm -f ".deps/g15composer.Tpo"; exit 1; fi
    g15composer.c: In function ‘threadEntry’:
    g15composer.c:123: warning: passing argument 1 of ‘fclose’ makes pointer from integer without a cast
    g15composer.c:147: warning: passing argument 1 of ‘pthread_exit’ makes pointer from integer without a cast
    if gcc -DHAVE_CONFIG_H -I. -I. -I.     -g -O2 -I/usr/include/freetype2 -MT g15composer.tab.o -MD -MP -MF ".deps/g15composer.tab.Tpo" -c -o g15composer.tab.o g15composer.tab.c; \
            then mv -f ".deps/g15composer.tab.Tpo" ".deps/g15composer.tab.Po"; else rm -f ".deps/g15composer.tab.Tpo"; exit 1; fi
    g15composer.y: In function ‘yyparse’:
    g15composer.y:433: warning: pointer targets in passing argument 2 of ‘g15r_renderString’ differ in signedness
    g15composer.y:450: warning: pointer targets in passing argument 2 of ‘g15r_renderString’ differ in signedness
    g15composer.y:467: warning: pointer targets in passing argument 2 of ‘g15r_renderString’ differ in signedness
    g15composer.y:490: warning: pointer targets in passing argument 2 of ‘g15r_renderString’ differ in signedness
    g15composer.y:493: warning: pointer targets in passing argument 2 of ‘g15r_renderString’ differ in signedness
    if gcc -DHAVE_CONFIG_H -I. -I. -I.     -g -O2 -I/usr/include/freetype2 -MT g15composer.lex.o -MD -MP -MF ".deps/g15composer.lex.Tpo" -c -o g15composer.lex.o g15composer.lex.c; \
            then mv -f ".deps/g15composer.lex.Tpo" ".deps/g15composer.lex.Po"; else rm -f ".deps/g15composer.lex.Tpo"; exit 1; fi
    g15composer.l: In function ‘yylex’:
    g15composer.l:63: warning: assignment makes integer from pointer without a cast
    gcc  -g -O2 -I/usr/include/freetype2   -o g15composer  g15composer.o g15composer.tab.o g15composer.lex.o  -lpthread -lg15render -lg15daemon_client
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15composer-3.0.2'
    make[1]: Entering directory `/media/Go-Between/linux-g15/sources/sources/g15composer-3.0.2'
    test -z "/usr/bin" || mkdir -p -- "/usr/bin"
      /usr/bin/install -c 'g15composer' '/usr/bin/g15composer'
    test -z "/usr/share/doc/g15composer-3.0.2" || mkdir -p -- "/usr/share/doc/g15composer-3.0.2"
     /usr/bin/install -c -m 644 'AUTHORS' '/usr/share/doc/g15composer-3.0.2/AUTHORS'
     /usr/bin/install -c -m 644 'ChangeLog' '/usr/share/doc/g15composer-3.0.2/ChangeLog'
     /usr/bin/install -c -m 644 'COPYING' '/usr/share/doc/g15composer-3.0.2/COPYING'
     /usr/bin/install -c -m 644 'NEWS' '/usr/share/doc/g15composer-3.0.2/NEWS'
     /usr/bin/install -c -m 644 'README' '/usr/share/doc/g15composer-3.0.2/README'
    test -z "/usr/share/man/man1" || mkdir -p -- "/usr/share/man/man1"
     /usr/bin/install -c -m 644 '././doc/g15composer.1' '/usr/share/man/man1/g15composer.1'
    make[1]: Leaving directory `/media/Go-Between/linux-g15/sources/sources/g15composer-3.0.2'
    john@kubuntu:/media/Go-Between/linux-g15/sources/sources$

  10. #170
    Join Date
    Apr 2006
    Beans
    118

    Re: HOWTO: Install basic G15Tools support for the Logitech G15

    Looks like everything is ok. Those errors might happen if the user building the packages doesn't own the files it's building from. It looks like everything built and installed fine though.

Page 17 of 48 FirstFirst ... 7151617181927 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •