search for: flac__has_ga

Displaying 3 results from an estimated 3 matches for "flac__has_ga".

Did you mean: flac__has_gas
2005 Mar 01
0
flac-1.1.2 configure and Makefile fixes
...:25.000000000 +0100 > +++ /tmp/configure.in 2005-02-19 14:11:56.714378040 +0100 > @@ -184,14 +184,17 @@ > fi > > # only matters for PowerPC > -AC_CHECK_PROGS(AS, as) > -AC_CHECK_PROGS(GAS, gas) > -AM_CONDITIONAL(FLaC__HAS_AS, test -n "$AS") > -AM_CONDITIONAL(FLaC__HAS_GAS, test -n "$GAS") > -if test -n "$AS" ; then > +AC_CHECK_PROGS(AS, as, as) > +AC_CHECK_PROGS(AS, gas, gas) > + > +test "$AS" = "as" && as --version | grep GNU >/dev/null && AS=gas > + > +AM_CONDITIONAL(FLaC__HAS_AS, tes...
2005 Feb 19
2
flac-1.1.2 configure and Makefile fixes
I spent a bit of time trying to make the configure behave. that's the result, I didn't check if the asm output runs correctly (looks forcefully disabled) but at least builds as should. lu -- Luca Barbato Gentoo/linux Developer Gentoo/PPC Operational Manager http://dev.gentoo.org/~lu_zero -------------- next part -------------- A non-text attachment was scrubbed... Name:
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...ly]) AM_PROG_AS AC_PROG_CXX AC_PROG_MAKE_SET @@ -47,7 +38,7 @@ AC_SYS_LARGEFILE AC_FUNC_FSEEKO AC_CHECK_SIZEOF(void*,0) - +AC_SEARCH_LIBS([lround],[m], [AC_DEFINE(HAVE_LROUND,1,lround support)]) #@@@ new name is AC_CONFIG_HEADERS AM_CONFIG_HEADER(config.h) @@ -348,18 +339,13 @@ AC_DEFINE(FLAC__HAS_GAS) AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler]) fi -CPPFLAGS='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'" $CPPFLAGS" if test "x$debug" = xtrue; then - CPPFLAGS="-DDEBUG -DFLaC__INL...