1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

- new option GNUSTEP_WITH_GCC34

This commit is contained in:
Dirk Meyer 2004-10-12 04:32:33 +00:00
parent e9966a3038
commit 45bb3982e3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=118774

View File

@ -94,13 +94,21 @@ PLIST_SUB+= LIBVERSION=${DEFAULT_LIBVERSION}
PLIST_SUB+= MAJORLIBVERSION=${DEFAULT_LIBVERSION:C/([0-9]).*/\1/1}
.if !defined(GNUSTEP_WITH_BASE_GCC)
.if !defined(GNUSTEP_WITH_GCC32) && !defined(GNUSTEP_WITH_GCC33) && !defined(GNUSTEP_WITH_GCC34)
GNUSTEP_WITH_GCC33= yes
.endif
.if defined(GNUSTEP_WITH_GCC32)
CC= gcc32
CXX= g++32
.else
.endif
.if defined(GNUSTEP_WITH_GCC33)
CC= gcc33
CXX= g++33
.endif
.if defined(GNUSTEP_WITH_GCC34)
CC= gcc34
CXX= g++34
.endif
.endif
# ---------------------------------------------------------------------------