mirror of https://github.com/GNOME/gimp.git
No SYMPREFIX should be used for 64-bit Windows
Earlier builds of mingw-w64 misguidedly used the _ prefix, but not current ones. Thanks to Fridrich Strba.
This commit is contained in:
parent
8d93dfa923
commit
ee7a922cba
|
@ -863,7 +863,10 @@ AC_MSG_CHECKING([whether symbols are prefixed])
|
|||
|
||||
case "$host_os" in
|
||||
mingw*)
|
||||
SYMPREFIX='_'
|
||||
case "$host_cpu" in
|
||||
x86_64) SYMPREFIX='' ;;
|
||||
*) SYMPREFIX='_' ;;
|
||||
esac
|
||||
;;
|
||||
darwin* | rhapsody* | machten*)
|
||||
SYMPREFIX='_'
|
||||
|
|
Loading…
Reference in New Issue