ext/extconf.rb
author Michael Granger <ged@FaerieMUD.org>
Thu, 20 Nov 2008 17:12:39 +0000
changeset 5 41a1542b3b10
parent 3 7f6da371e2ce
child 7 4460fc10c6a3
permissions -rwxr-xr-x
Cleaned up bsdjail extension code a bit more and made the extconf check for the actual headers being included.

#!/usr/bin/env ruby

require 'mkmf'
require 'fileutils'

ADDITIONAL_LIBRARY_DIRS = %w[
	/usr/local/lib
	/opt/lib
	/opt/local/lib
]
ADDITIONAL_INCLUDE_DIRS = %w[
	/usr/local/include
	/opt/include
	/opt/local/include
]

$CFLAGS << ' -Wall' << ' -ggdb' << ' -DDEBUG'

def fail( *messages )
	$stderr.puts( *messages )
	exit( 1 )
end


dir_config( 'bsdjail' )

have_header( 'stdio.h' ) 		or fail "Can't find the stdio.h header."
have_header( 'sys/param.h' ) 	or fail "Can't find the sys/param.h header."
have_header( 'sys/jail.h' ) 	or fail "Can't find the sys/jail.h header."
have_header( 'sys/types.h' ) 	or fail "Can't find the sys/types.h header."
have_header( 'unistd.h' ) 		or fail "Can't find the unistd.h header."

have_func( "jail_attach" )		or fail "Can't find jail_attach in the stdlib."

create_makefile( 'bsdjail' )