• nlcheck try 2 :)

    From Benny Pedersen@2:230/0 to All on Wed Feb 14 03:35:36 2018
    Hello All!

    ----- Makefile begins -----
    # test simple
    nlcheckw32: nlcheckw32.o
    cc -o $@ $^ -lz -lm

    ----- Makefile ends -----

    ----- log begins -----
    nlcheckw32.o: In function `Convertline':
    nlcheckw32.c:(.text+0xaa5): undefined reference to `stricmp' nlcheckw32.c:(.text+0xac2): undefined reference to `stricmp' nlcheckw32.c:(.text+0xadf): undefined reference to `stricmp' nlcheckw32.c:(.text+0xafc): undefined reference to `stricmp' nlcheckw32.c:(.text+0xd8b): undefined reference to `stricmp' nlcheckw32.o:nlcheckw32.c:(.text+0xda8): more undefined references to `stricmp'
    follow
    nlcheckw32.o: In function `.L191':
    nlcheckw32.c:(.text+0x2119): undefined reference to `strnicmp' nlcheckw32.c:(.text+0x214f): undefined reference to `strnicmp'
    collect2: error: ld returned 1 exit status
    make: *** [Makefile:3: nlcheckw32] Error 1
    ----- log ends -----

    help


    Regards Benny

    ... there can only be one way of life, and it works :)

    --- Msged/LNX 6.2.0 (Linux/4.9.76-gentoo-r1 (i686))
    * Origin: I will always keep a PC running CPM 3.0 (2:230/0)
  • From Alexey Vissarionov@2:5020/545 to Benny Pedersen on Wed Feb 14 08:28:02 2018
    Good ${greeting_time}, Benny!

    14 Feb 2018 03:35:36, you wrote to All:

    nlcheckw32.c:(.text+0xac2): undefined reference to `stricmp'

    Most likely, that would be as simple as

    #ifndef stricmp
    #define stricmp(x,y) strcasecmp(x,y)
    #endif


    --
    Alexey V. Vissarionov aka Gremlin from Kremlin
    gremlin.ru!gremlin; +vii-cmiii-cmlxxvii-mmxlviii

    ... god@universe:~ # cvs up && make world
    --- /bin/vi
    * Origin: http://openwall.com/Owl (2:5020/545)
  • From Benny Pedersen@2:230/0 to Alexey Vissarionov on Wed Feb 14 15:21:48 2018
    Hello Alexey!

    14 Feb 2018 08:28, Alexey Vissarionov wrote to Benny Pedersen:

    Most likely, that would be as simple as

    #ifndef stricmp
    #define stricmp(x,y) strcasecmp(x,y)
    #endif

    +1

    ----- log begins -----
    nlcheckw32.o: In function `.L191':
    nlcheckw32.c:(.text+0x2119): undefined reference to `strnicmp' nlcheckw32.c:(.text+0x214f): undefined reference to `strnicmp'
    collect2: error: ld returned 1 exit status
    ----- log ends -----

    one more


    Regards Benny

    ... there can only be one way of life, and it works :)

    --- Msged/LNX 6.2.0 (Linux/4.9.76-gentoo-r1 (i686))
    * Origin: I will always keep a PC running CPM 3.0 (2:230/0)
  • From Alexey Vissarionov@2:5020/545 to Benny Pedersen on Wed Feb 14 17:50:50 2018
    Good ${greeting_time}, Benny!

    14 Feb 2018 15:21:48, you wrote to me:

    Most likely, that would be as simple as
    #ifndef stricmp
    #define stricmp(x,y) strcasecmp(x,y)
    #endif
    +1
    nlcheckw32.c:(.text+0x2119): undefined reference to `strnicmp'
    one more

    Look at the manual page of the first to find the second.
    You aren't from Z1, so I think you'd be able to cope with this.


    --
    Alexey V. Vissarionov aka Gremlin from Kremlin
    gremlin.ru!gremlin; +vii-cmiii-cmlxxvii-mmxlviii

    ... GPG: 8832FE9FA791F7968AC96E4E909DAC45EF3B1FA8 @ hkp://keys.gnupg.net
    --- /bin/vi
    * Origin: http://openwall.com/Owl (2:5020/545)
  • From Benny Pedersen@2:230/0 to Alexey Vissarionov on Wed Feb 14 20:51:24 2018
    * Reply to message originally in area CarbonArea
    Hello Alexey!

    14 Feb 2018 17:50, Alexey Vissarionov wrote to Benny Pedersen:

    Look at the manual page of the first to find the second.

    man stricmp gives me nothing
    man strnicmp gives me nothing

    what tools do you use to have all this info ?


    Regards Benny

    ... there can only be one way of life, and it works :)

    --- Msged/LNX 6.2.0 (Linux/4.9.76-gentoo-r1 (i686))
    * Origin: I will always keep a PC running CPM 3.0 (2:230/0)
  • From Alexey Vissarionov@2:5020/545 to Benny Pedersen on Wed Feb 14 23:24:34 2018
    Good ${greeting_time}, Benny!

    14 Feb 2018 20:51:24, you wrote to me:

    Look at the manual page of the first to find the second.
    man stricmp gives me nothing
    man strnicmp gives me nothing

    Try `man strcasecmp` :-)

    what tools do you use to have all this info ?

    24 years of experience in IT and 22 years of experience in ${areatag}.

    Hint:

    gremlin@nb:~ > man str
    strace strcmp streamer strftime strlen strsignal strtok strange strcoll strerror string strnlen strspn strtol strcasecmp strcpy strfile strings strpbrk strstr strtoul strcat strdup strfmon strip strptime strtod strverscmp strchr stream strfry strlcpy strsep strtoimax strxfrm gremlin@nb:~ > man strc
    strcasecmp strcat strchr strcmp strcoll strcpy
    gremlin@nb:~ > man strc_


    --
    Alexey V. Vissarionov aka Gremlin from Kremlin
    gremlin.ru!gremlin; +vii-cmiii-cmlxxvii-mmxlviii

    ... GPG: 8832FE9FA791F7968AC96E4E909DAC45EF3B1FA8 @ hkp://keys.gnupg.net
    --- /bin/vi
    * Origin: http://openwall.com/Owl (2:5020/545)
  • From Nicholas Boel@1:154/10 to Alexey Vissarionov on Wed Feb 14 16:01:56 2018
    Hello,

    On Wed, 14 Feb 2018 17:50:50 +0300, Alexey Vissarionov -> Benny Pedersen wrote:

    Look at the manual page of the first to find the second.
    You aren't from Z1, so I think you'd be able to cope with this.

    And if you would be so kind as to go take a piss on an electric fence. That would be great.

    Remember, shake more than twice and you're playing with it! ;)

    Regards,
    Nick

    --- Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52
    * Origin: thePharcyde_ distribution system (1:154/10)
  • From Alexey Vissarionov@2:5020/545 to Nicholas Boel on Thu Feb 15 12:34:56 2018
    Good ${greeting_time}, Nicholas!

    14 Feb 2018 16:01:56, you wrote to me:

    You aren't from Z1, so I think you'd be able to cope with this.
    And if you would be so kind as to go take a piss on an electric
    fence. That would be great. Remember, shake more than twice and
    you're playing with it! ;)

    Previous time it was Bob Seaborn writing something like this to me...
    By the way, where is he? :-)


    --
    Alexey V. Vissarionov aka Gremlin from Kremlin
    gremlin.ru!gremlin; +vii-cmiii-cmlxxvii-mmxlviii

    ... god@universe:~ # cvs up && make world
    --- /bin/vi
    * Origin: http://openwall.com/Owl (2:5020/545)
  • From Nicholas Boel@1:154/10 to Alexey Vissarionov on Thu Feb 15 08:24:44 2018
    Hello,

    On Thu, 15 Feb 2018 12:34:56 +0300, Alexey Vissarionov -> Nicholas Boel wrote:

    Previous time it was Bob Seaborn writing something like this to me...
    By the way, where is he? :-)

    He was a lot older than I am. Probably almost double my age, and not a friend of mine. I'll most likely be here long enough to see you pass, and until that day, every time you want to say something low (below your usual self even) about Z1 or the people in it, I'll return it in kind - although much more direct since most of Z2 isn't as cocky as you are and I have quite a few fido friends and acquaintances there.

    You obviously haven't taken up the idea of pissing on the electric fence yet, since you're still here. I'll make popcorn and wait as I have a lot more time than you do. :-)

    Regards,
    Nick

    --- Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52
    * Origin: thePharcyde_ distribution system (1:154/10)
  • From Vince Coen@2:250/1 to Alexey Vissarionov on Thu Feb 15 22:06:17 2018
    Hello Alexey!

    Thursday February 15 2018 12:34, you wrote to Nicholas Boel:

    Good ${greeting_time}, Nicholas!

    14 Feb 2018 16:01:56, you wrote to me:

    You aren't from Z1, so I think you'd be able to cope with this.
    And if you would be so kind as to go take a piss on an electric
    fence. That would be great. Remember, shake more than twice and
    you're playing with it! ;)

    Previous time it was Bob Seaborn writing something like this to me...
    By the way, where is he? :-)


    Died end of last year.

    Vince

    --- Mageia Linux v5.1/Mbse v1.0.7.4/GoldED+/LNX 1.1.501-b20150715
    * Origin: Air Applewood, The Linux Gateway to the UK & Eire (2:250/1)
  • From Nicholas Boel@1:154/10 to Vince Coen on Fri Feb 16 11:04:28 2018
    Hello,

    On Thu, 15 Feb 2018 22:06:16 +0000, Vince Coen -> Alexey Vissarionov wrote:

    ; Previous time it was Bob Seaborn writing something like this to me...
    ; By the way, where is he? :-)

    Died end of last year.

    He knows that, Vince. He was being rude and inconsiderate.

    Regards,
    Nick

    --- Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52
    * Origin: thePharcyde_ distribution system (1:154/10)
  • From Alexey Vissarionov@2:5020/545 to Nicholas Boel on Sat Feb 17 16:32:00 2018
    Good ${greeting_time}, Nicholas!

    15 Feb 2018 08:24:44, you wrote to me:

    Previous time it was Bob Seaborn writing something like this to
    me... By the way, where is he? :-)
    He was a lot older than I am. Probably almost double my age,

    Yes, I see - you are much more stupid and arrogant.

    and not a friend of mine.

    Mea culpa.. I had to recall that LAMEricans don't have friends, but only partners - business or whatever else.

    I'll most likely be here long enough to see you pass,

    I wish you'd know that anecdote about an old hebrew, who was asked about his health...

    and until that day, every time you want to say something low (below
    your usual self even) about Z1 or the people in it, I'll return it

    Well, I'd give you a try. If you roll the discussion thread back, you'd see it started from software porting issues. Also, you can see that nobody from Z1 was
    able to provide any real help with these issues, and there still exists one unresolved issue.

    Would you be so kind to show your knowledge and help BP with this remaining portability issue? :-)

    You obviously haven't taken up the idea of pissing on the electric
    fence yet, since you're still here.

    Yes, I knew that almost 80% of LAMEricans have electrophobia... you'd be surprized, but a person with a basic knowledge of physics can piss on a non-insulated 30 kV power line without any risk.

    Also, we don't use electric fences: they are purely LAMErican invention for territory enclosure.

    I'll make popcorn and wait as I have a lot more time than you do. :-)

    Yes, I see - that's because you don't spend it for self-educating.


    --
    Alexey V. Vissarionov aka Gremlin from Kremlin
    gremlin.ru!gremlin; +vii-cmiii-cmlxxvii-mmxlviii

    ... that's why I really dislike fools.
    --- /bin/vi
    * Origin: http://openwall.com/Owl (2:5020/545)
  • From Alexey Vissarionov@2:5020/545 to Vince Coen on Sat Feb 17 17:17:00 2018
    Good ${greeting_time}, Vince!

    15 Feb 2018 22:06:16, you wrote to me:

    Previous time it was Bob Seaborn writing something like this to me...
    By the way, where is he? :-)
    Died end of last year.

    I know. Alas, a person trying to be his successor in attempts to insult me is much more stupid...


    --
    Alexey V. Vissarionov aka Gremlin from Kremlin
    gremlin.ru!gremlin; +vii-cmiii-cmlxxvii-mmxlviii

    ... that's why I really dislike fools.
    --- /bin/vi
    * Origin: http://openwall.com/Owl (2:5020/545)
  • From Nicholas Boel@1:154/10 to Alexey Vissarionov on Sun Feb 18 11:04:34 2018
    Hello,

    On Sat, 17 Feb 2018 16:32:00 +0300, Alexey Vissarionov -> Nicholas Boel wrote:

    Yes, I see - that's because you don't spend it for self-educating.

    You call Americans lame, yet you have the Olympic Athletes of Russia. Bunch of hypocritical cheaters. LOL

    Regards,
    Nick

    --- Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52
    * Origin: thePharcyde_ distribution system (1:154/10)