Browse Source

Unbreak WITHOUT_LIBPHREAD/WITHOUT_LIBC_R option support, depending

on platform.
tags/ggatessh-v1.0.0
ru 19 years ago
parent
commit
02aa198c5e
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      Makefile

+ 6
- 1
Makefile View File

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

.if ${MK_LIBPTHREAD} != "no"
.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64"
.if ${MK_LIBC_R} != "no"
_ggatec= ggatec
_ggated= ggated
.endif
.elif ${MK_LIBPTHREAD} != "no"
_ggatec= ggatec
_ggated= ggated
.endif


Loading…
Cancel
Save