[Harbour] Error when compiling contrib/hbgf

2008-06-26 Thread Guy Roussin
/contrib/hbgf » Thanks, -- Guy Roussin ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

Re: [Harbour] Error when compiling contrib/hbgf

2008-06-26 Thread Guy Roussin
Sorry, fixed with the last commit of Przemek (i don't read my email before posting) Guy I add this line before the endif in contrib/hbgf/hbgfgtk/Makefile to compile hbgf with linux debian CFLAGS := `pkg-config --cflags --libs gtk+-2.0` But i still have an error : make[3]: entrant dans le répe

[Harbour] hbgfgtk errors ...

2008-06-26 Thread Guy Roussin
form.c'... Done. /usr/lib/harbour/libhbgfgtk.a(creamenu.o): In function `HB_FUN_HB_GTKCREATEMENUBAR': (.text+0x5e): undefined reference to `gtk_menu_bar_set_shadow_type' collect2: ld returned 1 exit status -- Guy Roussin ___ Harbou

Re: [Harbour] Re: hbgfgtk errors ...

2008-06-27 Thread Guy Roussin
Hi, The gtk_menu_bar_set_shadow_type is deprecated in gtk+2.0, it's only available in version 1. Thank you Rodrigo. So i suggest to change : C_USR += `pkg-config --cflags gtk+-2.0` with C_USR += `pkg-config --cflags gtk+` in harbour/contrib/hbgf/hbgfgtk/Makefile Guy

Re: [Harbour] Re: hbgfgtk errors ...

2008-06-27 Thread Guy Roussin
line ... I suggest the change because hbgfgtk is an old developpement (2001 ?) with gtk+ and not gtk+2.0. Guy Szakáts Viktor a écrit : Hi folks, Isn't it better to remove this call? Or guard it with an #ifdef? If the latter, what #ifdef is need? Brgds, Viktor On 2008.06.27., at 11:15, G

Re: [Harbour] 2008-06-27 12:51 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-06-27 Thread Guy Roussin
Thank you Viktor, good fix. It works for me. Now i get this error for some prg from contrib/hbgf/tests : Harbour 1.0.0RC1 Intl. (Rev. 8838) Copyright (c) 1999-2008, http://www.harbour-project.org/ Compiling 'form3.prg'... Lines 836, Functions/Procedures 3 Generating C source output to 'form3.c'..

Re: [Harbour] Q: Ubuntu 8.04.1, make_deb.sh, gttrm and mouse detection

2008-07-06 Thread Guy Roussin
Hi Viktor, Note the grep '^ii' in : dpkg -l "$1" 2> /dev/null | grep '^ii' &> /dev/null So i think the answer to test_reqpkg is false in your case Recent distribution like debian sid and i suppose ubuntu 8.04 use libgpm-dev instead of libgpmg1-dev (note that in debian sid package libgpmg1-dev

Re: [Harbour] 2008-07-28 15:07 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-07-28 Thread Guy Roussin
This little patch for debian final release ... Guy Szakáts Viktor a écrit : 2008-07-28 15:07 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * harbour-ce-spec * harbour-w32-spec * include/hbver.h * harbour.spec * Removed 'rc2' tag in preparation for final release. * doc/whats

Re: [Harbour] 2008-07-28 15:07 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

2008-07-28 Thread Guy Roussin
rrors and no (critical, grave or seriuos) bugs the package went in testing (lenny). And stable after the freezing of testing (dec 2008 ?) Now we need a debian maintainer ... Guy Przemyslaw Czerpak a écrit : On Mon, 28 Jul 2008, Guy Roussin wrote: Hi Guy, This little patch for debian final re

[Harbour] Including makefile in prg

2008-08-05 Thread Guy Roussin
Hi, I wrote only little apps (scripts) with harbour. Now i put these lines on top of my prg : - #ifdef SH_COMPILATION /* sh compilation : hbmk -n -p -gtcgi -gtstd -gtpca -gttrm -gtxwc -L/usr/lib/mysql -lmysqlclient $0 nameprg="$0" shift ./${nameprg%.*} "$*" exit */ #endif ---

[Harbour] hbide and character case

2010-05-17 Thread Guy Roussin
Hi, With hbide on linux, i add sources (prg) on my project from (/homeL/guy/devhb/proj). But hbide refuse to open them "File not found" : /homel/guy/devhb/proj/t3.prg Notice that hbide changes homeL with homel ! -- Guy ___ Harbour mailing list (attac

Re: [Harbour] Re: hbide and character case

2010-05-18 Thread Guy Roussin
Hi Pritpal, Now I need to know which action is causing. When i click on the name of the source file, hbide try to open the prg file but it can't because the path is wrong ... This is the reason I suggested to always use HB_FILEMATCH() when doing any comparison. So if you lookup and change a

<    1   2