blob: 15fd095cf23c0b71858c6f0c78be3ee8bf2e3856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*- coding: us-ascii -*-
# $RoughId: extconf.rb,v 1.3 2001/08/14 19:54:51 knu Exp $
# $Id$
require "mkmf"
require File.expand_path("../../digest_conf", __FILE__)
$defs << "-DNDEBUG" << "-DHAVE_CONFIG_H"
$objs = [ "rmd160init.#{$OBJEXT}" ]
digest_conf("rmd160", "ripemd", "RIPEMD160")
have_header("sys/cdefs.h")
$preload = %w[digest]
create_makefile("digest/rmd160")
|