Results 1 to 2 of 2

Thread: gimp fourier plugin

  1. #1
    Join Date
    May 2011
    Beans
    3

    gimp fourier plugin

    Has anyone managed to install the gimp fourier plugin? If so, how?

    I got the source (fourier-0.4.1.tar.gz) and installed the prerequisites (libfftw3-3, libfftw3-dev, libgimp2.0, and libgimp2.0-dev) but running "make" lists many "undefined references". Adding many -I directives to Makefile eliminated the "undefined references", but still leaves a mess.

    Suggestions would be appreciated.

  2. #2
    Join Date
    Oct 2007
    Location
    Atlanta, GA
    Beans
    9
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: gimp fourier plugin

    Quote Originally Posted by bobb40 View Post
    Has anyone managed to install the gimp fourier plugin? If so, how?

    I got the source (fourier-0.4.1.tar.gz) and installed the prerequisites (libfftw3-3, libfftw3-dev, libgimp2.0, and libgimp2.0-dev) but running "make" lists many "undefined references". Adding many -I directives to Makefile eliminated the "undefined references", but still leaves a mess.

    Suggestions would be appreciated.
    For me, I had to change the order of params in the Makefile: libraries should go last. find the lines:

    Code:
    fourier: fourier.c
    	$(GCC) $(CFLAGS) $(LIBS) -o fourier fourier.c
    and change it to:

    Code:
    fourier: fourier.c
    	$(GCC) $(CFLAGS) -o fourier fourier.c $(LIBS)

Tags for this Thread

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
  •