Buenas noches,
Al preparar los tests con Harbour del svn en Linux, me he encontrado con
una serie de errores:
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_Hide':
(.text+0x15b): undefined reference to `gpm_visiblepointer'
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_SetPos':
(.text+0x4b7): undefined reference to `gpm_visiblepointer'
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_SetPos':
(.text+0x4cb): undefined reference to `_gpm_arg'
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_SetPos':
(.text+0x4d2): undefined reference to `_gpm_buf'
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_SetPos':
(.text+0x4dc): undefined reference to `gpm_zerobased'
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_SetPos':
(.text+0x50c): undefined reference to `gpm_consolefd'
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_Show':
(.text+0x1bbb): undefined reference to `gpm_visiblepointer'
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_Show':
(.text+0x1bc2): undefined reference to `_gpm_buf'
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_Show':
(.text+0x1bcf): undefined reference to `_gpm_arg'
/usr/lib/harbour/libgttrm.a(gttrm.o): In function `hb_gt_trm_mouse_Show':
(.text+0x1be1): undefined reference to `gpm_zerobased'
........
........
collect2: ld returned 1 exit status
make: *** [table] Error 1
Quedan resueltos incluyendo la libreria gpm a Rules.make. Yo la he
situado entre las librerías GT:
#Definition GT driver
ifeq ($(HB_COMPILER),mingw32)
GT_LIBS=-lgtwin
else
ifeq ($(XBASE_COMPILER),HARBOUR)
#HARBOUR
GT_LIBS=-lgtstd -lgttrm -lgpm
¿debe entrar gpm en Rules.make de forma permanente?
Saludos
Miquel