Results 1 to 3 of 3

Thread: FLTK compiled program uninstalation

  1. #1
    Join Date
    Dec 2011
    Beans
    5

    FLTK compiled program uninstalation

    Hello guys,

    Im new to these forums so excuse me for if im in the wrong section here.

    now i havent ever used FLTK or compiled a program before but i somehow managed to install a program which i later found out, that i dont need at all.

    i used this command line:
    Code:
    g++ DoConfig.cpp -o DoConfigure -s $(fltk-config --cxxflags --ldflags)
    now i want to uninstall the program and purge all fltk libs and stuff that goes with it accordingly.

    also, i have no need for g++ anymore. I think
    Code:
    sudo apt-get remove g++ --purge
    would do the job?

    thanks in advance.

  2. #2
    Join Date
    Apr 2009
    Location
    Germany
    Beans
    2,134
    Distro
    Ubuntu Development Release

    Re: FLTK compiled program uninstalation

    this might do it:
    rm ./DoConfigure # in the folder you ran g++ from
    apt-get autoremove --purge libfltk1.1-dev # or libfltk1.3-dev
    autoremove will only work if you installed all fltk stuff via this one meta package
    if you installed them manually you have to remove them manually (= list them all in apt-get remove)

  3. #3
    Join Date
    Dec 2011
    Beans
    5

    Re: FLTK compiled program uninstalation

    thanks for the reply!

    i remember adding one package manually which asked for all the libs. Ill just try and see which package that exactly was.

    However, I already manually removed the folder i did the compiling in through my window manager. is it removed or did i just #!@$ things up?

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
  •