mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-22 16:33:43 +00:00
Fix ./configure --enable-m32
Review URL: http://breakpad.appspot.com/197001 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@692 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
1efa3f9e10
commit
c40bcc74d9
2 changed files with 4 additions and 2 deletions
3
configure
vendored
3
configure
vendored
|
@ -14955,7 +14955,8 @@ fi
|
|||
if test "${enable_m32+set}" = set; then :
|
||||
enableval=$enable_m32; case "${enableval}" in
|
||||
yes)
|
||||
CFLAGS=$(CFLAGS) -m32
|
||||
CFLAGS="${CFLAGS} -m32"
|
||||
CXXFLAGS="${CXXFLAGS} -m32"
|
||||
usem32=true
|
||||
;;
|
||||
no)
|
||||
|
|
|
@ -65,7 +65,8 @@ AC_ARG_ENABLE(m32,
|
|||
[(default is no)]),
|
||||
[case "${enableval}" in
|
||||
yes)
|
||||
CFLAGS=$(CFLAGS) -m32
|
||||
CFLAGS="${CFLAGS} -m32"
|
||||
CXXFLAGS="${CXXFLAGS} -m32"
|
||||
usem32=true
|
||||
;;
|
||||
no)
|
||||
|
|
Loading…
Reference in a new issue