source:
scripts/untested/blfs-patches/flac-1.1.2-gas.patch@
e972b4d
Last change on this file since e972b4d was fd5b1fe, checked in by , 19 years ago | |
---|---|
|
|
File size: 888 bytes |
-
configure.in
Submitted By: Ryan Oliver <ryan.oliver@pha.com.au> Date: 2005-07-24 Initial Package Version: 1.1.2 Upstream Status: Unknown Origin: Gentoo Description:
old new 184 184 fi 185 185 186 186 # only matters for PowerPC 187 AC_CHECK_PROGS(AS, as) 188 AC_CHECK_PROGS(GAS, gas) 189 AM_CONDITIONAL(FLaC__HAS_AS, test -n "$AS") 190 AM_CONDITIONAL(FLaC__HAS_GAS, test -n "$GAS") 191 if test -n "$AS" ; then 187 AC_CHECK_PROGS(AS, as, as) 188 AC_CHECK_PROGS(AS, gas, gas) 189 190 test "$AS" = "as" && as --version | grep GNU >/dev/null && AS=gas 191 192 AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as" ) 193 AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas" ) 194 if test "$AS" = "as" ; then 192 195 AC_DEFINE(FLAC__HAS_AS) 193 196 fi 194 if test -n "$GAS" ; then197 if test "$AS" = "gas" ; then 195 198 # funniest. macro. ever. 196 199 AC_DEFINE(FLAC__HAS_GAS) 197 200 fi
Note:
See TracBrowser
for help on using the repository browser.