1
Games / Re: Dosbox and Dosbox-X
« on: Today at 01:10:31 am »
Have you tried ALT-HOME?
OS2World.com Forum is back !!!
Remember to visit OS2World at:
http://www.os2world.com
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
# no-asm do not use assembler
...
# 386 generate 80386 code in assembly modules
# no-sse2 disables IA-32 SSE2 code in assembly modules, the above
# mentioned '386' option implies this one
Configuring OpenSSL version 3.4.1 for target os2
Using os-specific seed configuration
syntax error at (eval 25) line 102, near ",
)"
Missing right curly or square bracket at (eval 25) line 104, at end of line
Created configdata.pm
Running configdata.pm
Can't locate OpenSSL/fallback.pm in @INC (@INC contains: K:/util/perl /@unixroot/usr/local/lib/perl5 /@unixroot/usr/local/share/perl5 /@unixroot/usr/lib/perl5/vendor_perl /@unixroot/usr/share/perl5/vendor_perl /@unixroot/usr/lib/perl5 /@unixroot/usr/share/perl5 .) at configdata.pm line 36239.
BEGIN failed--compilation aborted at configdata.pm line 36239.
error: Bad exit status from /@unixroot/var/tmp/rpm-tmp.ywakbN (%build)
RPM build errors:
Bad exit status from /@unixroot/var/tmp/rpm-tmp.ywakbN (%build)
Hello
Any idea what this program is?
Is it the "Anthy -- Japanese Kana-Kanji Conversion Engine Library" ?
https://github.com/netsphere-labs/anthy
Directory of H:\tmp\anthy\src-util
1-26-26 7:45p 48,204 0 a--- anthy-agent.exe
1-26-26 7:44p 37,738 0 a--- anthy-dic-tool.exe
1-26-26 7:45p 40,169 0 a--- anthy-morphological-analyzer.exe
Unluckily the git version uses UTF8.how do we know if it works?Almost seems like something is missing,
H:\anthy\bin>anthy-agent.exe
Failed to init anthy
Or perhaps I don't know how to run it. Need a Japanese user I guess.Regards
Without looking at the code, I have to guess that -DHAVE_ISSETUGID=0 is part of the problem. This is going to trigger the compatibility code to build. However, since we have a issetugid(), this is going to cause a problem.
/* Return 1 if the process is privileged, 0 otherwise. */
/* static int */
int
issetugid(void)
{
# if HAVE_SYS_AUXV_H && defined AT_SECURE
unsigned long val;
errno = 0;
val = getauxval(AT_SECURE);
if (val || errno != ENOENT)
return !!val;
# endif
# if HAVE_GETRESUID
{
uid_t ruid, euid, suid;
gid_t rgid, egid, sgid;
if (0 <= getresuid (&ruid, &euid, &suid)) {
if ((ruid ^ euid) | (ruid ^ suid))
return 1;
if (0 <= getresgid (&rgid, &egid, &sgid))
return !!((rgid ^ egid) | (rgid ^ sgid));
}
}
# endif
#ifndef __OS2__
static int
issetugid(void)
#else
return 0;
#endif
localtime.c:391:1: error: expected identifier or '(' before 'return'
391 | return 0;
| ^~~~~~
localtime.c:393:1: error: expected identifier or '(' before '{' token
393 | {
| ^
make: *** [<builtin>: localtime.o] Error 1