Overview
| Comment: | configure.ac: Fix AC_CHECK_HEADER(S) confusion |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | 0.8 |
| Files: | files | file ages | folders |
| SHA3-256: |
6ab3d04278c5e4e3f262c8020843fc60 |
| User & Date: | js on 2015-08-22 11:57:47 |
| Other Links: | branch diff | manifest | tags |
Context
|
2015-08-23
| ||
| 10:42 | Documentation fixes (check-in: d24814b70e user: js tags: 0.8) | |
|
2015-08-22
| ||
| 11:57 | configure.ac: Fix AC_CHECK_HEADER(S) confusion (check-in: 6ab3d04278 user: js tags: 0.8) | |
| 11:57 | utils/ofhttp: Add includes required on Solaris (check-in: 608e86e951 user: js tags: 0.8) | |
Changes
Modified configure.ac from [a8cbbf47c2] to [42239fc479].
| ︙ | |||
514 515 516 517 518 519 520 | 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 | - + | ]) test x"$have_asprintf" != x"yes" -a x"$ac_cv_snprintf_useful_ret" != x"yes" && \ AC_MSG_ERROR(No asprintf and no snprintf returning required space!) AC_CHECK_FUNCS([arc4random random], break) AC_CHECK_LIB(dl, dlopen, LIBS="$LIBS -ldl") |
| ︙ | |||
591 592 593 594 595 596 597 | 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 | - + |
AC_DEFINE(OF_HAVE_THREADS, 1, [Whether we have threads])
AC_SUBST(USE_SRCS_THREADS, '${SRCS_THREADS}')
AC_ARG_ENABLE(compiler-tls,
AS_HELP_STRING([--disable-compiler-tls],
[disable compiler thread local storage]))
AS_IF([test x"$enable_compiler_tls" != x"no"], [
|
| ︙ | |||
763 764 765 766 767 768 769 | 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 | - + - + | AC_CHECK_LIB(network, socket, LIBS="$LIBS -lnetwork") AC_CHECK_LIB(ws2_32, main, LIBS="$LIBS -lws2_32") AC_CHECK_HEADER(sys/socket.h, [ AC_DEFINE(OF_HAVE_SYS_SOCKET_H, 1, [Whether we have sys/socket.h]) ]) |
| ︙ | |||
960 961 962 963 964 965 966 | 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 | - + | ;; esac AS_IF([test x"$have_processes" = x"yes"], [ AC_SUBST(OFPROCESS_M, "OFProcess.m") AC_DEFINE(OF_HAVE_PROCESSES, 1, [Whether we have processes]) ]) |
| ︙ |