Skip to content

Commit f4b5167

Browse files
committed
* ext/digest/*/extconf.rb: fix so that they build from any
directory. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1611 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent a2193f5 commit f4b5167

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Sat Jul 14 12:26:30 2001 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
2+
3+
* ext/digest/*/extconf.rb: fix so that they build from any
4+
directory.
5+
16
Sat Jul 14 06:20:17 2001 Minero Aoki <aamine@loveruby.net>
27

38
* lib/net/http.rb: HTTP#proxy? did not worked.

ext/digest/md5/extconf.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
require "mkmf"
55

6-
$CFLAGS << " -DHAVE_CONFIG_H -I.."
6+
$CFLAGS << " -DHAVE_CONFIG_H -I$(srcdir)/.."
77

88
$objs = [
99
"md5.#{$OBJEXT}",

ext/digest/rmd160/extconf.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
require "mkmf"
55

6-
$CFLAGS << " -DHAVE_CONFIG_H -I.."
6+
$CFLAGS << " -DHAVE_CONFIG_H -I$(srcdir)/.."
77

88
$objs = [
99
"rmd160.#{$OBJEXT}",

ext/digest/sha1/extconf.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
require "mkmf"
55

6-
$CFLAGS << " -DHAVE_CONFIG_H -I.."
6+
$CFLAGS << " -DHAVE_CONFIG_H -I$(srcdir)/.."
77

88
$objs = [
99
"sha1.#{$OBJEXT}",

ext/digest/sha2/extconf.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
require "mkmf"
55

6-
$CFLAGS << " -DHAVE_CONFIG_H -I.."
6+
$CFLAGS << " -DHAVE_CONFIG_H -I$(srcdir)/.."
77

88
$objs = [
99
"sha2.#{$OBJEXT}",

0 commit comments

Comments
 (0)