Changeset 900807db5ba0078fc316a960ab8276bda1ba6681
- Timestamp:
- 03/06/08 17:29:17
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1204824557 +0000
- git-parent:
[67a56d37474d1336d5e7e07d07f5b1241c66654c]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1204824557 +0000
- Message:
allow for node-local config settings. determine if we have uuid_unparse_lower
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r273d4cc |
r900807d |
|
| 1 | 1 | AC_INIT(src/noitd.c) |
|---|
| | 2 | |
|---|
| | 3 | node=`hostname | cut -f1 -d '.'` |
|---|
| | 4 | if test -f ".configure.$node"; then |
|---|
| | 5 | echo "***********************************************************" |
|---|
| | 6 | echo "* Loading node specific configure settings for $node." |
|---|
| | 7 | echo "***********************************************************" |
|---|
| | 8 | . ./.configure.$node |
|---|
| | 9 | fi |
|---|
| | 10 | |
|---|
| 2 | 11 | AC_CANONICAL_HOST |
|---|
| 3 | 12 | AC_CONFIG_HEADER(src/noit_config.h) |
|---|
| … | … | |
| 60 | 69 | AC_CHECK_LIB(pthread, pthread_create, , ) |
|---|
| 61 | 70 | AC_CHECK_LIB(uuid, uuid_generate, , ) |
|---|
| | 71 | AC_CHECK_FUNC(uuid_unparse_lower, [AC_DEFINE(HAVE_UUID_UNPARSE_LOWER)], ) |
|---|
| 62 | 72 | AC_CHECK_LIB(util, openpty, , ) |
|---|
| 63 | 73 | AC_CHECK_LIB(termcap, tputs, , ) |
|---|
| r01ab012 |
r900807d |
|
| 69 | 69 | #undef HAVE_U_INT64_T |
|---|
| 70 | 70 | #undef HAVE_U_INTXX_T |
|---|
| | 71 | #undef HAVE_UUID_UNPARSE_LOWER |
|---|
| 71 | 72 | #define IFS_CH '/' |
|---|
| 72 | 73 | #undef BROKEN_SEM_INIT |
|---|