From: Po Lu Date: Sun, 8 Jan 2023 07:43:34 +0000 (+0800) Subject: * configure.ac (ANDROID_OBJS): Add sfntfont files. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8dbfb924b6d4b69ff3a8e2d1d02583833c1d2293;p=emacs.git * configure.ac (ANDROID_OBJS): Add sfntfont files. --- diff --git a/configure.ac b/configure.ac index b223d845be8..fa242589b6e 100644 --- a/configure.ac +++ b/configure.ac @@ -2233,7 +2233,8 @@ CM_OBJ="cm.o" if test "${ANDROID}" = "yes"; then window_system=android no_x=yes - ANDROID_OBJ="androidterm.o androidfns.o androidfont.o android.o" + ANDROID_OBJ="androidterm.o androidfns.o androidfont.o androidmenu.o" + ANDROID_OBJ="$ANDROID_OBJ android.o" ANDROID_LIBS= CM_OBJ= @@ -2251,6 +2252,10 @@ for Android, but all API calls need to be stubbed out]) # Link with libraries required for Android support. ANDROID_LIBS="-landroid -llog -ljnigraphics" + + # Link with the sfnt font library and sfntfont.o, along with + # sfntfont-android.o. + ANDROID_OBJ="sfnt.o sfntfont.o sfntfont-android.o" fi fi