These files are binary. To use these, your system must be
binary-compatible with the system to be used to install.

The result of uname -s -r -v -m on the system is
SunOS 4.1.3-KL 10 sun4m.

install.sh will do all to install if you are root.
If you are not, you must know the concept about
shared library(see ld(1)).

To uninstall, use uninstall.sh.
refer the following for details of installation.

This library is based on X11R5 patchlevel 25.
This works for almost X applications for Hangul I/O
except some (idraw, hanterm, ...) on Hangul Input.
refer USAGE about this problem.

----------------------------------------------------


This explains the detail of install.sh

Library

    comment:
	    This file is not in the HanX minimum package for Linux.
            This is not needed for dynamic linking.

    file name:
	    libHanX11.a

    directory to be installed:
            /usr/lib

    install:
            # rename original library to other name
	    mv /usr/lib/libX11.a /usr/lib/libOrgX11.a

            # copy HanX shared library to /usr/lib
            cp libHanX11.a /usr/lib/libHanX11.a

            # link symbolically it to normal X library name
            ln -s /usr/lib/libHanX11.a /usr/lib/libX11.a

    uninstall:
            # remove the link
            rm /usr/lib/libX11.a

	    # relink to original library
	    ln -s /usr/lib/libOrgX11.a /usr/lib/libX11.a

	    # remove HanX library if you want
	    rm /usr/lib/libHanX11.a

    
Shared Library

    file name:
	    libHanX11.s*

    directory to be installed:
	    /usr/lib

    install:
            # rename original library files to other name
	    mv /usr/lib/libX11.sa /usr/lib/libOrgX11.sa
	    mv /usr/lib/libX11.so.3.1.0 /usr/lib/libOrgX11.so.3.1.0

            # copy HanX shared library to /usr/lib
            cp libHanX11.sa /usr/lib/libHanX11.sa
            cp libHanX11.so.3.1.0 /usr/lib/libHanX11.so.3.1.0

            # link symbolically to normal X library name
            ln -s /usr/lib/libHanX11.sa /usr/lib/libX11.sa
            ln -s /usr/lib/libHanX11.so.3.1.0 /usr/lib/libX11.so.3.1.0

    uninstall:
            # remove the link
            rm /usr/lib/libX11.sa
            rm /usr/lib/libX11.so.3.1.0

	    # relink to original library
	    ln -s /usr/lib/libOrgX11.sa /usr/lib/libX11.sa
	    ln -s /usr/lib/libOrgX11.so.3.1.0 /usr/lib/libX11.so.3.1.0

	    # remove HanX library if you want
	    rm /usr/lib/libHanX11.sa
	    rm /usr/lib/libHanX11.so.3.1.0


HanX Status Window

    file name:
	    HanXStatus

    directory to be installed:
            /usr/bin/X11 or /usr/local/bin

    install:
            # install the program
            install -s -m 755 -o root -g bin HanXStatus /usr/bin/X11/HanXStatus


hanterm patched for HanX

    file name:
            hanterm

    directory to be installed:
            /usr/bin/X11 or /usr/local/bin

    install:
            # install the program with suid bit
            install -s -m 4755 -o root -g bin hxvt /usr/bin/X11/hanterm

    comment:
	    This works well without HanX also.


Hangul xvt

    file name:
            hxvt

    directory to be installed:
            /usr/bin/X11 or /usr/local/bin

    install:
            # install the program with suid bit
            install -s -m 4755 -o root -g bin hxvt /usr/bin/X11/hxvt


Johab code emulator

    file name:
            johab

    directory to be installed:
            /usr/local/bin

    install:
            # install the program with suid bit
            install -s -m 4755 -o root -g bin hxvt /usr/local/bin/johab

    comment:
	    This doesn't need HanX to run.

