CC='gcc -pipe -I/opt/include' \ LDFLAGS='-L/opt/lib -L/usr/openwin/lib -L/usr/dt/lib' \ ./configure --prefix=/opt/pkgs/emacs-21.x \ '--with-x-toolkit=athena' \ '--with-xpm' \ '--with-jpeg' \ '--with-tiff' \ '--with-gif' \ '--with-png' \ '--without-xim' \ '--with-x'
src/Makefile 内で -R/usr/openwin/lib が指定されてしまうので, それ削るか,LDFLAGS に -R/opt/lib:/usr/openwin/lib:/usr/dt/lib を加えること。
$ LD_RUN_PATH='/opt/lib:/usr/openwin/lib:/usr/dt/lib' gmake
or
$ LDFLAGS='-L/opt/lib -L/usr/openwin/lib -L/usr/dt/lib \ -R/opt/lib:/usr/openwin/lib:/usr/dt/lib' gmake
Terminal face が使いたい場合は,src/Makefile で s/-lcurses/-lncurses/ などとしておく (ncurses は /opt/{include,lib} に install 済と仮定) 。