|
From: Wez F. <we...@th...> - 2001-03-02 11:28:59
|
On 2001-03-02 04:57:26, <jj...@th...> wrote: > I, finally, succeeded in compling FreeDCE in my Linux box. > I modified some files in 'idl' directory as follow : > Before: > CFLAGS = -g -Wall -W -O -pipe -Werror -DMIA > After: > CFLAGS = -g -Wall -W -O -pipe -DMIA The -Werror flag is to ensure that the code builds without warnings (it promotes warnings to errors). I think maybe we should add a configure option to relax this flag if people are having problems with it. > Before: > find_rule: __attribute__((__unused__)) /* we branch to this label > when backing up */ > After > find_rule: /* we branch to this label when backing up */ __attribute__ is a gcc extension, but for some reason it seemed to be the cause of your problem, even though you are using gcc. > I downloaded latest CVS version and , I guess, > some version mismatch of complier or something on my Linux box with > yours > caused the problem..... Did you successfully compile the latest CVS version without having to make the changes above? If not, please let me see the exact error messages - I need to know so that I can account for it in our configure process. > Now I have ported my dce application running on HP-UX to Linux platform > and I am testing it now. Hope it works... In theory it should - the codebase is of mature status. --Wez. |