Re: [Gambas-user] config -C is not finding some files installed on my system

2017-09-18 Thread Doug Hutcheson
On Mon, 2017-09-18 at 16:06 +0200, Karl Reinl wrote: > Am Montag, den 18.09.2017, 11:07 +1000 schrieb Doug Hutcheson: > > I am trying to compile Gambas downloaded from Git the other day and > > config is failing to find files that exist on my system, causing a > > number of modules to be

Re: [Gambas-user] [CRASH REPORT] Conta2 Andresoft

2017-09-18 Thread Benoît Minisini via Gambas-user
Le 18/09/2017 à 18:45, Andres Carranza a écrit : Hello, Damned, my program crashed Gambas that way : *access to data base sql3 lite* Public Sub Ok_Click() Dim sql As String 'Dim i As Integer Me.mouse = 3 If Val(cargo.Text) = 0 Then cargo.Text = "0" If Val(abono.Text) = 0 Then

Re: [Gambas-user] config -C is not finding some files installed on my system

2017-09-18 Thread Karl Reinl
Am Montag, den 18.09.2017, 11:07 +1000 schrieb Doug Hutcheson: > I am trying to compile Gambas downloaded from Git the other day and > config is failing to find files that exist on my system, causing a > number of modules to be disabled. > For example, the output of config includes these

Re: [Gambas-user] config -C is not finding some files installed on my system

2017-09-18 Thread T Lee Davidson
You located the gb.gsl component files only. These files mentioned (gsl_cblas.h, gsl_math.h, libgslcblas.so, libgsl.so) are system/distribution GSL headers and libraries. Try "locate gsl_". You may need to ensure the GSL development package is installed. -- Lee On 09/17/2017 09:07 PM, Doug