diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2009-01-05 19:44:02 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2009-01-05 19:44:02 +0000 |
commit | d095d4a96566a3ab095ab2e30430ce93a154f1a7 (patch) | |
tree | ca5cd97e4ad40da4b6e4a6c197453610fd6c69b1 /devel/linuxthreads | |
parent | c0a7a1f97264b914fa27603f8433b87b38b15f14 (diff) | |
download | ports-d095d4a96566a3ab095ab2e30430ce93a154f1a7.tar.gz ports-d095d4a96566a3ab095ab2e30430ce93a154f1a7.zip |
Notes
Diffstat (limited to 'devel/linuxthreads')
-rw-r--r-- | devel/linuxthreads/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/devel/linuxthreads/Makefile b/devel/linuxthreads/Makefile index e1b7a2397996..b0c35598b63a 100644 --- a/devel/linuxthreads/Makefile +++ b/devel/linuxthreads/Makefile @@ -28,7 +28,7 @@ ONLY_FOR_ARCHS= i386 .if ${OSVERSION} >= 700042 USING_GCC4= true MAKE_ENV+= USING_GCC4=true -.elif ${OSVERSION} >= 500035 +.else USING_GCC3= true MAKE_ENV+= USING_GCC3=true .endif @@ -230,12 +230,12 @@ post-install: # @sh ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.if (defined(NOPROFILE) && ${OSVERSION} < 600007 ) || (defined(NO_PROFILE) && ${OSVERSION} >= 600007 ) +.if defined(NO_PROFILE) PLIST_SUB= PROFILE:="@comment " .else PLIST_SUB= PROFILE:="" .endif -.if (defined(NOPIC) && ${OSVERSION} < 600007 ) || (defined(NO_PIC) && ${OSVERSION} >= 600007 ) +.if defined(NO_PIC) PLIST_SUB+= PIC:="@comment " .else PLIST_SUB+= PIC:="" @@ -245,7 +245,7 @@ PLIST_SUB+= PICARCHIVE:="" .else PLIST_SUB+= PICARCHIVE:="@comment " .endif -.if defined(INSTALL_PIC_ARCHIVE) || ${OSVERSION} >= 501101 +.if defined(INSTALL_PIC_ARCHIVE) PLIST_SUB+= LIBLGCC_R_PICARCHIVE:="" .else PLIST_SUB+= LIBLGCC_R_PICARCHIVE:="@comment " @@ -282,10 +282,8 @@ PLIST_SUB+= LTHREADSHMAJOR:="2" .endif .if ${OSVERSION} >= 700042 PLIST_SUB+= LIBSTDCPPMAJOR:="6" -.elif ${OSVERSION} >= 600033 -PLIST_SUB+= LIBSTDCPPMAJOR:="5" .else -PLIST_SUB+= LIBSTDCPPMAJOR:="4" +PLIST_SUB+= LIBSTDCPPMAJOR:="5" .endif .include <bsd.port.post.mk> |