freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype][master] * builds/unix/configure.raw [mmap]: Res


From: Alexei Podtelezhnikov
Subject: [Git][freetype/freetype][master] * builds/unix/configure.raw [mmap]: Restore default path.
Date: Wed, 03 Feb 2021 19:46:01 +0000

Alexei Podtelezhnikov pushed to branch master at FreeType / FreeType

Commits:

2 changed files:

Changes:

  • ChangeLog
    1
    +2021-02-03  Alexei Podtelezhnikov  <apodtele@gmail.com>
    
    2
    +
    
    3
    +	* builds/unix/configure.raw [mmap]: Restore default path.
    
    4
    +
    
    5
    +	Fixes #1023.
    
    6
    +
    
    1 7
     2021-02-03  Werner Lemberg  <wl@gnu.org>
    
    2 8
     
    
    3 9
     	[psaux] Fix integer overflow.
    

  • builds/unix/configure.raw
    ... ... @@ -204,9 +204,8 @@ if test "x${enable_mmap}" != "xno"; then
    204 204
       case "$host" in
    
    205 205
       *-*-mingw*)
    
    206 206
         AC_MSG_CHECKING([for working mmap])
    
    207
    -    AC_MSG_RESULT([using Windows-specific equivalent])
    
    207
    +    AC_MSG_RESULT([using MapViewOfFile in Windows])
    
    208 208
         FTSYS_SRC='$(TOP_DIR)/builds/windows/ftsystem.c'
    
    209
    -    AC_SUBST([FTSYS_SRC])
    
    210 209
         ;;
    
    211 210
       *)
    
    212 211
         AC_FUNC_MMAP
    
    ... ... @@ -226,12 +225,17 @@ if test "x${enable_mmap}" != "xno"; then
    226 225
             ])
    
    227 226
     
    
    228 227
           FT_MUNMAP_PARAM
    
    229
    -      AC_SUBST([FTSYS_SRC])
    
    230 228
         fi
    
    231 229
         ;;
    
    232 230
       esac
    
    233 231
     fi
    
    234 232
     
    
    233
    +if test -z "$FTSYS_SRC"; then
    
    234
    +  FTSYS_SRC='$(BASE_DIR)/ftsystem.c'
    
    235
    +fi
    
    236
    +AC_SUBST([FTSYS_SRC])
    
    237
    +
    
    238
    +
    
    235 239
     AC_CHECK_FUNCS([memcpy memmove])
    
    236 240
     
    
    237 241
     
    


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]