• Re: Make Error

    From Thumper@1:103/705 to All on Tue Aug 25 15:13:48 2020
    Hello,

    I've tried to update SBBS (under Ubuntu 18.04) and getting this error at the end of make: Never happened before so not sure what is happening..... Not sure if you need anymore info....

    ../build/Common.gmake:455: recipe for target 'gcc.linux.x64.obj.release-mt/curs_cio.o' failed
    make[1]: *** [gcc.linux.x64.obj.release-mt/curs_cio.o] Error 1
    make[1]: Leaving directory '/home/sbbs/sbbs/src/conio' /home/sbbs/sbbs/src/sbbs3/../build/Common.gmake:503: recipe for target 'ciolib-mt' failed
    make: *** [ciolib-mt] Error 2


    -=Thumper=-
    Sysop

    ---
    þ Synchronet þ -=The Wastelands BBS=- -=Since 1990=-
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Digital Man@1:103/705 to Thumper on Tue Aug 25 16:17:16 2020
    Re: Re: Make Error
    By: Thumper to All on Tue Aug 25 2020 03:13 pm

    Hello,

    I've tried to update SBBS (under Ubuntu 18.04) and getting this error at the end of make: Never happened before so not sure what is happening..... Not sure if you need anymore info....

    ../build/Common.gmake:455: recipe for target 'gcc.linux.x64.obj.release-mt/curs_cio.o' failed
    make[1]: *** [gcc.linux.x64.obj.release-mt/curs_cio.o] Error 1
    make[1]: Leaving directory '/home/sbbs/sbbs/src/conio' /home/sbbs/sbbs/src/sbbs3/../build/Common.gmake:503: recipe for target 'ciolib-mt' failed
    make: *** [ciolib-mt] Error 2

    The root error would be further up in the output. Likely, running src/cleanall.sh first will fix you up however.

    digital man

    Synchronet "Real Fact" #37:
    Synchronet's Windows Control Panel is built with Borland C++ Builder.
    Norco, CA WX: 91.9øF, 43.0% humidity, 7 mph NNE wind, 0.00 inches rain/24hrs --- SBBSecho 3.11-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Thumper@1:103/705 to Digital Man on Wed Aug 26 10:55:00 2020
    Digital Man wrote to Thumper <=-

    Re: Re: Make Error
    By: Thumper to All on Tue Aug 25 2020 03:13 pm

    Hello,

    I've tried to update SBBS (under Ubuntu 18.04) and getting this error at the end of make: Never happened before so not sure what is happening..... Not sure if you need anymore info....

    ../build/Common.gmake:455: recipe for target 'gcc.linux.x64.obj.release-mt/curs_cio.o' failed
    make[1]: *** [gcc.linux.x64.obj.release-mt/curs_cio.o] Error 1
    make[1]: Leaving directory '/home/sbbs/sbbs/src/conio' /home/sbbs/sbbs/src/sbbs3/../build/Common.gmake:503: recipe for target 'ciolib-mt' failed
    make: *** [ciolib-mt] Error 2

    The root error would be further up in the output. Likely, running src/cleanall.sh first will fix you up however.

    digital man

    I'll be working from home tomorrow and will check it out. Thanks!


    ... If a sloth were to clap, it will always sound sarcastic.
    --- MultiMail/Win v0.52
    þ Synchronet þ -=The Wastelands BBS=- -=Since 1990=-
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Thumper@1:103/705 to All on Wed Sep 23 13:03:00 2020
    Hello,

    Finally got around to trying to update my Ubuntu Synchronet setup. Here is the whole error I get from when it appears to start:

    Compiling curs_cio.c
    curs_cio.c: In function ‘_putch’:
    curs_cio.c:335:2: warning: implicit declaration of function ‘setcchar’; did you mean ‘getchar’? [-Wimplicit-function-declaration]
    setcchar(&cha, wch, attr, cpair, NULL);
    ^~~~~~~~
    getchar
    curs_cio.c:336:8: warning: implicit declaration of function ‘add_wch’; did you mean ‘addch’? [-Wimplicit-function-declaration]
    ret = add_wch(&cha);
    ^~~~~~~
    addch
    curs_cio.c: In function ‘curs_vmem_gettext’:
    curs_cio.c:473:4: warning: implicit declaration of function ‘mvin_wch’; did you mean ‘mvinsch’? [-Wimplicit-function-declaration]
    mvin_wch(y, x, &cchar);
    ^~~~~~~~
    mvinsch
    curs_cio.c: In function ‘curs_getch’:
    curs_cio.c:942:2: error: unknown type name ‘wint_t’; did you mean ‘uint8_t’?
    wint_t ch;
    ^~~~~~
    uint8_t
    curs_cio.c:953:9: warning: implicit declaration of function ‘get_wch’; did you mean ‘getch’? [-Wimplicit-function-declaration]
    while(get_wch(&ch)==ERR) {
    ^~~~~~~
    getch
    ../build/Common.gmake:455: recipe for target 'gcc.linux.x64.obj.release-mt/curs_cio.o' failed
    make[1]: *** [gcc.linux.x64.obj.release-mt/curs_cio.o] Error 1
    make[1]: Leaving directory '/home/sbbs/sbbs/repo/src/conio' /home/sbbs/sbbs/repo/src/sbbs3/../build/Common.gmake:503: recipe for target 'ciolib-mt' failed
    make: *** [ciolib-mt] Error 2



    ... The number you have dailed...Nine-one-one...has been changed.
    --- MultiMail/Win v0.52
    þ Synchronet þ -=The Wastelands BBS=- -=Since 1990=-
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Thumper@1:103/705 to All on Wed Sep 23 13:13:37 2020
    My Bad. I found a previous thread about this. Not sure when I lost libncursesw5-dev though. Had to be there when I originally installed I'd assume....

    ---
    þ Synchronet þ -=The Wastelands BBS=- -=Since 1990=-
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Digital Man@1:103/705 to Thumper on Fri Sep 25 12:15:12 2020
    Re: Make Error
    By: Thumper to All on Wed Sep 23 2020 01:03 pm

    Hello,

    Finally got around to trying to update my Ubuntu Synchronet setup. Here is the whole error I get from when it appears to start:

    Compiling curs_cio.c
    curs_cio.c: In function `_putch':
    curs_cio.c:335:2: warning: implicit declaration of function `setcchar'; did

    Sounds like you don't have http://packages.debian.org/stable/libncursesw5-dev installed.

    digital man

    Rush quote #25:
    Throw off those chains of reason and your prison disappears
    Norco, CA WX: 83.1øF, 39.0% humidity, 3 mph ENE wind, 0.00 inches rain/24hrs --- SBBSecho 3.11-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Thumper@1:103/705 to Digital Man on Mon Sep 28 08:24:00 2020
    Digital Man wrote to Thumper <=-

    Re: Make Error
    By: Thumper to All on Wed Sep 23 2020 01:03 pm

    Hello,

    Finally got around to trying to update my Ubuntu Synchronet setup. Here is the whole error I get from when it appears to start:

    Compiling curs_cio.c
    curs_cio.c: In function `_putch':
    curs_cio.c:335:2: warning: implicit declaration of function `setcchar'; did

    Sounds like you don't have http://packages.debian.org/stable/libncursesw5-dev installed.

    digital man


    Yup. Found out right after I had wrote that. All fixed now but unsure how it all of the sudden it was gone. All updates were working normal for quite some time and then the errors started. I know what to look for if it happens again. :)



    ... What is mind? No matter! What is matter? Never mind! - Homer S.
    --- MultiMail/Win v0.52
    þ Synchronet þ -=The Wastelands BBS=- -=Since 1990=-
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Digital Man@1:103/705 to Thumper on Mon Sep 28 11:57:10 2020
    Re: Re: Make Error
    By: Thumper to Digital Man on Mon Sep 28 2020 08:24 am

    Digital Man wrote to Thumper <=-

    Re: Make Error
    By: Thumper to All on Wed Sep 23 2020 01:03 pm

    Hello,

    Finally got around to trying to update my Ubuntu Synchronet setup. Here is the whole error I get from when it appears to start:

    Compiling curs_cio.c
    curs_cio.c: In function `_putch':
    curs_cio.c:335:2: warning: implicit declaration of function `setcchar'; did

    Sounds like you don't have http://packages.debian.org/stable/libncursesw5-dev installed.

    Yup. Found out right after I had wrote that. All fixed now but unsure how it all of the sudden it was gone. All updates were working normal for quite some time and then the errors started. I know what to look for if it happens again. :)

    When we were using SDL-1.2, we didn't need the "wide" version of the ncurses lib. Now that we're using SDL 2, we do need it.

    digital man

    Sling Blade quote #22:
    Karl: I don't reckon you have to go with women to be a good father to a boy. Norco, CA WX: 94.9øF, 35.0% humidity, 3 mph SE wind, 0.00 inches rain/24hrs
    --- SBBSecho 3.11-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Thumper@1:103/705 to Digital Man on Tue Sep 29 09:04:00 2020
    Digital Man wrote to Thumper <=-

    Re: Re: Make Error
    By: Thumper to Digital Man on Mon Sep 28 2020 08:24 am

    Digital Man wrote to Thumper <=-

    Re: Make Error
    By: Thumper to All on Wed Sep 23 2020 01:03 pm

    Hello,

    Finally got around to trying to update my Ubuntu Synchronet setup. Here is the whole error I get from when it appears to start:

    Compiling curs_cio.c
    curs_cio.c: In function `_putch':
    curs_cio.c:335:2: warning: implicit declaration of function `setcchar'; did

    Sounds like you don't have http://packages.debian.org/stable/libncursesw5-dev installed.

    Yup. Found out right after I had wrote that. All fixed now but unsure how it all of the sudden it was gone. All updates were working normal for quite some time and then the errors started. I know what to look for if it happens again. :)

    When we were using SDL-1.2, we didn't need the "wide" version of the ncurses lib. Now that we're using SDL 2, we do need it.

    Got it. :)


    ... MultiMail, the new multi-platform, multi-format offline reader!
    --- MultiMail/Win v0.52
    þ Synchronet þ -=The Wastelands BBS=- -=Since 1990=-
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)