Search:

Type: Posts; User: bregma; Keyword(s):

Search: Search took 0.12 seconds.

  1. Re: uTouch Application Development, where to start?

    The project name changed in launchpad. Try here.

    There are python bindings available for the geis library.

    Smooth scrolling is not yet available in GTK (they're reinevnting their own gesture...
  2. [SOLVED] Re: ShellScript: Not able to run the command using Variable

    You're looking for the 'eval' command.

    For example,

    $ cmd="ls -l"
    $ eval $cmd
  3. Replies
    5
    Views
    4,598

    [SOLVED] Re: compiling c++ code with clang++

    You're trying to use the GCC standard library with a different compiler.

    Clang does not in fact support the current C++ standard as well as GCC.

    That's one reason why they're completely...
  4. Replies
    12
    Views
    730

    Re: Undefined references

    Er, no. It forces the entire contents of the library to be included in the final image, whether it's used or not. For example, -Wl,--start-group -lm -Wl,--end-group will add every single math...
  5. Replies
    15
    Views
    1,970

    [SOLVED] Re: I need a solid C++ IDE

    Some of the professional I work with strongly prefer Eclipse CDT for C++. Others I have talked to think Code::Blocks is satisfactory. Qt Creator is also really slick and fully functional. All of...
  6. Re: ppa build fails for amd64 but succeeds for i386

    Are you by any chance trying to package a pre-built binary? That's what the logs are telling me. That will, of course, fail.
  7. Replies
    14
    Views
    4,119

    Re: gegl ./configure problem

    The variables are not normally set. They allow you to customize the behaviour of ./configure. Try ./configure --help to find out how to customize the behaviour of ./configure.
  8. Replies
    14
    Views
    4,119

    Re: gegl ./configure problem

    They're enviroment variables.

    I think the solution is to set PKG_CONFIG_PATH to pick up your installation before running configure.

    Try

    PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure...
  9. Replies
    14
    Views
    4,119

    Re: gegl ./configure problem

    Perhaps the rules to search for gegl do not look in /usr/local... did you try setting GEGL_CFLAGS and GEGL_LIBS explicitly?
  10. Thread: Awk ?

    by bregma
    Replies
    10
    Views
    541

    Re: Awk ?

    Would it be easier to just use a shell script?

    #!/bin/sh

    while read name value; do
    echo "define($name, $value)"
    done < Basics
    Redirect the output of echo above into your m4 file, or if...
  11. Replies
    14
    Views
    4,119

    Re: gegl ./configure problem

    This error means the file /usr/share/aclocal/glib-2.0.m4 is not installed. It is normally packaged in libglib2.0-dev -- check to see if that package is installed. If you built glib from source...
  12. Replies
    6
    Views
    710

    Re: Make source package for single script

    Yes, exactly that. When you upload to your PPA, you use a command like dput ppa:maximus/ddrutility ddrutility_0.1-0ubuntu1~ppa1.changes and the .dsc, .orig.tar.gz, and .debian.tar.gz files (which...
  13. Replies
    1
    Views
    1,059

    Re: Check if shared library installed

    Er, no.

    You should have a package for each product, and a separate package for the common library. In your debian/control file for each product package, list the separate library package in the...
  14. Replies
    6
    Views
    710

    Re: Make source package for single script

    If you can build a binary deb file from your packaging branch you can build a source deb.

    If you normally use dpkg-buildpackage as your package builder, you can just use dpkg-buildpackage -S to...
  15. Re: How do interpreters find order of operations?

    Er, yes, definitely. I was thinking O(n^1), as opposed to O(n^2), and it just came out of my fingertips wrong. Polynomial fail.
  16. Re: I want to disable compile optimisation linux gcc

    That should be ./configure CFLAGS='-O0 -ggdb3' CXXFLAGS='-O0 -ggdb3' and make sure there is no space around the '='. Make sure you do a full rebuild after this (make clean; make).
  17. Re: How do interpreters find order of operations?

    Just a hint: use the shunting yard algorithm: it's O(1), simple and fast.
  18. [SOLVED] Re: How to write to /etc and other files in a Makefile

    (1) use a variable for basic directories so they can be changed and (2) prefix with the DESTDIR variable.

    #!/usr/bin/make

    prefix = /usr
    sysconfdir = /etc
    pkgdir = /var/zpanel

    install: ...
  19. Replies
    1
    Views
    344

    [ubuntu] Re: Discussion of Touch technology

    Have you seen the human-computer interaction project on launchpad? there isn't much there, but it's a start and might lead to some connections....
  20. Re: uTouch Application Development, where to start?

    The programming API for uTouch gestures is GEIS. The utouch-geis project on launchpad has seom demo code called "geistest" that is an example of programming with that API, and documentation on the...
Results 1 to 20 of 22