Wednesday, July 25, 2012

At one point, this was my .plan file. I think that it was my fortune from the AIX machine.
  The Guy on the Right Doesn't Stand a Chance

The guy on the right has the Osborne 1, a fully functional computer 
system in a portable package the size of a briefcase.  The guy on the
left has an Uzi submachine gun concealed in his attache case.  Also in
the case are four fully loaded, 32-round clips of 125-grain 9mm 
ammunition.  The owner of the Uzi is going to get more tactical firepower
delivered -- and delivered on target -- in less time, and with less 
effort.  All for $795. It's inevitable. If you're going up against some
guy with an Osborne 1 -- or any personal computer -- he's the one who's
in trouble.  One round from an Uzi can zip through ten inches of solid
pine wood, so you can imagine what it will do to structural foam acrylic
and sheet aluminum.  In fact, detachable magazines for the Uzi are 
available in 25-, 32-, and 40-round capacities, so you can take out an 
entire office full of Apple II or IBM Personal Computers tied
into Ethernet or other local-area networks.  What about the new 16-bit
computers, like the Lisa and Fortune?  Even with the Winchester backup, 
they're no match for the Uzi.  One quick burst and they'll find out what 
Unix means.  Make your commanding officer proud.  Get an Uzi -- and come 
home a winner in the fight for office automatic weapons.

  -- "InfoWorld", June, 1984

edit:
So, apparently, "the guy on the left" as the marketing campaign for the Osborne 1, http://en.wikipedia.org/wiki/Osborne_1#Early_production, which was where this satire came from.

Friday, July 13, 2012

The Great Happiness Space

昨日、 http://www.thegreathappinessspace.com/が見てた。日本人以内にはこんの映画をすごっくおもろいと思う。

Thursday, July 12, 2012

aclocal and ./configure

If you ever have a ./configure file, you need to be sure that you have automake and autoconf installed; however, that does not mean that it will work. Today I received this error:
aclocal.m4:14: error: this file was generated for autoconf 2.61.
You have another version of autoconf.  If you want to use that,
you should regenerate the build system entirely.
aclocal.m4:14: the top level
The solution is to do the following to rebuild the autoconf dependencies:
autoreconf && ./configure

Wednesday, July 4, 2012

MacOS 10.6 and building libjpeg


I had a terribly time getting jpeg-lib to compile under MacOS X, but I figured it out.   
uname -a gives me:
Darwin suiginnomaku.local 10.8.0 Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386 i386
The simple instructions would be to download the tar.gz from http://sourceforge.net/projects/libjpeg/files/libjpeg/6b/ and untar the file.
You then change into the jpeg-6b directory. You must now copy configuration files for libtool into the directory and configure:
cp /usr/share/libtool/config/config.sub .
cp /usr/share/libtool/config/config.guess .
./configure --enable-shared --enable-static
You then need to edit the Makefile and change ./libtool to be:
LIBTOOL = glibtool
This is because of the fact that libtool that ships with the libjpeg source is outdated for MacOS, and glibtool is the version that is built-in.

You then type:
make
to build the files.

You then do a:
sudo make install