source: scripts/untested/blfs-patches/flac-1.1.2-gas.patch @ fd5b1fe

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since fd5b1fe was fd5b1fe, checked in by Jim Gifford <clfs@…>, 18 years ago

r588@server (orig r586): ryan | 2005-08-05 22:47:43 -0700
Add pile of new patches for blfs packages



  • Property mode set to 100644
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  
    184184fi
    185185
    186186# 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
     187AC_CHECK_PROGS(AS, as, as)
     188AC_CHECK_PROGS(AS, gas, gas)
     189
     190test "$AS" = "as" && as --version | grep GNU >/dev/null && AS=gas
     191
     192AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as" )
     193AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas" )
     194if test "$AS" = "as" ; then
    192195AC_DEFINE(FLAC__HAS_AS)
    193196fi
    194 if test -n "$GAS" ; then
     197if test "$AS" = "gas" ; then
    195198# funniest. macro. ever.
    196199AC_DEFINE(FLAC__HAS_GAS)
    197200fi
Note: See TracBrowser for help on using the repository browser.