Summary:
Building fb303 is hard enough without including limited reflection.
This change will install reflection_limited.thrift into /usr/share/thrift/if
so it will be easier for fb303 to find (we won't have to dig it out of the
thrift source directory).
Reviewed By: mcslee, marc
Test Plan:
./bootstrap.sh && ./configure && make && sudo make install
(on my vmware box).
Revert Plan: ok
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665230 
13f79535-47bb-0310-9956-
ffa450edef68
 #!/bin/sh
 
-subdirs="compiler/cpp lib/cpp lib/py"
+subdirs="compiler/cpp lib/cpp lib/py if"
 
 ./cleanup.sh
 echo "SUBDIRS = ${subdirs}" > Makefile.am
 
 #!/bin/sh
 
-subdirs="compiler/cpp lib/cpp lib/py"
+subdirs="compiler/cpp lib/cpp lib/py if"
 
 rm -rf \
 AUTHORS \
 
 
 AC_CONFIG_FILES([Makefile])
 
-AC_CONFIG_SUBDIRS([compiler/cpp lib/cpp lib/py])
+AC_CONFIG_SUBDIRS([compiler/cpp lib/cpp lib/py if])
 
 AC_OUTPUT
 
--- /dev/null
+thrift_ifdir = $(datadir)/thrift/if
+dist_thrift_if_DATA = \
+                      reflection_limited.thrift
 
--- /dev/null
+#!/bin/sh
+
+./cleanup.sh
+aclocal
+touch NEWS README AUTHORS ChangeLog
+autoconf
+automake -ac
 
--- /dev/null
+#!/bin/sh
+
+rm -rf \
+AUTHORS \
+ChangeLog \
+COPYING \
+INSTALL \
+Makefile \
+Makefile.in \
+NEWS \
+README \
+aclocal.m4 \
+autom4te.cache \
+config.log \
+config.status \
+config.sub \
+configure \
+install-sh \
+missing
 
--- /dev/null
+AC_PREREQ(2.59)
+
+AC_INIT([thriftif], [1.0])
+
+AC_CONFIG_AUX_DIR([.])
+
+AM_INIT_AUTOMAKE
+
+AC_CONFIG_FILES([Makefile])
+
+AC_OUTPUT