s/ENABLE_RUBY/WITH_RUBY/ for consistency.
authorDavid Reiss <dreiss@apache.org>
Fri, 11 Jul 2008 08:04:12 +0000 (08:04 +0000)
committerDavid Reiss <dreiss@apache.org>
Fri, 11 Jul 2008 08:04:12 +0000 (08:04 +0000)
This didn't happen in r666490 because the Ruby stuff was developed
in a separate branch.

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@675857 13f79535-47bb-0310-9956-ffa450edef68

configure.ac
lib/Makefile.am
test/Makefile.am

index 3e1d1ac..4ef8d19 100644 (file)
@@ -70,7 +70,7 @@ AX_THRIFT_LIB(ruby, [Ruby], yes)
 if test "$with_ruby" = "yes"; then
   AC_PATH_PROG([RUBY], [ruby])
 fi
-AM_CONDITIONAL(ENABLE_RUBY, [test -n "$RUBY"])
+AM_CONDITIONAL(WITH_RUBY, [test -n "$RUBY"])
 
 AC_C_CONST
 AC_C_INLINE
index 32240ae..3cb592c 100644 (file)
@@ -17,7 +17,7 @@ if WITH_ERLANG
 SUBDIRS += erl
 endif
 
-if ENABLE_RUBY
+if WITH_RUBY
 SUBDIRS += rb
 endif
 
index bac5b06..dab0f4e 100644 (file)
@@ -8,7 +8,7 @@ if WITH_PYTHON
 SUBDIRS += py
 endif
 
-if ENABLE_RUBY
+if WITH_RUBY
 SUBDIRS += rb
 endif