Rename AM_CONDITIONALs from ENABLE_* to WITH_*.

This is to match the configure command-line options that define them.


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@666490 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 1045237..448dabd 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -1,19 +1,19 @@
 SUBDIRS = \
   cpp
 
-if ENABLE_MONO
+if WITH_MONO
 SUBDIRS += csharp
 endif
 
-if ENABLE_JAVA
+if WITH_JAVA
 SUBDIRS += java
 endif
 
-if ENABLE_PYTHON
+if WITH_PYTHON
 SUBDIRS += py
 endif
 
-if ENABLE_ERLANG
+if WITH_ERLANG
 SUBDIRS += erl
 endif