Marc Slemko | b09f588 | 2006-08-23 22:03:34 +0000 | [diff] [blame] | 1 | AC_PREREQ(2.59) |
| 2 | |
| 3 | AC_INIT([thrift], [1.0]) |
| 4 | |
| 5 | AC_CONFIG_AUX_DIR([.]) |
| 6 | |
| 7 | AM_INIT_AUTOMAKE |
| 8 | |
David Reiss | d683219 | 2007-09-05 00:47:32 +0000 | [diff] [blame^] | 9 | AC_ARG_VAR([PY_PREFIX], [Prefix for installing Python modules. |
| 10 | (Normal --prefix is ignored for Python because |
| 11 | Python has different conventions.) |
| 12 | Default = "/usr"]) |
| 13 | AS_IF([test "x$PY_PREFIX" == x], [PY_PREFIX="/usr"]) |
| 14 | |
Marc Slemko | b09f588 | 2006-08-23 22:03:34 +0000 | [diff] [blame] | 15 | AC_CONFIG_FILES([Makefile]) |
| 16 | |
David Reiss | 1ac120f | 2007-08-29 00:58:14 +0000 | [diff] [blame] | 17 | AC_CONFIG_SUBDIRS([compiler/cpp lib/cpp lib/py if]) |
Marc Slemko | b09f588 | 2006-08-23 22:03:34 +0000 | [diff] [blame] | 18 | |
| 19 | AC_OUTPUT |