라벨이 autotools인 게시물 표시

Porting to OS/2: Install perl, m4 and autotools(autoconf, automake, libtool)

Many open source projects use autotools to support cross platforms. So it would be better to install autotools. By the way, autotools(autoconf and automake) requires perl // and m4 //(2014/09/08). Therefore, we should install perl first. perl http://hobbes.nmsu.edu/download/pub/os2/dev/perl/perl-5.8.0-bin.zip http://hobbes.nmsu.edu/download/pub/os2/dev/perl/perl-5.8.0-core.zip http://hobbes.nmsu.edu/download/pub/os2/dev/perl/perl-5.8.0-doc.zip http://hobbes.nmsu.edu/download/pub/os2/dev/perl/perl-5.8.0-man.zip Unzip all the zips to x:\, or a sub directory of x:\, where you want to install. unzip *.zip -d x:\ And set env vars before using perl. Colored By Color Scripter ™ 1 2 3 4 5 6 7 8 rem plenv.cmd set PATH=x:\Perl\bin\5.8.0;%PATH% set BEGINLIBPATH=x:\Perl\lib;%BEGINLIBPATH% SET PERLLIB_PREFIX=L:/Perl/lib;x:\Perl\lib SET PERL_LIBPATH=L:/Perl/lib;x:\Perl\lib SET PERL_BADFREE=0 SET PERL_BADLANG=0 SET PERL...