Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

cathy88

macrumors member
Original poster
Aug 11, 2009
95
0
Ive just installed FLTK on my macbook pro OSX10.6 and tried to run a file which is given to me called makefile.FLTK in a directory.
In command line I do

make -f makefile.FLTK

and it kinda compiles then say

g++ -o cursor cursor.o -L/usr/local/lib -lfltk -lXext -lXft -lfontconfig -lXinerama -lpthread -ldl -lm -lX11
ld: library not found for -lXext
collect2: ld returned 1 exit status
make: *** [cursor] Error 1

I followed this https://forums.macrumors.com/threads/150040/
Could someone please help me.
 

jpyc7

macrumors 6502
Mar 8, 2009
276
0
Denver, CO
Here are some possibilities:
1. The Xext library is not installed.
2. The Xext library is not installed in the directory expected (/usr/local/lib)
3. The Xext library is not in the right format. I'm not really sure you would get the same error text for this case.

The easiest case to check is number 2. In Terminal, cd /usr/local/lib and "ls -l libXext*" to see if the file is there. I'm not sure what the file extension would be, but it could be "so", "a", "dylib...".

If it is there, then you have case 3. It means you have to make/install the library in the correct format. If it isn't there, it could still be on the system somewhere.

If you find the library in another directory, then you'll probably want to edit the Makefile.fltk so that it will look in that directory.
 

cathy88

macrumors member
Original poster
Aug 11, 2009
95
0
Here are some possibilities:
1. The Xext library is not installed.
2. The Xext library is not installed in the directory expected (/usr/local/lib)
3. The Xext library is not in the right format. I'm not really sure you would get the same error text for this case.

The easiest case to check is number 2. In Terminal, cd /usr/local/lib and "ls -l libXext*" to see if the file is there. I'm not sure what the file extension would be, but it could be "so", "a", "dylib...".

If it is there, then you have case 3. It means you have to make/install the library in the correct format. If it isn't there, it could still be on the system somewhere.

If you find the library in another directory, then you'll probably want to edit the Makefile.fltk so that it will look in that directory.

Hey, what happens if the file is not there? Seems like mine isnt there, I just installed Xcode from the sl disc.
 

jpyc7

macrumors 6502
Mar 8, 2009
276
0
Denver, CO
Hey, what happens if the file is not there? Seems like mine isnt there, I just installed Xcode from the sl disc.

Assuming, you're running Snow Leopard, it looks like the X11 libraries are located in:
/usr/X11/lib
(and also in /usr/X11R6/lib)

You'll stilll have to fix your Makefile to use that location.
Probably try this on the command line:

g++ -o cursor cursor.o -L/usr/local/lib -lfltk -L/usr/X11/lib -lXext -lXft -lfontconfig -lXinerama -lpthread -ldl -lm -lX11

The -L option specifies the path to a library directory. You may have to read the man page if I didn't get it right.

If that works, then you'll want to find a similar line in the Makefile, accounting for the fact that the library path could be specified in a makefile variable (i.e. not a direct search/replace).
 

cathy88

macrumors member
Original poster
Aug 11, 2009
95
0
Firstly thanks for taking your time in helping me. Im a newbie with FLTK just starting it, we have work machine at uni working, but I really like to be able to work at home on my own computer.

Ive tried what you said below is my make file

Code:
LIBS = -lfltk -L/usr/X11/lib -lXext -lXft -lfontconfig -lXinerama -lpthread -ldl -lm -lX11
LDPATH = -L/usr/local/lib 
CPP = g++
INC = -I. -I/usr/local/include


all: 		cursor


cursor: 	cursor.o
		$(CPP) -o cursor cursor.o $(LDPATH) $(LIBS)

cursor.o: 	cursor.cxx
		$(CPP) -c $(INC) cursor.cxx 

clean:
		rm -f *.o
		rm -f cursor

and here is cursor.cxx

Code:
//
// "$Id: cursor.cxx 5519 2006-10-11 03:12:15Z mike $"
//
// Cursor test program for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2005 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems on the following page:
//
//     http://www.fltk.org/str.php
//

#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Hor_Value_Slider.H>
#include <FL/Fl_Choice.H>
#include <FL/fl_draw.H>
#include <FL/Fl_Box.H>

Fl_Color fg = FL_BLACK;
Fl_Color bg = FL_WHITE;
Fl_Cursor cursor = FL_CURSOR_DEFAULT;

Fl_Hor_Value_Slider *cursor_slider;

void choice_cb(Fl_Widget *, void *v) {
  cursor = (Fl_Cursor)(long)v;
  cursor_slider->value(cursor);
  fl_cursor(cursor,fg,bg);
}

