[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: source code related questions
From: |
roddi |
Subject: |
Re: source code related questions |
Date: |
Mon, 29 Jul 2002 17:14:51 +0200 |
Am Montag den, 29. Juli 2002, um 15:27, schrieb Pawel Kot:
On Mon, 29 Jul 2002 address@hidden wrote:
Thanks for the useful answers. The code seems to compile ok (gcc 2.95)
without the smsd and the xgnokii stuff (haven't installed XFree or
mysql
yet). It doesn't link.
Dosn't gnokii link? Or just gnokiid doesn't?
haven't tried gnokiid yet.
gnokii doesn't link, problems:
ATEM_Initialised defined several times (should be extern in
at_emulator.h ?)
GSM_Info defined several times (should be extern in gsm_api.h ?)
PtyRDFD defined several times (local variable with global scope ?)
PtyWRFD defined several times (local variable with global scope ?)
CFG_Info defined several times (should be extern in cfgreader.h ?)
glink defined several times (as far as I can see it's a bad idea to
define this as a global pointer in several places, gives you some quite
tricky linking issues. Better define it once and pass the pointer to
every function that needs it as a function argument)
Roddi