<86>Jun 25 07:54:49 userdel[246263]: delete user 'rooter'
<86>Jun 25 07:54:49 userdel[246263]: removed group 'rooter' owned by 'rooter'
<86>Jun 25 07:54:49 userdel[246263]: removed shadow group 'rooter' owned by 'rooter'
<86>Jun 25 07:54:49 groupadd[246276]: group added to /etc/group: name=rooter, GID=1877
<86>Jun 25 07:54:49 groupadd[246276]: group added to /etc/gshadow: name=rooter
<86>Jun 25 07:54:49 groupadd[246276]: new group: name=rooter, GID=1877
<86>Jun 25 07:54:49 useradd[246285]: new user: name=rooter, UID=1877, GID=1877, home=/root, shell=/bin/bash
<86>Jun 25 07:54:49 userdel[246316]: delete user 'builder'
<86>Jun 25 07:54:49 userdel[246316]: removed group 'builder' owned by 'builder'
<86>Jun 25 07:54:49 userdel[246316]: removed shadow group 'builder' owned by 'builder'
<86>Jun 25 07:54:49 groupadd[246341]: group added to /etc/group: name=builder, GID=1878
<86>Jun 25 07:54:49 groupadd[246341]: group added to /etc/gshadow: name=builder
<86>Jun 25 07:54:49 groupadd[246341]: new group: name=builder, GID=1878
<86>Jun 25 07:54:49 useradd[246362]: new user: name=builder, UID=1878, GID=1878, home=/usr/src, shell=/bin/bash
<13>Jun 25 07:54:50 rpmi: libgpm-devel-1.20.1-alt18.1 1521564348 installed
Building target platforms: x86_64
Building for target x86_64
Wrote: /usr/src/in/nosrpm/biew-6.1.0-alt1.nosrc.rpm (w1.gzdio)
Installing biew-6.1.0-alt1.src.rpm
Building target platforms: x86_64
Building for target x86_64
Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.19137
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ rm -rf biew-610
+ echo 'Source #0 (biew-610-src.tar.bz2):'
Source #0 (biew-610-src.tar.bz2):
+ /bin/bzip2 -dc /usr/src/RPM/SOURCES/biew-610-src.tar.bz2
+ /bin/tar -xf -
+ cd biew-610
+ /bin/chmod -c -Rf u+rwX,go-w .
+ exit 0
Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.39602
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd biew-610
+ find . -type f
+ xargs sed -i 's|<slang.h>|<slang/slang.h>|g'
+ sed 's/|| die "Please upgrade your compiler"//' configure
#!/bin/sh
# Configure script for biew project
#
#set -x
# Declare useful functions

# Prefer these macros to full length text !
# These macros only return an error code - NO display is done
log(){
    echo "$@" >>"$TMPLOG"
}

log_file(){
    log BEGIN $1
    cat -n $1 >>"$TMPLOG"
    log END $1
}

echolog(){
    log "$@"
    echo "$@"
}

check_cmd(){
    log "$@"
    "$@" >>"$TMPLOG" 2>&1
}

set_all(){
    value=$1
    shift
    for var in $*; do
        eval $var=$value
    done
}

enable(){
    set_all yes $*
}

disable(){
    set_all no $*
}

enabled(){
    eval test "x\$$1" = "xyes"
}

disabled(){
    eval test "x\$$1" = "xno"
}

cc_check() {
  log_file "$TMPC"
  ( check_cmd $_cc $_cdefsys $_cdefos $_extraincdir $_extralibdir --verbose "$TMPC" -o "$TMPO" "$@" ) >> "$TMPLOG" 2>&1
  TMP="$?"
  echo >> "$TMPLOG"
  echo "ldd $TMPO" >> "$TMPLOG"
  ( ldd "$TMPO" ) >> "$TMPLOG" 2>&1
  echo >> "$TMPLOG"
  return "$TMP"
}

check_cpp(){
    log check_cpp "$@"
    cat >$TMPC
    log_file $TMPC
    check_cmd $_cc $CFLAGS $_extraincdir "$@" -E -o $TMPO $TMPC
}

check_header(){
    log check_header "$@"
    header=$1
    shift
    var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
    disable $var
    check_cpp "$@" <<EOF && enable $var
#include <$header>
int x;
EOF
}

check_cc(){
    log check_cc "$@"
    cat >$TMPC
    log_file $TMPC
    check_cmd $_cc $CFLAGS $_cdefsys $_extraincdir "$@" -c -o $TMPO $TMPC
}

# Display error message, flushes tempfile, exit
die () {
  echo
  echo "Error: $@" >&2
  echo >&2
  rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP"
  echo "Check "$TMPLOG" if you do not understand why it failed."
  exit 1
}

# Use this before starting a check
echocheck() {
  echo "============ Checking for $@ ============" >> "$TMPLOG"
  echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
}

# Use this to echo the results of a check
echores() {
  echo "Result is: $@" >> "$TMPLOG"
  echo "##########################################" >> "$TMPLOG"
  echo "" >> "$TMPLOG"
  echo "$@"
}
#############################################################################

x86() {
case "$host_arch" in
   i*86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*) return 0;;
   *) return 1;;
esac
}

x86_64() {
case "$host_arch" in
   x86_64|amd64) return 0;;
   *) return 1;;
esac
}

ppc() {
case "$host_arch" in
      ppc) return 0 ;;
      *) return 1 ;;
esac
}

alpha() {
case "$host_arch" in
      alpha) return 0 ;;
      *) return 1 ;;
esac
}

mips() {
case "$host_arch" in
      mips) return 0 ;;
      *) return 1 ;;
esac
}

sparc() {
case "$host_arch" in
      sparc*) return 0 ;;
      *) return 1 ;;
esac
}

arm() {
case "$host_arch" in
      arm*) return 0 ;;
      *) return 1 ;;
esac
}

# Check how echo works in this /bin/sh
case `echo -n` in
  -n)	_echo_n=	_echo_c='\c'	;;	# SysV echo
  *)	_echo_n='-n '	_echo_c=	;;	# BSD echo
esac


# 1st: print out help

for parm in "$@" ; do
  if test "$parm" = "--help" || test "$parm" = "-help" || test "$parm" = "-h" ; then
    cat << EOF

Usage: $0 [OPTIONS]...

Configuration:
  -h, --help             display this help and exit

Installation directories:
  --prefix=DIR           use this prefix for installing biew [/usr/local]
  --datadir=DIR          use this prefix for installing machine independent
                         data files (syntaxes, skins) [PREFIX/share/biew]
  --libdir=DIR           use this prefix for installing machine dependent
                         libraries and plugins (for future) [PREFIX/lib/biew]

Base features:
  --cc=COMPILER          use this C compiler to build biew [gcc]
  --ld=LINKER            use this LD linker to link biew [ld]
  --ar=AR                use this AR to build biewlib    [ar]
  --ranlib=RANLIB        use RANLIB to build indexes on builib [ranlib]
  --rm=RM                use RM program to cleanup files [rm]
  --ln=LN                use LN program to make soft link [ln]
  --cd=CD                use CD program to change directory [cd]
  --cp=CP                use CP program to copy files [cp]
  --target-system=SYSTEM target system (linux, freebsd, win32, etc)  [auto,unix]
  --target-arch=ARCH     target architecture (i386, alpha, etc)   [auto,generic]
  --enable-debug[=1-3]   compile debugging information into biew [disable]
  --enable-profile       compile profiling information into biew [disable]
  --enable-gcov          compile gnu coverage information into biew [disable]

Optional features:
  --enable-slang         disable S-Lang programming library [vt100]
  --enable-curses        disable "curses" terminal control library [vt100]
  --disable-iconv        disable iconv library [autodetect]

Use these options if autodetection fails:
  --with-extraincdir=DIR   extra headers (curses.h ...) in DIR
  --with-extralibdir=DIR   extra library files (libncurses.so, ...) in DIR
  --with-x11incdir=DIR     X headers in DIR
  --with-x11libdir=DIR     X library files in DIR

Environment variables:
  CFLAGS    C compiler flags
  LDFLAGS   linker flags, e.g. -L<lib dir> if you have libraries in a
            nonstandard directory <lib dir>
  LIBS      specifies additional libs (like: export LIBS=-lacml_mv)
  DESTDIR   specifies base of installation
EOF

  exit 0
  fi
done # for parm in ...