Fl_Menu_Item choices[] = {
  {"FL_CURSOR_DEFAULT",0,choice_cb,(void*)FL_CURSOR_DEFAULT},
  {"FL_CURSOR_ARROW",0,choice_cb,(void*)FL_CURSOR_ARROW},
  {"FL_CURSOR_CROSS",0,choice_cb,(void*)FL_CURSOR_CROSS},
  {"FL_CURSOR_WAIT",0,choice_cb,(void*)FL_CURSOR_WAIT},
  {"FL_CURSOR_INSERT",0,choice_cb,(void*)FL_CURSOR_INSERT},
  {"FL_CURSOR_HAND",0,choice_cb,(void*)FL_CURSOR_HAND},
  {"FL_CURSOR_HELP",0,choice_cb,(void*)FL_CURSOR_HELP},
  {"FL_CURSOR_MOVE",0,choice_cb,(void*)FL_CURSOR_MOVE},
  {"FL_CURSOR_NS",0,choice_cb,(void*)FL_CURSOR_NS},
  {"FL_CURSOR_WE",0,choice_cb,(void*)FL_CURSOR_WE},
  {"FL_CURSOR_NWSE",0,choice_cb,(void*)FL_CURSOR_NWSE},
  {"FL_CURSOR_NESW",0,choice_cb,(void*)FL_CURSOR_NESW},
  {"FL_CURSOR_NONE",0,choice_cb,(void*)FL_CURSOR_NONE},
#if 0
  {"FL_CURSOR_N",0,choice_cb,(void*)FL_CURSOR_N},
  {"FL_CURSOR_NE",0,choice_cb,(void*)FL_CURSOR_NE},
  {"FL_CURSOR_E",0,choice_cb,(void*)FL_CURSOR_E},
  {"FL_CURSOR_SE",0,choice_cb,(void*)FL_CURSOR_SE},
  {"FL_CURSOR_S",0,choice_cb,(void*)FL_CURSOR_S},
  {"FL_CURSOR_SW",0,choice_cb,(void*)FL_CURSOR_SW},
  {"FL_CURSOR_W",0,choice_cb,(void*)FL_CURSOR_W},
  {"FL_CURSOR_NW",0,choice_cb,(void*)FL_CURSOR_NW},
#endif
  {0}
};

void setcursor(Fl_Widget *o, void *) {
  Fl_Hor_Value_Slider *slider = (Fl_Hor_Value_Slider *)o;
  cursor = Fl_Cursor((int)slider->value());
  fl_cursor(cursor,fg,bg);
}

void setfg(Fl_Widget *o, void *) {
  Fl_Hor_Value_Slider *slider = (Fl_Hor_Value_Slider *)o;
  fg = Fl_Color((int)slider->value());
  fl_cursor(cursor,fg,bg);
}

void setbg(Fl_Widget *o, void *) {
  Fl_Hor_Value_Slider *slider = (Fl_Hor_Value_Slider *)o;
  bg = Fl_Color((int)slider->value());
  fl_cursor(cursor,fg,bg);
}

// draw the label without any ^C or \nnn conversions:
class CharBox : public Fl_Box {
  void draw() {
    fl_font(FL_FREE_FONT,14);
    fl_draw(label(), x()+w()/2, y()+h()/2);
  }
public:
  CharBox(int X, int Y, int W, int H, const char* L) : Fl_Box(X,Y,W,H,L) {}
};

int main(int argc, char **argv) {
  Fl_Window window(400,300);

  Fl_Choice choice(80,100,200,25,"Cursor:");
  choice.menu(choices);
  choice.callback(choice_cb);
  choice.when(FL_WHEN_RELEASE|FL_WHEN_NOT_CHANGED);

  Fl_Hor_Value_Slider slider1(80,180,310,30,"Cursor:");
  cursor_slider = &slider1;
  slider1.align(FL_ALIGN_LEFT);
  slider1.step(1);
  slider1.precision(0);
  slider1.bounds(0,100);
  slider1.value(0);
  slider1.callback(setcursor);
  slider1.value(cursor);

  Fl_Hor_Value_Slider slider2(80,220,310,30,"fgcolor:");
  slider2.align(FL_ALIGN_LEFT);
  slider2.step(1);
  slider2.precision(0);
  slider2.bounds(0,255);
  slider2.value(0);
  slider2.callback(setfg);
  slider2.value(fg);

  Fl_Hor_Value_Slider slider3(80,260,310,30,"bgcolor:");
  slider3.align(FL_ALIGN_LEFT);
  slider3.step(1);
  slider3.precision(0);
  slider3.bounds(0,255);
  slider3.value(0);
  slider3.callback(setbg);
  slider3.value(bg);

#if 0
  // draw the manual's diagram of cursors...
  window.size(400,800);
  int y = 300;
  Fl::set_font(FL_FREE_FONT, "cursor");
  char buf[100]; char *p = buf;
  for (Fl_Menu* m = choices; m->label(); m++) {
    Fl_Box* b = new Fl_Box(35,y,150,25,m->label());
    b->align(FL_ALIGN_LEFT|FL_ALIGN_INSIDE);
    int n = (int)(m->argument());
    if (n == FL_CURSOR_NONE) break;
    if (n == FL_CURSOR_DEFAULT) n = FL_CURSOR_ARROW;
    p[0] = (char)((n-1)*2);
    p[1] = 0;
    b = new CharBox(15,y,20,20,p); p+=2;
    y += 25;
  }
#endif

  window.resizable(window);
  window.end();
  window.show(argc,argv);
  return Fl::run();
}

//
// End of "$Id: cursor.cxx 5519 2006-10-11 03:12:15Z mike $".
//

Pretty much I installed FLTK on my desktop,simply by downloading the file off the site extract to desktop In command window I did

./configure
make
sudo make install
 

jpyc7

macrumors 6502
Mar 8, 2009
276
0
Denver, CO
I take it failed, but you didn't describe the failure. The Makefile looks okay to me. Did you confirm the X11 libraries were in that other location /usr/X11/lib?

Another semi-common failure mode is that the order of libraries for linking is wrong. You could move the fltk library to the end. Most likely that library depends on X11 libraries, so you want to list the "symbols" for the linker to know earlier. You can think of it like "#include" where the linker will throw an error when something isn't declared before it is used.
 

ramkumar31

macrumors newbie
Apr 8, 2011
1
0
choice value in fltk

hi guys

i am new to fltk i want to know how to get value from choice in fltk in callback function. Please give solution, i am runing out time in my project
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.