comparison src/configure.in @ 5114:56bc3698f8c6 v7.3.1300

updated for version 7.3.1300 Problem: Mac: tiny and small build fails. Solution: Don't include os_macosx.m in tiny build. Include mouse support in small build. (Kazunobu Kuriyama)
author Bram Moolenaar <bram@vim.org>
date Wed, 03 Jul 2013 19:52:53 +0200
parents 9f7b92f232d3
children a4e08386a6aa
comparison
equal deleted inserted replaced
5113:54a5e85247dc 5114:56bc3698f8c6
3696 LIBS=$"$LIBS -framework Cocoa" 3696 LIBS=$"$LIBS -framework Cocoa"
3697 AC_MSG_RESULT(yes) 3697 AC_MSG_RESULT(yes)
3698 else 3698 else
3699 AC_MSG_RESULT(no) 3699 AC_MSG_RESULT(no)
3700 fi 3700 fi
3701 dnl As mentioned above, tiny build implies os_macosx.m isn't needed.
3702 dnl Exclude it from OS_EXTRA_SRC so that linker won't complain about
3703 dnl missing Objective-C symbols.
3704 if test "x$features" = "xtiny"; then
3705 OS_EXTRA_SRC=`echo "$OS_EXTRA_SRC" | sed -e 's+os_macosx.m++'`
3706 OS_EXTRA_OBJ=`echo "$OS_EXTRA_OBJ" | sed -e 's+objects/os_macosx.o++'`
3707 fi
3701 fi 3708 fi
3702 if test "x$MACARCH" = "xboth" && test "x$GUITYPE" = "xCARBONGUI"; then 3709 if test "x$MACARCH" = "xboth" && test "x$GUITYPE" = "xCARBONGUI"; then
3703 LDFLAGS="$LDFLAGS -isysroot $DEVELOPER_DIR/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" 3710 LDFLAGS="$LDFLAGS -isysroot $DEVELOPER_DIR/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc"
3704 fi 3711 fi
3705 3712