openbsd-ports/games/scummvm/patches/patch-configure
jsg 646b198533 equate amd64 with x86_64 so alignment checks in configure
will work as intended on amd64.

from Donovan Watteau
2013-01-08 04:11:55 +00:00

56 lines
1.7 KiB
Plaintext

$OpenBSD: patch-configure,v 1.12 2013/01/08 04:11:55 jsg Exp $
--- configure.orig Fri Jul 20 20:52:49 2012
+++ configure Mon Jan 7 17:43:16 2013
@@ -1632,21 +1632,6 @@ elif test "$have_icc" = yes ; then
add_line_to_config_mk 'CXX_UPDATE_DEP_FLAG = -MMD -MF "$(*D)/$(DEPDIR)/$(*F).d" -MQ "$@" -MP'
fi;
-# By default, we add -pedantic to the CXXFLAGS to catch some potentially
-# non-portable constructs, like use of GNU extensions.
-# However, some platforms use GNU extensions in system header files, so
-# for these we must not use -pedantic.
-case $_host_os in
-android | gamecube | psp | wii | webos)
- ;;
-*)
- # ICC does not support pedantic, while GCC and clang do.
- if test "$have_icc" = no ; then
- CXXFLAGS="$CXXFLAGS -pedantic"
- fi
- ;;
-esac
-
# If possible, we want to use -Wglobal-constructors
# However, not all compilers support that, so check whether the active one does.
echocheck "whether -Wglobal-constructors work"
@@ -1811,7 +1796,7 @@ cc_check_clean tmp_find_type_with_size.cpp
# for the smaller sizes.
echo_n "Alignment required... "
case $_host_cpu in
- i[3-6]86 | x86_64 | ppc*)
+ i[3-6]86 | x86_64 | amd64 | ppc*)
# Unaligned access should work
_need_memalign=no
;;
@@ -1856,7 +1841,7 @@ case $_host_cpu in
echo "PowerPC"
DEFINES="$DEFINES -DPPC_TARGET"
;;
- x86_64)
+ x86_64 | amd64)
echo "x86_64"
;;
*)
@@ -3141,9 +3126,9 @@ EOF
fi
if test "$_flac" = yes ; then
if test "$_vorbis" = yes ; then
- LIBS="$LIBS $FLAC_LIBS $OGG_LIBS -lFLAC -logg"
+ LIBS="$LIBS `pkg-config --libs flac` -logg"
else
- LIBS="$LIBS $FLAC_LIBS -lFLAC"
+ LIBS="$LIBS `pkg-config --libs flac`"
fi
INCLUDES="$INCLUDES $FLAC_CFLAGS"
fi