Browse Source

- When building world WITHOUT_LIBPTHREAD, link libthr to libpthread.

- Don't build ngctl(8) and cached(8) if threading libs aren't built.
- Fix various issues in a cached(8) makefile.
tags/ggatessh-v1.0.0
ru 18 years ago
parent
commit
52e33d5e83
1 changed files with 2 additions and 6 deletions
  1. +2
    -6
      Makefile

+ 2
- 6
Makefile View File

@@ -6,12 +6,8 @@ SUBDIR= ${_ggatec} \
${_ggated} \
ggatel

.if ${MACHINE_ARCH} == "sparc64"
.if ${MK_LIBTHR} != "no"
_ggatec= ggatec
_ggated= ggated
.endif
.elif ${MK_LIBPTHREAD} != "no"
.if ${MK_LIBTHR} != "no" || \
(${MACHINE_ARCH} != "sparc64" && ${MK_LIBPTHREAD} != "no")
_ggatec= ggatec
_ggated= ggated
.endif


Loading…
Cancel
Save