OS_ARCH is no longer 'Rhapsody' on OSX, it's now 'Darwin'. Fixes problem

where shared libs all would try to link as stand-alone and fail to find _main().
r=beard/sr=blizzard.
This commit is contained in:
pinkerton%netscape.com 2001-04-05 03:36:56 +00:00
Родитель ce413ece93
Коммит 4391523691
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -362,7 +362,7 @@ endif # IS_COMPONENT
# MacOS X specific stuff
#
ifeq ($(OS_ARCH),Rhapsody)
ifeq ($(OS_ARCH),Darwin)
ifdef IS_COMPONENT
EXTRA_DSO_LDOPTS += -bundle
else