to succesfully link lyx on mac the AppKit framework is needed only

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39791 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Stephan Witt 2011-09-30 16:05:46 +00:00
parent 3971728bde
commit 3c846d98ac
3 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ if LYX_WIN_RESOURCE
endif
if INSTALL_MACOSX
lyx_LDFLAGS = -framework Carbon -framework Cocoa
lyx_LDFLAGS = -framework AppKit
endif
#lyx_LDFLAGS=-Wl,-O1

View File

@ -16,7 +16,7 @@ lyxclient_LDADD = \
$(QT4_LIB) $(QT4_LDFLAGS) $(LIBSHLWAPI) $(LIBPSAPI)
if INSTALL_MACOSX
lyxclient_LDFLAGS = -framework Carbon
lyxclient_LDFLAGS = -framework AppKit
endif
# everything below the line containing the single backslashs

View File

@ -69,5 +69,5 @@ tex2lyx_LDADD = \
@LIBS@ $(LIBSHLWAPI) $(LIBPSAPI)
if INSTALL_MACOSX
tex2lyx_LDFLAGS = -framework Carbon
tex2lyx_LDFLAGS = -framework AppKit
endif