# 2nd: checking for options
_cc=gcc
_ld=gcc
_ar="ar -rcu"
_ranlib=ranlib
_rm="rm -f"
_ln=sln
_cd=cd
_cp=cp
_libext=a
_libprefix=lib
test "$CC" && _cc="$CC"
_prefix="/usr/local"
_datadir=
_libdir=
_target_system=auto
_target_arch=auto
_x11incdir=
_x11libdir=
_profile=
_gcov=
_debug=
_osldef=
_oslibs=
disable _curses
disable _slang
enable  _iconv
for ac_option do
  case "$ac_option" in
  --prefix=*)
    _prefix=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --datadir=*)
    _datadir=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --libdir=*)
    _libdir=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --cc=*)
    _cc=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --ld=*)
    _ld=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --as=*)
    _as=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --cd=*)
    _cd=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --cp=*)
    _cp=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --enable-profile)
    _profile='-pg'
    ;;
  --enable-gcov)
    _gcov='-fprofile-arcs -ftest-coverage'
    _oslibs="-lgcov"
    ;;
  --enable-debug)
    _debug='-g'
    ;;
  --enable-debug=*)
    _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2`
    ;;
  --ar=*)
    _ar=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --ranlib=*)
    _ranlib=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --rm=*)
    _rm=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --ln=*)
    _ln=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --target-system=*)
    _target_system=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --target-arch=*)
    _target_arch=`echo $ac_option | cut -d '=' -f 2`
    ;;
  --with-extraincdir=*)
    _extraincdir="$_extraincdir -I`echo $ac_option | cut -d '=' -f 2`"
    ;;
  --with-extralibdir=*)
    _extralibdir="$_extralibdir -L`echo $ac_option | cut -d '=' -f 2`"
    ;;
  --with-x11incdir=*)
    _x11incdir=-I`echo $ac_option | cut -d '=' -f 2`
    ;;
  --with-x11libdir=*)
    _x11libdir=-L`echo $ac_option | cut -d '=' -f 2`
    ;;
  --disable-curses)
    disable _curses
    ;;
  --enable-curses)
    enable _curses
    ;;
  --disable-slang)
    disable _slang
    ;;
  --enable-slang)
    enable _slang
    ;;
  --disable-iconv)
    disable _iconv
    ;;
  --enable-iconv)
    enable _iconv
    ;;
  esac
done
test -z "$_datadir" && _datadir=$_prefix"/share/biew"
test -z "$_libdir" && _libdir=$_prefix"/lib/biew"

for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
  test "$I" && break
done

TMPLOG="config.log"
$_rm -f "$TMPLOG"
TMPC="$I/biew-conf-$RANDOM-$$.c"
TMPCPP="$I/biew-conf-$RANDOM-$$.cpp"
TMPO="$I/biew-conf-$RANDOM-$$.o"
TMPS="$I/biew-conf-$RANDOM-$$.S"
TMPE="$I/biew-conf-$RANDOM-$$.exe"
_tee="tee -a $TMPLOG"

echocheck "architecture"
if test "$_target_arch" = auto ; then
  if test -z "$host_arch" ; then
  host_arch=`( uname -p ) 2>&1`
  log "uname -p :" "$host_arch"
  case "$host_arch" in
   i*86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*)
     ;;
   x86_64|amd64)
     ;;
   sparc|ppc|alpha|arm|mips)
     ;;

   *) # uname -p on Linux returns 'unknown' for the processor type,
      # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'

      # Maybe uname -m (machine hardware name) returns something we
      # recognize.
      host_arch=`( uname -m ) 2>&1`
      log "uname -m :" "$host_arch"
      case "$host_arch" in
      i*86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*)
         ;;
      x86_64|amd64)
         ;;
      ppc)
         ;;
      alpha)
         ;;
      sparc*)
         ;;
      arm*)
         ;;
      *)
         ;;
    esac
    ;;
  esac
  fi
else
  host_arch=$_target_arch
fi
echores "$host_arch"

echocheck "build"
build_arch=generic
x86     && build_arch=ia32
x86_64  && build_arch=x86_64
ppc     && build_arch=ppc
alpha   && build_arch=alpha
sparc   && build_arch=sparc
mips    && build_arch=mips
arm     && build_arch=arm

echores "$build_arch"

_bitness=32
x86_64  && _bitness=64

echocheck "target OS"
if test "$_target_system" = auto ; then
  if test -z "$system_name" ; then
    # OS name
    system_name=`uname -s`
    log "uname -s :" "$system_name"
    case "$system_name" in
	*[Ll]inux*)
	    _target_system=linux
	    ;;
	*QNX*)
	    echo `uname -v` | grep ^42
	    if test $? -eq 0
	    then
	        _target_system=qnx
	        build_arch=ia32
	        _install=cp
	    else
	        _target_system=qnxnto
	        _install=cp
	    fi
	    ;;
	*[cC][yY][gG][wW][iI][nN]*)
	    _target_system=win32
	    ;;
	*MINGW32*)
	    _target_system=win32
	    ;;
	*[eE][mM][xX]*)
	    _target_system=os2
	    ;;
	*msdosdjgpp*)
	    _target_system=dos
	    build_arch=ia32
	    _tee=
	    ;;
#	|FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|BeOS)
#	*)
#	    _target_system=unix
#	    ;;
    esac
  else
    _target_system=auto
  fi
fi

if test "$_target_system" = auto ; then
  if test -z "$system_name" ; then
    # OS name
    system_name=`/bin/sh --version 2>&1 | sed -n 's/^.*\([(]\)./\1/p'`
    log "/bin/sh --version:" "$system_name"
    case "$system_name" in
	*linux*)
            _target_system=linux
            ;;
	*[cC][yY][gG][wW][iI][nN]*)
	    _target_system=win32
	    ;;
	*[eE][mM][xX]*)
	    _target_system=os2
	    ;;
	*msdosdjgpp*)
	    _target_system=dos
            build_arch=ia32
	    _tee=
            ;;
#	|FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|BeOS)
	*)
	    _target_system=unix
	    ;;
    esac
  else
    _target_system=unix
  fi
fi
echores "$_target_system"


echo "Detected host..."$system_name

_cdefos="-DDATADIR='\"$_datadir\"'"

cc_name=`$_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1`
cc_version=`$_cc -dumpversion`

echocheck "C compiler name"
echores $cc_name
case $cc_name in
    gcc)
    ;;
    *)
      die "Unknown compiler name $cc_name. Project required GCC"
    ;;
esac

echocheck "C compiler version"
echores $cc_version
case $cc_version in
  [0-2]|[0-2].[0-9]|[0-2].[0-9].[0-9])
    die "Please upgrade your gcc upto gcc-3.0 at least"
    ;;
esac
# Printout architecture
_cdefsys=
case "$build_arch" in
  ia32)
# TODO: enable >386 optimizations here
  _cdefsys="-m32 -D__MACHINE__=ia32 -D__CPU_NAME__='\"ia32\"' -D__CPU__=386 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1"
  _osldef="-m32 $_osldef"
  case $cc_version in
    3.[0-9]|3.[0-9].[0-9]|4.[0-9].[0-9])
      _cdefsys="-D__ENABLE_FASTCALL=1 $_cdefsys"
      ;;
  esac
    ;;

  x86_64)
# TODO: enable >386 optimizations here
  _cdefsys="-m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='\"x86_64\"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1"
  _osldef="-m64 $_osldef"
  case $cc_version in
    3.[0-9]|3.[0-9].[0-9]|4.[0-9].[0-9])
      _cdefsys="-D__ENABLE_FASTCALL=1 $_cdefsys"
      ;;
  esac
    ;;

  *)
  _cdefsys="-D__MACHINE__=generic -D__CPU_NAME__='\"generic\"' -D__DEFAULT_DISASM=0"
    echo "It seems noone has ported biew to your OS or CPU type yet."
    echo "using $build_arch architecture"
    ;;
esac

if test -z "$_x11incdir" ; then
echocheck "X11 headers"
  for I in /usr/include /usr/X11R6/include /usr/X11/include /usr/openwin/include ; do
    if test -d "$I/X11" ; then
      _x11incdir="-I$I"
      echores "yes (using $I)"
      break
    fi
  done
fi
if test -z "$_x11incdir" ; then
    echores "x11inc not found"
fi

if test -z "$_x11libdir" ; then
echocheck "X11 libs"
  for I in /usr/X11R6/lib /usr/X11/lib /usr/lib32 /usr/openwin/lib ; do
    if test -d "$I" ; then
      _x11libdir="-L$I"
      echores "yes (using $I)"
      break;
    fi
  done
fi
if test -z "$_x11libdir" ; then
    echores "x11lib not found"
fi

test -z "$_debug" && _osldef="-s $_osldef" || _cdefos="-finline-limit-5 $_cdefos"
if test "$_profile" -o "$_debug" -o "$_gcov"; then
  _cdefos="-W -Wall -O2 -fno-builtin $_debug $_profile $_gcov $_cdefos"
  _osldef="$_debug $_profile $_osldef"
elif test -z "$CFLAGS" ; then
    _cdefos="-DNDEBUG=1 -O2 -ffast-math -fomit-frame-pointer $_cdefos"
    x86 && _cdefos="-mmmx -msse $_cdefos"
else
    _cdefos="-DNDEBUG=1 $CFLAGS $_cdefos"
fi
test -n "$LDFLAGS" && _osldef="$LDFLAGS $_osldef"
test -n "$LIBS" && _osldef="$LIBS $_osldef"

if test "$_target_system" = dos ; then
# disable cc_check call for DJGPP due bugs in bash
_cdefos="-D__HAVE_PRAGMA_PACK__=1 $_cdefos"
else
echocheck "pragma pack"
cat > $TMPC << EOF
#pragma pack(1)
int main(void){return 0;}
EOF
disable _ppack
cc_check && enable _ppack
enabled _ppack && _cdefos="-D__HAVE_PRAGMA_PACK__=1 $_cdefos" 
echores "$_ppack"
fi

#Printout operating system
case "$_target_system" in
    dos)
	_cdefos="-D__MSDOS__ -D__OS_NAME__='\"DOS$_bitness\"' -D__OS__=\"dos\" -Udos $_cdefos"
	_osldef="--force-exe-suffix $_osldef"
	;;
    os2)
	_cdefos="-D__OS2__ -D__OS_NAME__='\"OS/2-$_bitness\"' -Zomf -D__OS__=\"os2\" -Uos2 $_cdefos"
# here I want to have static link of glibc instead emx.dll
	_osldef="-Zexe -Zsmall-conv -Zsys -Zomf -Zstack 1024 $_osldef"
	_ar="emxomfar -p32 rc"
	_ranlib=echo
	_libext=lib
	_libprefix=
	;;
    win32)
# I named this as win32 because of exists Win386 by Watcom.
# here I link crtdll.dll instead cygwin1.dll (it's safe)
	_cdefos="-D__WIN32__ -D__OS_NAME__='\"Win$_bitness\"' -mno-cygwin -D__OS__=\"win32\" -Uwin32 $_cdefos"
	_osldef="-mno-cygwin --force-exe-suffix $_osldef"
	_oslibs="-lwinmm $_oslibs"
	;;
    beos)
	_cdefos="-D__BEOS__ -D__UNIX__ -D__OS_NAME__='\"BeOS$_bitness\"' -D__OS__=\"beos\" -Ubeos -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DDATADIR='\"/boot/home/config/lib\"' -D__DISABLE_MMF -D__DISABLE_ASM -D__DISABLE_SIGIO -DPREFIX=\"$_prefix\" $_cdefos"
	;;
    qnx)
	_cdefos="-D__QNX4__ -D__UNIX__ -D__OS_NAME__='\"QNX4-$_bitness\"' -D__OS__=\"qnx\" -U__QNX__ -D_VT100_ -DHAVE_TERMINAL_OUT=1 -D__DISABLE_MMF -DPREFIX=\"$_prefix\" $_cdefos"
	_oslibs="-ltermlib -lunix -lphoton3r.lib $_oslibs"

	;;
    qnxnto)
	_cdefos="-D__QNX6__ -D__UNIX__ -D__OS_NAME__='\"QNX6-$_bitness\"' -D__OS__=\"qnxnto\" -U__QNX__ -U__NTO__ -D_VT100_ -DHAVE_TERMINAL_OUT=1 -D__DISABLE_MMF -DPREFIX=\"$_prefix\" $_cdefos"
	_oslibs="-lncurses $_oslibs"
	;;
    linux)
	_cdefos="-D__LINUX__ -D__UNIX__ -D__OS_NAME__='\"Linux$_bitness\"' -D__OS__=\"linux\" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX=\"$_prefix\" $_cdefos"
echocheck "gpm.h"
	check_header gpm.h
	enabled gpm_h && _cdefos="-DHAVE_MOUSE $_cdefos" && _oslibs="-lgpm $_oslibs"
echores "$gpm_h"
	;;
    unix)
	_cdefos="-D__UNIX__ -D__OS__=\"unix\" -Uunix -DHAVE_TERMINAL_OUT=1 $_cdefos"
echocheck "gpm.h"
	check_header gpm.h
	enabled gpm_h && _cdefos="-DHAVE_MOUSE $_cdefos" && _oslibs="-lgpm $_oslibs"
echores "$gpm_h"
	if enabled _slang; then
echocheck "slang.h"
	check_header slang.h
	enabled slang_h && _cdefos="-D_SLANG_ -D__OS_NAME__='\"Unix/Slang\"' $_cdefos"
	enabled slang_h && _oslibs="-lslang $_oslibs" || disable _slang
echores "$slang_h"
	fi
	if enabled _curses -a disabled _slang; then
echocheck "curses.h"
	cat > $TMPC << EOF
	#include <curses.h>
	int main(void) {return 0;}
EOF
	_curseslib=
	disable _curses
	cc_check -lcurses && _curseslib="-lcurses"
	if test -z "$_curseslib" ; then
	    cc_check -lncurses && _curseslib="-lncurses"
	fi
	if test -n "$_curseslib" ; then
	    enable _curses
	    _cdefos="-D_CURSES_ -D__OS_NAME__='\"Unix/Curses\"' $_cdefos"
	    _oslibs="$_curseslib $_oslibs"
	fi
echores "$_curses"
	fi
	disabled _curses -a disabled _slang && _cdefos="-D_VT100_ -D__OS_NAME__='\"Unix/VT100\"' $_cdefos"
	disabled _curses -a disabled _slang && echo "Defaulting to VT100"
	;;
    *)
	;;
esac


echocheck "checking for popen"
cat > $TMPC << EOF
#include <stdio.h>
int main(void){(void)popen; return 0;}
EOF
disable _popen
cc_check && enable _popen
enabled _popen && _cdefos="-DHAVE_POPEN=1 $_cdefos"
echores "$_popen"

echocheck "checking for pclose"
cat > $TMPC << EOF
#include <stdio.h>
int main(void){(void)pclose; return 0;}
EOF
disable _pclose
cc_check && enable _pclose
enabled _pclose && _cdefos="-DHAVE_PCLOSE=1 $_cdefos"
echores "$_pclose"

echocheck "checking for sys/resource.h"
check_header sys/resource.h
enabled sys_resource_h && _cdefos="-DHAVE_SYS_RESOURCE=1 $_cdefos"
echores "$sys_resource_h"

if test -z "$_x11libdir" ; then
 _cdefos="$_cdefos"
else
  if test -z "$_x11incdir" ; then
   _cdefos="$_cdefos"
  else
    _cdefos="-DHAVE_X11 $_cdefos"
  fi
fi

if enabled _iconv; then
disable _iconv
echocheck "iconv"
cat > $TMPC << EOF
#include <iconv.h>
int main(void) { iconv_open(0,0); return 0; }
EOF
cc_check && enable _iconv
if disabled _iconv; then
cc_check -liconv && enable _iconv
enabled _iconv && _oslibs="-liconv $_oslibs"
fi
enabled _iconv && _cdefos="-DHAVE_ICONV $_cdefos"
echores "$_iconv"
fi

# Checking for INSTALL
if test -z $_install
then
    _install="install"
    $_install --version 1>/dev/null 2>/dev/null || _install=""
fi

#Force including of our .h files before standard
_cdefos="-I. $_cdefos"
#############################################################################
echo "Creating config.mak"
cat > config.mak << EOF
# -------- Generated by configure -----------

CC=$_cc
LD=$_ld
AR=$_ar
RANLIB=$_ranlib
RM=$_rm
LN=$_ln
CD=$_cd
CP=$_cp
INSTALL=$_install
LIBEXT=$_libext
LIBPREFIX=$_libprefix
PREFIX=$_prefix
DATADIR=$_datadir
LIBDIR=$_libdir
DESTDIR=$DESTDIR
HOST=$_target_system
MACHINE=$build_arch
CDEFOS=$_cdefos $_extraincdir $_x11incdir
OSLDEF=$_osldef
OS_LIBS=$_extralibdir $_x11libdir $_oslibs
CDEFSYS=$_cdefsys
EOF

#last: printout configure
cat << EOF | $_tee

Config files successfully generated by ./configure !

  Install prefix: $_prefix
  Data directory: $_datadir
  Lib directory: $_libdir
  Compiler: $_cc
  Linker: $_ld
  Librarian: $_ar
  Ranlib: $_ranlib
  Remover: $_rm
  TARGETS
    system: $_target_system
    arch: $build_arch

EOF

$_rm -f "$TMPO" "$TMPC" "$TMPS" "$TMPCPP" "$TMPE"

+ CFLAGS='-O2 -mmmx -msse'
+ CFLAGS='-O2 -mmmx -msse'
+ export CFLAGS
+ CXXFLAGS='-pipe -frecord-gcc-switches -Wall -g -O2'
+ export CXXFLAGS
+ FFLAGS='-pipe -frecord-gcc-switches -Wall -g -O2'
+ export FFLAGS
+ FCFLAGS='-pipe -frecord-gcc-switches -Wall -g -O2'
+ export FCFLAGS
+ '[' -n '' ']'
++ printf %s '-pipe -frecord-gcc-switches -Wall -g -O2'
++ sed -r 's/(^|[[:space:]]+)-[^m][^[:space:]]*//g'
+ ASFLAGS=
+ export ASFLAGS
+ export lt_cv_deplibs_check_method=pass_all
+ lt_cv_deplibs_check_method=pass_all
+ readlink -e -- ./configure
+ xargs -ri dirname -- '{}'
+ xargs -ri find '{}' -type f '(' -name config.sub -or -name config.guess ')' -printf '%h/\n'
+ sort -u
+ xargs -rn1 install -pm755 -- /usr/share/gnu-config/config.sub /usr/share/gnu-config/config.guess
+ ./configure --build=x86_64-alt-linux --host=x86_64-alt-linux --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/lib --localstatedir=/var/lib --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --disable-dependency-tracking --disable-silent-rules --without-included-gettext
Checking for architecture ... x86_64
Checking for build ... x86_64
Checking for target OS ... linux
Detected host...Linux
Checking for C compiler name ... gcc
Checking for C compiler version ... 8
Checking for X11 headers ... x11inc not found
Checking for X11 libs ... x11lib not found
Checking for pragma pack ... yes
Checking for gpm.h ... yes
Checking for checking for popen ... yes
Checking for checking for pclose ... yes
Checking for checking for sys/resource.h ... yes
Checking for iconv ... yes
Creating config.mak

Config files successfully generated by ./configure !

  Install prefix: /usr
  Data directory: /usr/share
  Lib directory: /usr/lib64
  Compiler: gcc
  Linker: gcc
  Librarian: ar -rcu
  Ranlib: ranlib
  Remover: rm -f
  TARGETS
    system: linux
    arch: x86_64

+ make -j16 TARGET_PLATFORM=x86_64 USE_MOUSE=y
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/linux/mouse.c -o biewlib/sysdep/x86_64/linux/mouse.o
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/linux/timer.c -o biewlib/sysdep/x86_64/linux/timer.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/posix/timer.c:21,
                 from biewlib/sysdep/x86_64/linux/timer.c:1:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/posix/timer.c:21,
                 from biewlib/sysdep/x86_64/linux/timer.c:1:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/tw_class.c -o biewlib/tw_class.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from biewlib/tw_class.c:19:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from biewlib/tw_class.c:19:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
biewlib/tw_class.c: In function 'twcFindClass':
biewlib/tw_class.c:74:11: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
  key.name = name;
           ^
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/linux/misc.c -o biewlib/sysdep/x86_64/linux/misc.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/ia32/linux/misc.c:14,
                 from biewlib/sysdep/x86_64/linux/misc.c:1:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/ia32/linux/misc.c:14,
                 from biewlib/sysdep/x86_64/linux/misc.c:1:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/linux/mmfio.c -o biewlib/sysdep/x86_64/linux/mmfio.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/pmalloc.h:23,
                 from ./biewlib/sysdep/generic/linux/mmfio.c:21,
                 from biewlib/sysdep/x86_64/linux/mmfio.c:1:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/pmalloc.h:23,
                 from ./biewlib/sysdep/generic/linux/mmfio.c:21,
                 from biewlib/sysdep/x86_64/linux/mmfio.c:1:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
In file included from biewlib/sysdep/x86_64/linux/mmfio.c:1:
./biewlib/sysdep/generic/linux/mmfio.c: In function '__mmfOpen':
./biewlib/sysdep/generic/linux/mmfio.c:70:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
   if(((int)fhandle) != -1)
       ^
./biewlib/sysdep/generic/linux/mmfio.c:81:34: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
                   mk_flags(mode),(int)fhandle,0L);
                                  ^
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/pmalloc.c -o biewlib/pmalloc.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from biewlib/pmalloc.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from biewlib/pmalloc.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/linux/os_dep.c -o biewlib/sysdep/x86_64/linux/os_dep.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/unix/os_dep.c:43,
                 from ./biewlib/sysdep/generic/linux/os_dep.c:1,
                 from biewlib/sysdep/x86_64/linux/os_dep.c:1:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/unix/os_dep.c:43,
                 from ./biewlib/sysdep/generic/linux/os_dep.c:1,
                 from biewlib/sysdep/x86_64/linux/os_dep.c:1:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/linux/nls.c -o biewlib/sysdep/x86_64/linux/nls.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/unix/nls.c:35,
                 from ./biewlib/sysdep/generic/linux/nls.c:1,
                 from biewlib/sysdep/x86_64/linux/nls.c:1:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/unix/nls.c:35,
                 from ./biewlib/sysdep/generic/linux/nls.c:1,
                 from biewlib/sysdep/x86_64/linux/nls.c:1:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/linux/fileio.c -o biewlib/sysdep/x86_64/linux/fileio.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/posix/fileio.c:32,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/posix/fileio.c:32,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c: In function '__OsCreate':
./biewlib/sysdep/generic/posix/fileio.c:36:10: warning: returning 'int' from a function with return type 'bhandle_t' {aka 'void *'} makes pointer from integer without a cast [-Wint-conversion]
   return open(name,O_RDWR | O_CREAT | O_TRUNC, S_IREAD | S_IWRITE);
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/posix/fileio.c: In function '__OsClose':
./biewlib/sysdep/generic/posix/fileio.c:51:9: warning: passing argument 1 of 'close' makes integer from pointer without a cast [-Wint-conversion]
   close(handle);
         ^~~~~~
In file included from ./biewlib/sysdep/generic/posix/fileio.c:25,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/unistd.h:353:23: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 extern int close (int __fd);
                   ~~~~^~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c: In function '__OsDupHandle':
./biewlib/sysdep/generic/posix/fileio.c:56:14: warning: passing argument 1 of 'dup' makes integer from pointer without a cast [-Wint-conversion]
   return dup(handle);
              ^~~~~~
In file included from ./biewlib/sysdep/generic/posix/fileio.c:25,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/unistd.h:531:21: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 extern int dup (int __fd) __THROW __wur;
                 ~~~~^~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c:56:10: warning: returning 'int' from a function with return type 'bhandle_t' {aka 'void *'} makes pointer from integer without a cast [-Wint-conversion]
   return dup(handle);
          ^~~~~~~~~~~
./biewlib/sysdep/generic/posix/fileio.c: In function '__OsOpen':
./biewlib/sysdep/generic/posix/fileio.c:79:53: warning: returning 'int' from a function with return type 'bhandle_t' {aka 'void *'} makes pointer from integer without a cast [-Wint-conversion]
   if (S_ISDIR(st.st_mode)) { errno = EISDIR; return -1; }
                                                     ^
./biewlib/sysdep/generic/posix/fileio.c:80:10: warning: returning 'int' from a function with return type 'bhandle_t' {aka 'void *'} makes pointer from integer without a cast [-Wint-conversion]
   return open(fname,flags);
          ^~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/posix/fileio.c: In function '__OsSeek':
./biewlib/sysdep/generic/posix/fileio.c:85:16: warning: passing argument 1 of 'lseek' makes integer from pointer without a cast [-Wint-conversion]
   return lseek(handle,offset,origin);
                ^~~~~~
In file included from /usr/include/features.h:428,
                 from /usr/include/bits/libc-header-start.h:33,
                 from /usr/include/limits.h:26,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:194,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/syslimits.h:7,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:34,
                 from ./biewlib/sysdep/generic/posix/fileio.c:18,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/unistd.h:337:18: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 extern __off64_t __REDIRECT_NTH (lseek,
                  ^~~~~~~~~~~~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c: In function '__OsTruncFile':
./biewlib/sysdep/generic/posix/fileio.c:90:20: warning: passing argument 1 of 'ftruncate' makes integer from pointer without a cast [-Wint-conversion]
   return ftruncate(handle,newsize);
                    ^~~~~~
In file included from /usr/include/features.h:428,
                 from /usr/include/bits/libc-header-start.h:33,
                 from /usr/include/limits.h:26,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:194,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/syslimits.h:7,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:34,
                 from ./biewlib/sysdep/generic/posix/fileio.c:18,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/unistd.h:1017:12: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 extern int __REDIRECT_NTH (ftruncate, (int __fd, __off64_t __length),
            ^~~~~~~~~~~~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c: In function '__OsRead':
./biewlib/sysdep/generic/posix/fileio.c:95:15: warning: passing argument 1 of 'read' makes integer from pointer without a cast [-Wint-conversion]
   return read(handle,buff,count);
               ^~~~~~
In file included from /usr/include/unistd.h:1166,
                 from ./biewlib/sysdep/generic/posix/fileio.c:25,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/bits/unistd.h:34:11: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 read (int __fd, void *__buf, size_t __nbytes)
       ~~~~^~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c: In function '__OsWrite':
./biewlib/sysdep/generic/posix/fileio.c:100:16: warning: passing argument 1 of 'write' makes integer from pointer without a cast [-Wint-conversion]
   return write(handle,buffer,count);
                ^~~~~~
In file included from ./biewlib/sysdep/generic/posix/fileio.c:25,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/unistd.h:366:27: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 extern ssize_t write (int __fd, const void *__buf, size_t __n) __wur;
                       ~~~~^~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c: In function '__FileLength':
./biewlib/sysdep/generic/posix/fileio.c:143:20: warning: passing argument 1 of 'fstat' makes integer from pointer without a cast [-Wint-conversion]
   stat_ret = fstat(handle,&statbuf);
                    ^~~~~~
In file included from /usr/include/features.h:428,
                 from /usr/include/bits/libc-header-start.h:33,
                 from /usr/include/limits.h:26,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:194,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/syslimits.h:7,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:34,
                 from ./biewlib/sysdep/generic/posix/fileio.c:18,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/sys/stat.h:463:1: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 __NTH (fstat (int __fd, struct stat *__statbuf))
 ^~~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c:161:15: warning: passing argument 1 of 'lseek' makes integer from pointer without a cast [-Wint-conversion]
     if (lseek(handle,off,SEEK_SET) == -1)
               ^~~~~~
In file included from /usr/include/features.h:428,
                 from /usr/include/bits/libc-header-start.h:33,
                 from /usr/include/limits.h:26,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:194,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/syslimits.h:7,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:34,
                 from ./biewlib/sysdep/generic/posix/fileio.c:18,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/unistd.h:337:18: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 extern __off64_t __REDIRECT_NTH (lseek,
                  ^~~~~~~~~~~~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c:164:13: warning: passing argument 1 of 'read' makes integer from pointer without a cast [-Wint-conversion]
     if(read(handle,&ch,1) == 1) min = off;
             ^~~~~~
In file included from /usr/include/unistd.h:1166,
                 from ./biewlib/sysdep/generic/posix/fileio.c:25,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/bits/unistd.h:34:11: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 read (int __fd, void *__buf, size_t __nbytes)
       ~~~~^~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c:170:13: warning: passing argument 1 of 'lseek' makes integer from pointer without a cast [-Wint-conversion]
       lseek(handle,retval,SEEK_SET);
             ^~~~~~
In file included from /usr/include/features.h:428,
                 from /usr/include/bits/libc-header-start.h:33,
                 from /usr/include/limits.h:26,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:194,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/syslimits.h:7,
                 from /usr/lib64/gcc/x86_64-alt-linux/8/include/limits.h:34,
                 from ./biewlib/sysdep/generic/posix/fileio.c:18,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/unistd.h:337:18: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 extern __off64_t __REDIRECT_NTH (lseek,
                  ^~~~~~~~~~~~~~
In file included from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
./biewlib/sysdep/generic/posix/fileio.c:173:18: warning: passing argument 1 of 'read' makes integer from pointer without a cast [-Wint-conversion]
          if(read(handle,&ch,1) == 1) retval++;
                  ^~~~~~
In file included from /usr/include/unistd.h:1166,
                 from ./biewlib/sysdep/generic/posix/fileio.c:25,
                 from ./biewlib/sysdep/generic/linux/fileio.c:1,
                 from biewlib/sysdep/x86_64/linux/fileio.c:1:
/usr/include/bits/unistd.h:34:11: note: expected 'int' but argument is of type 'bhandle_t' {aka 'void *'}
 read (int __fd, void *__buf, size_t __nbytes)
       ~~~~^~~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/aclib.c -o biewlib/sysdep/x86_64/aclib.o
In file included from biewlib/sysdep/x86_64/aclib.c:27:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from biewlib/sysdep/x86_64/aclib.c:27:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c addendum.c -o addendum.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from bconsole.h:28,
                 from addendum.c:18:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from bconsole.h:28,
                 from addendum.c:18:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/linux/keyboard.c -o biewlib/sysdep/x86_64/linux/keyboard.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/kbd_code.h:17,
                 from ./biewlib/sysdep/ia32/linux/keyboard.c:41,
                 from biewlib/sysdep/x86_64/linux/keyboard.c:1:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/kbd_code.h:17,
                 from ./biewlib/sysdep/ia32/linux/keyboard.c:41,
                 from biewlib/sysdep/x86_64/linux/keyboard.c:1:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/_inlines.h:47,
                 from ./biewlib/sysdep/_sys_dep.h:31,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/kbd_code.h:17,
                 from ./biewlib/sysdep/ia32/linux/keyboard.c:41,
                 from biewlib/sysdep/x86_64/linux/keyboard.c:1:
./biewlib/sysdep/ia32/linux/keyboard.c: In function 'console_enter':
./biewlib/sysdep/ia32/linux/keyboard.c:303:12: warning: passing argument 1 of 'fast_memset_ptr' discards 'volatile' qualifier from pointer target type [-Wdiscarded-array-qualifiers]
     memset(&keypressed, 0, KEYNUM * sizeof(int));
            ^~~~~~~~~~~
./biewlib/sysdep/x86_64/fastcopy.h:17:42: note: in definition of macro 'memset'
 #define memset(a,b,c) (*fast_memset_ptr)(a,b,c)
                                          ^
./biewlib/sysdep/ia32/linux/keyboard.c:303:12: note: expected 'void *' but argument is of type 'volatile int (*)[128]'
     memset(&keypressed, 0, KEYNUM * sizeof(int));
            ^~~~~~~~~~~
./biewlib/sysdep/x86_64/fastcopy.h:17:42: note: in definition of macro 'memset'
 #define memset(a,b,c) (*fast_memset_ptr)(a,b,c)
                                          ^
In file included from biewlib/sysdep/x86_64/linux/keyboard.c:1:
./biewlib/sysdep/ia32/linux/keyboard.c: In function 'ReadNextEvent':
./biewlib/sysdep/ia32/linux/keyboard.c:314:16: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result]
 #define get(x) read(in_fd,&(x),1)
                ^~~~~~~~~~~~~~~~~~
./biewlib/sysdep/ia32/linux/keyboard.c:354:11: note: in expansion of macro 'get'
      do { get(c); } while (c == 0xe0);
           ^~~
./biewlib/sysdep/ia32/linux/keyboard.c:314:16: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result]
 #define get(x) read(in_fd,&(x),1)
                ^~~~~~~~~~~~~~~~~~
./biewlib/sysdep/ia32/linux/keyboard.c:355:21: note: in expansion of macro 'get'
      if (c == 0xe1) get(c);
                     ^~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c bmfile.c -o bmfile.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/bbio.h:21,
                 from bmfile.h:25,
                 from bmfile.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/bbio.h:21,
                 from bmfile.h:25,
                 from bmfile.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c codeguid.c -o codeguid.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/bbio.h:21,
                 from bmfile.h:25,
                 from codeguid.c:24:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/bbio.h:21,
                 from bmfile.h:25,
                 from codeguid.c:24:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/linux/vio.c -o biewlib/sysdep/x86_64/linux/vio.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/linux/vio.c:45,
                 from biewlib/sysdep/x86_64/linux/vio.c:1:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/sysdep/generic/linux/vio.c:45,
                 from biewlib/sysdep/x86_64/linux/vio.c:1:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
In file included from biewlib/sysdep/x86_64/linux/vio.c:1:
./biewlib/sysdep/generic/linux/vio.c: In function '__init_vio':
./biewlib/sysdep/generic/linux/vio.c:355:8: warning: implicit declaration of function 'strncasecmp' [-Wimplicit-function-declaration]
     if(strncasecmp(screen_cp,"UTF",3)==0 && !on_console) {
        ^~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:412:11: warning: implicit declaration of function 'strcasecmp' [-Wimplicit-function-declaration]
          (strcasecmp(lang, "ru_RU.utf8") != 0) &&
           ^~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c: In function '__vioSetCursorType':
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:171:2: note: in expansion of macro 'twrite'
  twrite(vtmp);
  ^~~~~~
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:174:5: note: in expansion of macro 'twrite'
     twrite(vtmp);
     ^~~~~~
./biewlib/sysdep/generic/linux/vio.c: In function 'gotoxy':
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:158:5: note: in expansion of macro 'twrite'
     twrite(vtmp);
     ^~~~~~
./biewlib/sysdep/generic/linux/vio.c: In function '__vioWriteBuff':
./biewlib/sysdep/generic/linux/vio.c:49:16: warning: ignoring return value of 'pwrite', declared with attribute warn_unused_result [-Wunused-result]
 #define PWRITE pwrite
                ^
./biewlib/sysdep/generic/linux/vio.c:223:2: note: in expansion of macro 'PWRITE'
  PWRITE(viohandle, pb, len << 1, 4 + ((x + y * tvioWidth) << 1));
  ^~~~~~
./biewlib/sysdep/generic/linux/vio.c: In function '__init_vio':
./biewlib/sysdep/generic/linux/vio.c:344:2: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result]
  read(viohandle, &b, 4);
  ^~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:387:6: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result]
      read(viohandle, buf, violen << 1);
      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:395:2: note: in expansion of macro 'twrite'
  twrite(VT100_NORMALCHARS VT100_MODE80);
  ^~~~~~
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:400:3: note: in expansion of macro 'twrite'
   twrite("\033[?1000h\033]0;BIEW: Binary vIEWer\007");
   ^~~~~~
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:407:7: note: in expansion of macro 'twrite'
       twrite("\033(K\033)0");
       ^~~~~~
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:418:11: note: in expansion of macro 'twrite'
      else twrite("\033(U"); /* set null mapping */
           ^~~~~~
./biewlib/sysdep/generic/linux/vio.c: In function '__term_vio':
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:430:36: note: in expansion of macro 'twrite'
  if (terminal->type == TERM_XTERM) twrite("\033[?1001r\033[?1000l");
                                    ^~~~~~
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:432:6: note: in expansion of macro 'twrite'
      twrite("\033(K");
      ^~~~~~
./biewlib/sysdep/generic/linux/vio.c:87:19: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result]
 #define twrite(x) write(out_fd, (x), strlen(x))
                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./biewlib/sysdep/generic/linux/vio.c:433:2: note: in expansion of macro 'twrite'
  twrite(VT100_MODE80 VT100_NORMALCHARS VT100_CLEARSCREEN);
  ^~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewutil.c -o biewutil.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/bbio.h:21,
                 from bmfile.h:25,
                 from biewutil.c:24:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/bbio.h:21,
                 from bmfile.h:25,
                 from biewutil.c:24:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/biewlib.c -o biewlib/biewlib.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from biewlib/biewlib.c:24:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from biewlib/biewlib.c:24:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/bbio.c -o biewlib/bbio.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from biewlib/bbio.c:26:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from biewlib/bbio.c:26:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c colorset.c -o colorset.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from colorset.c:22:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from colorset.c:22:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c bin_util.c -o bin_util.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/bbio.h:21,
                 from bin_util.h:26,
                 from bin_util.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/bbio.h:21,
                 from bin_util.h:26,
                 from bin_util.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
bin_util.c: In function 'udnAddItem':
bin_util.c:192:34: warning: format '%X' expects argument of type 'unsigned int', but argument 3 has type 'tUInt64' {aka 'long long unsigned int'} [-Wformat=]
     sprintf(prompt," Name for %08X offset: ",off);
                               ~~~^           ~~~
                               %08llX
bin_util.c: In function '__udnLoadList':
bin_util.c:330:3: warning: ignoring return value of 'fgets', declared with attribute warn_unused_result [-Wunused-result]
   fgets(buff,sizeof(buff),in);
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewhelp.c -o biewhelp.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from biewhelp.c:25:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from biewhelp.c:25:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c refs.c -o refs.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from biewlib/file_ini.h:23,
                 from reg_form.h:22,
                 from refs.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from biewlib/file_ini.h:23,
                 from reg_form.h:22,
                 from refs.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c events.c -o events.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from bconsole.h:28,
                 from events.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from bconsole.h:28,
                 from events.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c tstrings.c -o tstrings.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from biewlib/biewlib.h:25,
                 from tstrings.c:18:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from biewlib/biewlib.h:25,
                 from tstrings.c:18:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c sysinfo.c -o sysinfo.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from bconsole.h:28,
                 from sysinfo.c:19:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from bconsole.h:28,
                 from sysinfo.c:19:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c editors.c -o editors.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from editors.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from editors.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biew.c -o biew.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from bconsole.h:28,
                 from biew.c:32:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from bconsole.h:28,
                 from biew.c:32:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
biew.c: In function 'load_ini_info':
biew.c:457:17: warning: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'size_t' {aka 'long unsigned int'} [-Wformat=]
   sprintf(buf,"%u",LastMode); /* [dBorca] so that src and dst won't overlap for strncpy */
                ~^  ~~~~~~~~
                %lu
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c addons/sys/ascii.c -o addons/sys/ascii.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from addons/sys/ascii.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from addons/sys/ascii.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c addons/sys/inview.c -o addons/sys/inview.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from addons/sys/inview.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from addons/sys/inview.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c info_win.c -o info_win.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from info_win.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from info_win.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c addons/sys/consinfo.c -o addons/sys/consinfo.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from addons/sys/consinfo.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from addons/sys/consinfo.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c dialogs.c -o dialogs.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from dialogs.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from dialogs.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c mainloop.c -o mainloop.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from mainloop.c:19:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from mainloop.c:19:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c setup.c -o setup.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from biewhelp.h:25,
                 from setup.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from biewhelp.h:25,
                 from setup.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c addons/sys/cpu_perf.c -o addons/sys/cpu_perf.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from addons/sys/cpu_perf.c:24:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from addons/sys/cpu_perf.c:24:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/bin.c -o plugins/bin/bin.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/bin.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/bin.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/asf.c -o plugins/bin/asf.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/asf.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/asf.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/aout.c -o plugins/bin/aout.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/bin/aout.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/bin/aout.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/bmp.c -o plugins/bin/bmp.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/bmp.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/bmp.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/sysdep/x86_64/cpu_info.c -o biewlib/sysdep/x86_64/cpu_info.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/sysdep/x86_64/cpu_info.c:27:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/sysdep/x86_64/cpu_info.c:27:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
In file included from biewlib/sysdep/x86_64/cpu_info.c:626:
./biewlib/sysdep/ia16/cmn_ix86.c: In function '__FillCPUInfo':
./biewlib/sysdep/ia16/cmn_ix86.c:1068:14: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
 "           %d/%d - Maximal linear / physical address size (bits)\n"
             ~^
             %ld
      ,(__eax>>8)&0xFF,(__eax)&0xFF);
       ~~~~~~~~~~~~~~~
./biewlib/sysdep/ia16/cmn_ix86.c:1068:17: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=]
 "           %d/%d - Maximal linear / physical address size (bits)\n"
                ~^
                %ld
      ,(__eax>>8)&0xFF,(__eax)&0xFF);
                       ~~~~~~~~~~~~
./biewlib/sysdep/ia16/cmn_ix86.c:1078:16: warning: format '%X' expects argument of type 'unsigned int', but argument 3 has type 'long unsigned int' [-Wformat=]
 "           %02X - SVM revision\n"
             ~~~^
             %02lX
      ,(__eax)&0xFF);
       ~~~~~~~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/arch.c -o plugins/bin/arch.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/bin/arch.c:22:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/bin/arch.c:22:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c addons/tools/dig_conv.c -o addons/tools/dig_conv.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from addons/tools/dig_conv.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from addons/tools/dig_conv.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/jpeg.c -o plugins/bin/jpeg.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/jpeg.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/jpeg.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/dos_sys.c -o plugins/bin/dos_sys.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/dos_sys.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/dos_sys.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/file_ini.c -o biewlib/file_ini.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from biewlib/file_ini.c:25:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from biewlib/file_ini.c:25:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
biewlib/file_ini.c: In function '__addCache':
biewlib/file_ini.c:1321:11: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
   ic.item = section;
           ^
biewlib/file_ini.c:1351:15: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
       ic.item = subsection;
               ^
biewlib/file_ini.c:1380:17: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
         ic.item = item;
                 ^
biewlib/file_ini.c: In function 'iniReadProfileString':
biewlib/file_ini.c:1615:19: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
           ic.item = section;
                   ^
biewlib/file_ini.c:1619:20: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
             ic.item=subsection;
                    ^
biewlib/file_ini.c:1623:24: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
                ic.item = _item;
                        ^
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/avi.c -o plugins/bin/avi.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/avi.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/avi.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c search.c -o search.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from search.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from colorset.h:21,
                 from search.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c bconsole.c -o bconsole.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from editor.h:21,
                 from bconsole.c:29:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from editor.h:21,
                 from bconsole.c:29:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
bconsole.c: In function '__ListBox':
bconsole.c:872:25: warning: format not a string literal and no format arguments [-Wformat-security]
                         fprintf(out,names[i]);
                         ^~~~~~~
bconsole.c:877:23: warning: format not a string literal and no format arguments [-Wformat-security]
                       else fprintf(out,names[i]);
                       ^~~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c addons/tools/eval.c -o addons/tools/eval.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from addons/tools/eval.c:50:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from addons/tools/eval.c:50:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/mov.c -o plugins/bin/mov.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/mov.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/mov.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/mpeg.c -o plugins/bin/mpeg.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/mpeg.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/mpeg.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/opharlap.c -o plugins/bin/opharlap.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/opharlap.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/opharlap.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/le.c -o plugins/bin/le.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from ./plugins/disasm.h:21,
                 from plugins/bin/le.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from ./plugins/disasm.h:21,
                 from plugins/bin/le.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/mz.c -o plugins/bin/mz.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/mz.c:22:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/mz.c:22:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/rdoff2.c -o plugins/bin/rdoff2.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from ./plugins/disasm.h:21,
                 from plugins/bin/rdoff2.c:19:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from ./plugins/disasm.h:21,
                 from plugins/bin/rdoff2.c:19:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/lmf.c -o plugins/bin/lmf.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/lmf.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/lmf.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c fileutil.c -o fileutil.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from editor.h:21,
                 from fileutil.c:26:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from biewlib/twin.h:24,
                 from editor.h:21,
                 from fileutil.c:26:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/mp3.c -o plugins/bin/mp3.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/bin/mp3.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/bin/mp3.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/pharlap.c -o plugins/bin/pharlap.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/pharlap.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/pharlap.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/coff386.c -o plugins/bin/coff386.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/coff386.c:22:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/coff386.c:22:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/realmedia.c -o plugins/bin/realmedia.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/realmedia.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/realmedia.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/sis.c -o plugins/bin/sis.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/sis.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/sis.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/sisx.c -o plugins/bin/sisx.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/sisx.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/sisx.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/wav.c -o plugins/bin/wav.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/wav.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/wav.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c biewlib/twin.c -o biewlib/twin.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from biewlib/twin.c:30:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from biewlib/twin.c:30:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
biewlib/twin.c: In function 'twPutS':
biewlib/twin.c:1896:17: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
      else __nls = str;
                 ^
biewlib/twin.c:1898:14: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
   else __nls = str;
              ^
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/jvmclass.c -o plugins/bin/jvmclass.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/jvmclass.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./bconsole.h:28,
                 from plugins/bin/jvmclass.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/nlm386.c -o plugins/bin/nlm386.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/nlm386.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/nlm386.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/null_da.c -o plugins/disasm/null_da.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/disasm/null_da.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/disasm/null_da.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/binmode.c -o plugins/binmode.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/binmode.c:22:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/binmode.c:22:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/nls/russian.c -o plugins/nls/russian.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./plugins/textmode.h:21,
                 from plugins/nls/russian.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./plugins/textmode.h:21,
                 from plugins/nls/russian.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/rdoff.c -o plugins/bin/rdoff.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/rdoff.c:22:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/bin/rdoff.c:22:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/lx.c -o plugins/bin/lx.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/lx.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/lx.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
ar -rcu biewlib/libbiew.a biewlib/bbio.o biewlib/biewlib.o biewlib/file_ini.o biewlib/pmalloc.o biewlib/twin.o biewlib/tw_class.o biewlib/sysdep/x86_64/aclib.o biewlib/sysdep/x86_64/cpu_info.o biewlib/sysdep/x86_64/linux/fileio.o biewlib/sysdep/x86_64/linux/keyboard.o biewlib/sysdep/x86_64/linux/mmfio.o biewlib/sysdep/x86_64/linux/mouse.o biewlib/sysdep/x86_64/linux/misc.o biewlib/sysdep/x86_64/linux/nls.o biewlib/sysdep/x86_64/linux/os_dep.o biewlib/sysdep/x86_64/linux/timer.o biewlib/sysdep/x86_64/linux/vio.o
ranlib biewlib/libbiew.a
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/arm/arm.c -o plugins/disasm/arm/arm.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/disasm/arm/arm.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/disasm/arm/arm.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/hexmode.c -o plugins/hexmode.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/hexmode.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/hexmode.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/arm/arm16.c -o plugins/disasm/arm/arm16.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/disasm/arm/arm16.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/disasm/arm/arm16.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/ne.c -o plugins/bin/ne.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/ne.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/ne.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/java/java.c -o plugins/disasm/java/java.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/disasm/java/java.c:22:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./reg_form.h:22,
                 from plugins/disasm/java/java.c:22:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/avr/avr.c -o plugins/disasm/avr/avr.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./biewhelp.h:25,
                 from plugins/disasm/avr/avr.c:24:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./biewhelp.h:25,
                 from plugins/disasm/avr/avr.c:24:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
plugins/disasm/avr/avr.c: In function 'avr_operand':
plugins/disasm/avr/avr.c:146:2: warning: format not a string literal and no format arguments [-Wformat-security]
  sprintf (buf, xyz);
  ^~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/ix86/ix86_fpu.c -o plugins/disasm/ix86/ix86_fpu.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./biewutil.h:25,
                 from plugins/disasm/ix86/ix86_fpu.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./biewutil.h:25,
                 from plugins/disasm/ix86/ix86_fpu.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/pe.c -o plugins/bin/pe.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/pe.c:27:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/pe.c:27:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
plugins/bin/pe.c: In function '__ReadImpContPE':
plugins/bin/pe.c:599:53: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'unsigned int' [-Wformat=]
       else         sprintf(tmp,"< By ordinal >   @%lu" ,(tUInt32)(Hint & 0x7FFFFFFFUL));
                                                   ~~^   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                   %u
plugins/bin/pe.c: In function 'BuildReferStrPE':
plugins/bin/pe.c:1017:26: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'long long unsigned int' [-Wformat=]
          sprintf(dig,"@%lu",Hint & 0x7FFFFFFFUL);
                        ~~^  ~~~~~~~~~~~~~~~~~~~
                        %llu
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/ppc/ppc.c -o plugins/disasm/ppc/ppc.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/disasm/ppc/ppc.c:20:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/disasm/ppc/ppc.c:20:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/arm/arm32.c -o plugins/disasm/arm/arm32.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/disasm/arm/arm32.c:21:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/__config.h:27,
                 from ./bswap.h:4,
                 from plugins/disasm/arm/arm32.c:21:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/textmode.c -o plugins/textmode.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./plugins/textmode.h:21,
                 from plugins/textmode.c:23:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/bbio.h:21,
                 from ./biewlib/file_ini.h:23,
                 from ./plugins/textmode.h:21,
                 from plugins/textmode.c:23:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
plugins/textmode.c: In function 'txtFiUserFunc1':
plugins/textmode.c:322:16: warning: passing argument 1 of 'unfmt_str' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
  unfmt_str(info->value);
            ~~~~^~~~~~~
plugins/textmode.c:247:38: note: expected 'unsigned char *' but argument is of type 'const char *'
 static void unfmt_str(unsigned char *str)
                       ~~~~~~~~~~~~~~~^~~
plugins/textmode.c: In function 'txtFiUserFunc2':
plugins/textmode.c:438:22: warning: passing argument 1 of 'unfmt_str' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
        unfmt_str(info->value);
                  ~~~~^~~~~~~
plugins/textmode.c:247:38: note: expected 'unsigned char *' but argument is of type 'const char *'
 static void unfmt_str(unsigned char *str)
                       ~~~~~~~~~~~~~~~^~~
plugins/textmode.c:457:22: warning: passing argument 1 of 'unfmt_str' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
        unfmt_str(info->value);
                  ~~~~^~~~~~~
plugins/textmode.c:247:38: note: expected 'unsigned char *' but argument is of type 'const char *'
 static void unfmt_str(unsigned char *str)
                       ~~~~~~~~~~~~~~~^~~
plugins/textmode.c:473:22: warning: passing argument 1 of 'unfmt_str' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
        unfmt_str(info->value);
                  ~~~~^~~~~~~
plugins/textmode.c:247:38: note: expected 'unsigned char *' but argument is of type 'const char *'
 static void unfmt_str(unsigned char *str)
                       ~~~~~~~~~~~~~~~^~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm.c -o plugins/disasm.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/disasm.c:30:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/disasm.c:30:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
plugins/disasm.c: In function 'FullAsmEdit':
plugins/disasm.c:606:53: warning: '0' flag ignored with precision and '%x' gnu_printf format [-Wformat=]
                                 sprintf(bytebuffer, "%0.2x", aret.insn[i]);
                                                     ^~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/ix86/ix86.c -o plugins/disasm/ix86/ix86.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./biewhelp.h:25,
                 from plugins/disasm/ix86/ix86.c:26:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./biewhelp.h:25,
                 from plugins/disasm/ix86/ix86.c:26:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
plugins/disasm/ix86/ix86.c:1448:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x38*/ DECLARE_EX_INSN(ix86_0F38_Table,ix86_0F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:1448:28: note: (near initialization for 'ix86_extable[56].name')
   /*0x38*/ DECLARE_EX_INSN(ix86_0F38_Table,ix86_0F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:1448:44: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x38*/ DECLARE_EX_INSN(ix86_0F38_Table,ix86_0F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:1448:44: note: (near initialization for 'ix86_extable[56].name64')
   /*0x38*/ DECLARE_EX_INSN(ix86_0F38_Table,ix86_0F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:1450:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x3A*/ DECLARE_EX_INSN(ix86_0F3A_Table,ix86_0F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:1450:28: note: (near initialization for 'ix86_extable[58].name')
   /*0x3A*/ DECLARE_EX_INSN(ix86_0F3A_Table,ix86_0F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:1450:44: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x3A*/ DECLARE_EX_INSN(ix86_0F3A_Table,ix86_0F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:1450:44: note: (near initialization for 'ix86_extable[58].name64')
   /*0x3A*/ DECLARE_EX_INSN(ix86_0F3A_Table,ix86_0F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:1558:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0xA6*/ DECLARE_EX_INSN(ix86_0FA6_Table,ix86_0FA6_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:1558:28: note: (near initialization for 'ix86_extable[166].name')
   /*0xA6*/ DECLARE_EX_INSN(ix86_0FA6_Table,ix86_0FA6_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:1558:44: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0xA6*/ DECLARE_EX_INSN(ix86_0FA6_Table,ix86_0FA6_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:1558:44: note: (near initialization for 'ix86_extable[166].name64')
   /*0xA6*/ DECLARE_EX_INSN(ix86_0FA6_Table,ix86_0FA6_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:1559:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0xA7*/ DECLARE_EX_INSN(ix86_0FA7_Table,ix86_0FA7_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:1559:28: note: (near initialization for 'ix86_extable[167].name')
   /*0xA7*/ DECLARE_EX_INSN(ix86_0FA7_Table,ix86_0FA7_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:1559:44: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0xA7*/ DECLARE_EX_INSN(ix86_0FA7_Table,ix86_0FA7_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:1559:44: note: (near initialization for 'ix86_extable[167].name64')
   /*0xA7*/ DECLARE_EX_INSN(ix86_0FA7_Table,ix86_0FA7_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                            ^~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:330:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:2966:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x01*/ DECLARE_EX_INSN(ix86_660F01_Table,ix86_660F01_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:2966:28: note: (near initialization for 'ix86_660F_PentiumTable[1].name')
   /*0x01*/ DECLARE_EX_INSN(ix86_660F01_Table,ix86_660F01_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:2966:46: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x01*/ DECLARE_EX_INSN(ix86_660F01_Table,ix86_660F01_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                              ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:2966:46: note: (near initialization for 'ix86_660F_PentiumTable[1].name64')
   /*0x01*/ DECLARE_EX_INSN(ix86_660F01_Table,ix86_660F01_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                              ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:3021:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x38*/ DECLARE_EX_INSN(ix86_660F38_Table,ix86_660F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:3021:28: note: (near initialization for 'ix86_660F_PentiumTable[56].name')
   /*0x38*/ DECLARE_EX_INSN(ix86_660F38_Table,ix86_660F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:3021:46: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x38*/ DECLARE_EX_INSN(ix86_660F38_Table,ix86_660F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                              ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:3021:46: note: (near initialization for 'ix86_660F_PentiumTable[56].name64')
   /*0x38*/ DECLARE_EX_INSN(ix86_660F38_Table,ix86_660F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                              ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:3023:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x3A*/ DECLARE_EX_INSN(ix86_660F3A_Table,ix86_660F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:3023:28: note: (near initialization for 'ix86_660F_PentiumTable[58].name')
   /*0x3A*/ DECLARE_EX_INSN(ix86_660F3A_Table,ix86_660F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:3023:46: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x3A*/ DECLARE_EX_INSN(ix86_660F3A_Table,ix86_660F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                              ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:3023:46: note: (near initialization for 'ix86_660F_PentiumTable[58].name64')
   /*0x3A*/ DECLARE_EX_INSN(ix86_660F3A_Table,ix86_660F3A_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                              ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:3541:28: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x38*/ DECLARE_EX_INSN(ix86_F20F38_Table,ix86_F20F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:3541:28: note: (near initialization for 'ix86_F20F_PentiumTable[56].name')
   /*0x38*/ DECLARE_EX_INSN(ix86_F20F38_Table,ix86_F20F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                            ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:3: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
   ^~~
plugins/disasm/ix86/ix86.c:3541:46: warning: initialization of 'const char *' from incompatible pointer type 'const ix86_ExOpcodes *' {aka 'const struct tag_ix86ExOpcodes *'} [-Wincompatible-pointer-types]
   /*0x38*/ DECLARE_EX_INSN(ix86_F20F38_Table,ix86_F20F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                              ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c:3541:46: note: (near initialization for 'ix86_F20F_PentiumTable[56].name64')
   /*0x38*/ DECLARE_EX_INSN(ix86_F20F38_Table,ix86_F20F38_Table,NULL,NULL,TAB_NAME_IS_TABLE,TAB_NAME_IS_TABLE),
                                              ^~~~~~~~~~~~~~~~~
plugins/disasm/ix86/ix86.c:1912:8: note: in definition of macro 'DECLARE_EX_INSN'
 { n32, n64, func, func64, flags64, flags }
        ^~~
plugins/disasm/ix86/ix86.c: In function 'ix86Asm':
plugins/disasm/ix86/ix86.c:5698:5: warning: ignoring return value of 'system', declared with attribute warn_unused_result [-Wunused-result]
     system(commandbuffer);
     ^~~~~~~~~~~~~~~~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/bin/elf386.c -o plugins/bin/elf386.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/elf386.c:54:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from plugins/bin/elf386.c:54:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
plugins/bin/elf386.c: In function '__elfReadSymTab':
plugins/bin/elf386.c:870:36: warning: format '%lX' expects argument of type 'long unsigned int', but argument 5 has type 'unsigned int' [-Wformat=]
    sprintf(stmp,"%-29s %016llX %08lX %04hX %s %s %s"
                                ~~~~^
                                %08X
plugins/bin/elf386.c:880:28: warning: format '%lX' expects argument of type 'long unsigned int', but argument 4 has type 'unsigned int' [-Wformat=]
    sprintf(stmp,"%-37s %08lX %08lX %04hX %s %s %s"
                        ~~~~^
                        %08X
plugins/bin/elf386.c:880:34: warning: format '%lX' expects argument of type 'long unsigned int', but argument 5 has type 'unsigned int' [-Wformat=]
    sprintf(stmp,"%-37s %08lX %08lX %04hX %s %s %s"
                              ~~~~^
                              %08X
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -I. -DHAVE_ICONV -DHAVE_SYS_RESOURCE=1 -DHAVE_PCLOSE=1 -DHAVE_POPEN=1 -DHAVE_MOUSE -D__LINUX__ -D__UNIX__ -D__OS_NAME__='"Linux64"' -D__OS__="linux" -Ulinux -D_VT100_ -DHAVE_TERMINAL_OUT=1 -DPREFIX="/usr" -D__HAVE_PRAGMA_PACK__=1 -DNDEBUG=1 -O2 -mmmx -msse -DDATADIR='"/usr/share"'   -m64 -D__MACHINE__=x86_64 -D__CPU_NAME__='"x86_64"' -D__CPU__=K8 -D__DEFAULT_DISASM=0 -DCAN_COMPILE_X86_GAS=1  -I. -c plugins/disasm/ix86/ix86_fun.c -o plugins/disasm/ix86/ix86_fun.o
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from ./plugins/disasm.h:21,
                 from plugins/disasm/ix86/ix86_fun.c:25:
./biewlib/sysdep/x86_64/stdint.h:119: warning: "__INT64_C" redefined
 #define __INT64_C(c) c ## LL
 
<built-in>: note: this is the location of the previous definition
In file included from ./biewlib/sysdep/x86_64/__config.h:22,
                 from ./biewlib/sysdep/_sys_dep.h:30,
                 from ./biewlib/biewlib.h:25,
                 from ./biewlib/twin.h:24,
                 from ./colorset.h:21,
                 from ./plugins/disasm.h:21,
                 from plugins/disasm/ix86/ix86_fun.c:25:
./biewlib/sysdep/x86_64/stdint.h:120: warning: "__UINT64_C" redefined
 #define __UINT64_C(c) c ## ULL
 
<built-in>: note: this is the location of the previous definition
In file included from /usr/include/string.h:508,
                 from plugins/disasm/ix86/ix86_fun.c:21:
In function 'strncpy',
    inlined from 'arg_simd_clmul' at plugins/disasm/ix86/ix86_fun.c:1709:2:
/usr/include/bits/string_fortified.h:106:10: warning: '__builtin___strncpy_chk' writing between 8 and 9 bytes into a region of size 6 overflows the destination [-Wstringop-overflow=]
   return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest));
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
make: Entering directory '/usr/src/RPM/BUILD/biew-610'
gcc -s -m64   -o biew addendum.o bconsole.o biew.o biewhelp.o biewutil.o bin_util.o bmfile.o codeguid.o colorset.o dialogs.o editors.o events.o fileutil.o info_win.o mainloop.o refs.o search.o setup.o sysinfo.o tstrings.o addons/sys/ascii.o addons/sys/consinfo.o addons/sys/cpu_perf.o addons/sys/inview.o addons/tools/dig_conv.o addons/tools/eval.o plugins/bin/aout.o plugins/bin/arch.o plugins/bin/asf.o plugins/bin/avi.o plugins/bin/bin.o plugins/bin/bmp.o plugins/bin/coff386.o plugins/bin/dos_sys.o plugins/bin/elf386.o plugins/bin/jpeg.o plugins/bin/jvmclass.o plugins/bin/le.o plugins/bin/lmf.o plugins/bin/lx.o plugins/bin/mov.o plugins/bin/mp3.o plugins/bin/mpeg.o plugins/bin/mz.o plugins/bin/ne.o plugins/bin/nlm386.o plugins/bin/opharlap.o plugins/bin/pe.o plugins/bin/pharlap.o plugins/bin/rdoff.o plugins/bin/rdoff2.o plugins/bin/realmedia.o plugins/bin/sis.o plugins/bin/sisx.o plugins/bin/wav.o plugins/binmode.o plugins/disasm.o plugins/hexmode.o plugins/textmode.o plugins/nls/russian.o plugins/disasm/null_da.o plugins/disasm/arm/arm.o plugins/disasm/arm/arm16.o plugins/disasm/arm/arm32.o plugins/disasm/avr/avr.o plugins/disasm/ppc/ppc.o plugins/disasm/java/java.o plugins/disasm/ix86/ix86.o plugins/disasm/ix86/ix86_fpu.o plugins/disasm/ix86/ix86_fun.o -L./biewlib -lbiew -lgpm 
make: Leaving directory '/usr/src/RPM/BUILD/biew-610'
+ exit 0
Executing(%install): /bin/sh -e /usr/src/tmp/rpm-tmp.96927
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ /bin/chmod -Rf u+rwX -- /usr/src/tmp/biew-buildroot
+ :
+ /bin/rm -rf -- /usr/src/tmp/biew-buildroot
+ PATH=/usr/libexec/rpm-build:/usr/src/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games
+ cd biew-610
+ install -d /usr/src/tmp/biew-buildroot//usr/bin /usr/src/tmp/biew-buildroot//usr/share/biew /usr/src/tmp/biew-buildroot//usr/share/man/man1
+ install biew /usr/src/tmp/biew-buildroot//usr/bin/biew
+ install doc/biew.1 /usr/src/tmp/biew-buildroot//usr/share/man/man1
+ cp -a bin_rc/xlt bin_rc/skn bin_rc/biew.hlp /usr/src/tmp/biew-buildroot//usr/share/biew
+ /usr/lib/rpm/brp-alt
Cleaning files in /usr/src/tmp/biew-buildroot (auto)
Verifying and fixing files in /usr/src/tmp/biew-buildroot (binconfig,pkgconfig,libtool,desktop,gnuconfig)
Checking contents of files in /usr/src/tmp/biew-buildroot/ (default)
Compressing files in /usr/src/tmp/biew-buildroot (auto)
mode of '/usr/src/tmp/biew-buildroot/usr/share/man/man1/biew.1' changed from 0755 (rwxr-xr-x) to 0644 (rw-r--r--)
056-debuginfo.brp: WARNING: You have 1 stripped ELF objects. Please compile with debugging information!
056-debuginfo.brp: WARNING: An excerpt from the list of affected files follows:
  ./usr/bin/biew
Verifying ELF objects in /usr/src/tmp/biew-buildroot (arch=normal,fhs=normal,lfs=relaxed,lint=relaxed,rpath=normal,stack=normal,textrel=normal,unresolved=normal)
Hardlinking identical .pyc and .pyo files
Processing files: biew-6.1.0-alt1
Executing(%doc): /bin/sh -e /usr/src/tmp/rpm-tmp.96927
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ cd biew-610
+ DOCDIR=/usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0
+ export DOCDIR
+ rm -rf /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0
+ /bin/mkdir -p /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0
+ cp -prL doc/biew_en.txt doc/biew_ru.txt doc/release.txt doc/unix.txt doc/compile.ru doc/develop.ru doc/file_ini.ru doc/licence.ru doc/compile.en doc/develop.en doc/doxygen doc/file_ini.en doc/licence.en /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0
+ chmod -R go-w /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0
+ chmod -R a+rX /usr/src/tmp/biew-buildroot/usr/share/doc/biew-6.1.0
+ exit 0
Finding Provides (using /usr/lib/rpm/find-provides)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.a4zkmx
find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,shell)
Finding Requires (using /usr/lib/rpm/find-requires)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.j9zZAV
find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,rpmlib,shebang,shell,static,symlinks,systemd-services)
Requires: /lib64/ld-linux-x86-64.so.2, libc.so.6(GLIBC_2.14)(64bit), libc.so.6(GLIBC_2.15)(64bit), libc.so.6(GLIBC_2.2.5)(64bit), libc.so.6(GLIBC_2.3)(64bit), libc.so.6(GLIBC_2.3.4)(64bit), libc.so.6(GLIBC_2.4)(64bit), libc.so.6(GLIBC_2.7)(64bit), libgpm.so.1()(64bit) >= set:jhlIsviN07, rtld(GNU_HASH)
Requires(rpmlib): rpmlib(SetVersions)
Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files)
Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.cqBOjn
Wrote: /usr/src/RPM/RPMS/x86_64/biew-6.1.0-alt1.x86_64.rpm (w2.lzdio)
11.17user 2.38system 0:05.54elapsed 244%CPU (0avgtext+0avgdata 49516maxresident)k
0inputs+0outputs (0major+609245minor)pagefaults 0swaps
1.57user 1.03system 0:09.92elapsed 26%CPU (0avgtext+0avgdata 120344maxresident)k
32inputs+0outputs (0major+203237minor)pagefaults 0swaps
--- biew-6.1.0-alt1.x86_64.rpm.repo	2010-02-26 22:26:53.000000000 +0000
+++ biew-6.1.0-alt1.x86_64.rpm.hasher	2023-06-25 07:54:58.012638425 +0000
@@ -47,4 +47,6 @@
 /usr/share/doc/biew-6.1.0/unix.txt	100644	root:root	
-/usr/share/man/man1/biew.1.gz	100644	root:root	
+/usr/share/man/man1/biew.1.xz	100644	root:root	
 Requires: /lib64/ld-linux-x86-64.so.2  
+Requires: libc.so.6(GLIBC_2.14)(64bit)  
+Requires: libc.so.6(GLIBC_2.15)(64bit)  
 Requires: libc.so.6(GLIBC_2.2.5)(64bit)  
@@ -54,3 +56,4 @@
 Requires: libc.so.6(GLIBC_2.7)(64bit)  
-Requires: libgpm.so.1()(64bit)  
+Requires: libgpm.so.1()(64bit) >= set:jhlIsviN07
+Requires: rpmlib(SetVersions)  
 Requires: rtld(GNU_HASH)  
@@ -58,3 +61,3 @@
 Provides: biew = 6.1.0-alt1
-File: /usr/bin/biew	100755	root:root	b5f954ace91decfede987a135a499243	
+File: /usr/bin/biew	100755	root:root	bfa40c48c73254b8680997014103c83a	
 File: /usr/share/biew	40755	root:root		
@@ -105,3 +108,3 @@
 File: /usr/share/doc/biew-6.1.0/unix.txt	100644	root:root	5f6093bdf6355704731b0350af8dd76b	
-File: /usr/share/man/man1/biew.1.gz	100644	root:root	5e0c7788db824e986c7e4a9b61d4fc07	
-RPMIdentity: e4d49afcc2f8817d1804f1a657af34f05a45656cc3c173644ea95380aaff0bea07b6f69df122f59b15bd33efb94f8651773bed0aeb1bec8314f79b6c1973f176
+File: /usr/share/man/man1/biew.1.xz	100644	root:root	49376292bc962c52cdb346664d8774a0	
+RPMIdentity: e29c750f1e46dac2beae50234a2afe501a52b88c8eeb3c779c98b859ac394577de6bb6217f16ca410ba93542c55e70a1dc316a7c07ca49eeae32ad2f0a16d15c