Changeset c105913d38157700cbb9fbc7f0f6f8a7b18de103
- Timestamp:
- 12/17/07 18:40:14
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1197916814 +0000
- git-parent:
[1452e3302fd8c2b4ded895773bf38dc163b2d914]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1197916814 +0000
- Message:
compile on OpenBSD
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rb62cf2b |
rc105913 |
|
| 1 | 1 | AC_INIT(src/noitd.c) |
|---|
| 2 | 2 | AC_CONFIG_HEADER(src/noit_config.h) |
|---|
| | 3 | AC_CONFIG_HEADER(src/jlog/jlog_config.h) |
|---|
| 3 | 4 | |
|---|
| 4 | 5 | AC_PROG_CC |
|---|
| … | … | |
| 27 | 28 | AC_CHECK_LIB(rt, sem_init, , ) |
|---|
| 28 | 29 | AC_CHECK_LIB(posix4, sem_wait, , ) |
|---|
| | 30 | AC_CHECK_LIB(pthread, pthread_create, , ) |
|---|
| 29 | 31 | |
|---|
| 30 | 32 | AC_MSG_CHECKING([whether sem_init works]) |
|---|
| r01751d3 |
rc105913 |
|
| 31 | 31 | make-subdirs: |
|---|
| 32 | 32 | for dir in $(SUBS) ; do \ |
|---|
| 33 | | make -C $$dir ; \ |
|---|
| | 33 | (cd $$dir && make) ; \ |
|---|
| 34 | 34 | done |
|---|
| 35 | 35 | |
|---|
| rcd1ab55 |
rc105913 |
|
| 46 | 46 | #undef HAVE_TIME_H |
|---|
| 47 | 47 | #undef HAVE_SYS_STAT_H |
|---|
| | 48 | #undef HAVE_SYS_RESOURCE_H |
|---|
| 48 | 49 | #undef HAVE_LIBKERN_OSATOMIC_H |
|---|
| | 50 | #undef HAVE_INT64_T |
|---|
| | 51 | #undef HAVE_INTXX_T |
|---|
| | 52 | #undef HAVE_LONG_LONG_INT |
|---|
| | 53 | #undef HAVE_UINTXX_T |
|---|
| | 54 | #undef HAVE_U_INT |
|---|
| | 55 | #undef HAVE_U_INT64_T |
|---|
| | 56 | #undef HAVE_U_INTXX_T |
|---|
| 49 | 57 | #define IFS_CH '/' |
|---|
| 50 | 58 | |
|---|
| … | … | |
| 63 | 71 | #ifdef HAVE_SYS_STAT_H |
|---|
| 64 | 72 | #include <sys/stat.h> |
|---|
| | 73 | #endif |
|---|
| | 74 | #ifdef HAVE_SYS_RESOURCE_H |
|---|
| | 75 | #include <sys/resource.h> |
|---|
| 65 | 76 | #endif |
|---|
| 66 | 77 | |
|---|