An additional note for anyone who doesn't follow the link provided by @Jonathan Fingland :
8.7.4. External Locking
This option only applies to MyISAM tables.
As Richard indicated, external locking is disabled by default. You need to enable external locking if you use myisamchk for write operations or if you use myisampack to pack tables.
From the docs:
If you use myisamchk to perform table maintenance operations on MyISAM
tables, you must either ensure that the server is not running, or that
the server has external locking enabled so that it locks table files
as necessary to coordinate with myisamchk for access to the tables.
The same is true for use of myisampack to pack MyISAM tables.
If you use myisamchk for write operations such as repairing or
optimizing tables, or if you use myisampack to pack tables, you must
always ensure that the mysqld server is not using the table. If you
don't stop mysqld, you should at least do a mysqladmin flush-tables
before you run myisamchk. Your tables may become corrupted if the
server and myisamchk access the tables simultaneously.