~ubuntu-branches/ubuntu/trusty/ruby1.9/trusty

« back to all changes in this revision

Viewing changes to ext/digest/sha1/extconf.rb

  • Committer: Bazaar Package Importer
  • Author(s): akira yamada
  • Date: 2006-07-13 22:43:47 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060713224347-zgeu5zwr4z6let68
Tags: 1.9.0+20060609-1
* new upstream snapshot. (2006-06-09)
* configure with -fno-strict-aliasing (Bug#370553)
* rdoc1.9 suggests graphviz (Bug#339524)
* debian/copyright: added a note for using libopenssl-ruby1.9.  (Bug#367024)
* debian/README.Debian: updated.  (Closes: #344294)
* added debian/patches/802_mkconfig.dpatch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# $RoughId: extconf.rb,v 1.3 2001/08/14 19:54:51 knu Exp $
2
 
# $Id: extconf.rb,v 1.6 2004/01/07 22:06:38 nobu Exp $
 
2
# $Id: extconf.rb,v 1.7 2006/05/25 23:43:28 nobu Exp $
3
3
 
4
4
require "mkmf"
5
5
 
6
 
$CFLAGS << " -DHAVE_CONFIG_H -I#{File.dirname(__FILE__)}/.."
 
6
$defs << "-DHAVE_CONFIG_H"
 
7
$INCFLAGS << " -I$(srcdir)/.."
7
8
 
8
9
$objs = [ "sha1init.#{$OBJEXT}" ]
9
10