Displaying 7 results from an estimated 7 matches for "arch_subdir".
Did you mean:
arch_subdirs
2004 Sep 10
0
1.0 source candidate
...========
RCS file: /cvsroot/flac/flac/src/libFLAC/Makefile.am,v
retrieving revision 1.15
diff -u -r1.15 Makefile.am
--- src/libFLAC/Makefile.am 2001/07/20 23:46:09 1.15
+++ src/libFLAC/Makefile.am 2001/07/21 01:58:17
@@ -31,11 +31,13 @@
else
if FLaC__CPU_IA32
if FLaC__HAS_NASM
-SUBDIRS = ia32 .
+ARCH_SUBDIRS = ia32
libFLAC_la_LIBADD = ia32/libFLAC-asm.a
endif
endif
endif
+
+SUBDIRS = $(ARCH_SUBDIRS) include .
libFLAC_la_LDFLAGS = -version-info 1:0:0
Index: src/libFLAC/ia32/Makefile.am
===================================================================
RCS file: /cvsroot/flac/flac/src/libFLAC/...
2004 Sep 10
5
1.0 source candidate
I rethought it and it seemed like a bad idea to post
a big file, so you can get it here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/flac/junk/flac-1.0-src-candidate.tar.bz2
Josh
__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/
2005 Mar 01
0
flac-1.1.2 configure and Makefile fixes
...+if test "$AS" = "gas" ; then
> # funniest. macro. ever.
> AC_DEFINE(FLAC__HAS_GAS)
> fi
> > --- src.orig/libFLAC/Makefile.am 2005-02-03 05:58:13.000000000
+0100
> +++ src/libFLAC/Makefile.am 2005-02-19 14:35:39.397097392 +0100
> @@ -59,12 +59,13 @@
> ARCH_SUBDIRS = ppc
> if FLaC__HAS_AS__TEMPORARILY_DISABLED
> libFLAC_la_LIBADD = ppc/as/libFLAC-asm.la
> +LOCAL_EXTRA_LDFLAGS = "-Wl,-read_only_relocs,warning"
> else
> if FLaC__HAS_GAS__TEMPORARILY_DISABLED
> libFLAC_la_LIBADD = ppc/gas/libFLAC-asm.la
> +LOCAL_EXTRA_LDFLAGS...
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:
2004 Sep 10
1
altivec lpc_restore_signal
...vsroot/flac/flac/src/libFLAC/Makefile.am,v
retrieving revision 1.44
diff -c -r1.44 Makefile.am
*** Makefile.am 27 May 2003 05:07:16 -0000 1.44
--- Makefile.am 16 Sep 2003 06:34:15 -0000
***************
*** 44,49 ****
--- 44,53 ----
libFLAC_la_LIBADD = -lm
endif
endif
+ if FLaC__CPU_PPC
+ ARCH_SUBDIRS = ppc
+ libFLAC_la_LIBADD = ppc/libFLAC-asm.la
+ endif
endif
SUBDIRS = $(ARCH_SUBDIRS) include .
2012 May 05
5
[PATCH] Optionally, allow distros to use openssl for MD5 verification
...src/libFLAC/Makefile.am
index 134168e..2143ad2 100644
--- a/src/libFLAC/Makefile.am
+++ b/src/libFLAC/Makefile.am
@@ -78,7 +78,7 @@ endif
endif
endif
-libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@ -lm
+libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OPENSSL_LIBS@ @OGG_LIBS@ -lm
SUBDIRS = $(ARCH_SUBDIRS) include .
diff --git a/src/libFLAC/include/private/md5.h b/src/libFLAC/include/private/md5.h
index e5f675a..5b42a27 100644
--- a/src/libFLAC/include/private/md5.h
+++ b/src/libFLAC/include/private/md5.h
@@ -28,6 +28,11 @@
#include "FLAC/ordinals.h"
+#if defined(HAVE_OPENSSL)
+#in...
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...builddir) -I$(srcdir)/include -I$(top_srcdir)/include
lib_LTLIBRARIES = libFLAC.la
if DEBUG
DEBUGCFLAGS = -DFLAC__OVERFLOW_DETECT
@@ -77,7 +78,7 @@ endif
endif
endif
-libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@
+libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@ -lm
SUBDIRS = $(ARCH_SUBDIRS) include .
@@ -104,7 +105,7 @@ extra_ogg_sources = \
ogg_mapping.c
endif
# see 'http://www.gnu.org/software/libtool/manual.html#Libtool-versioning' for numbering convention
-libFLAC_la_LDFLAGS = -version-info 10:0:2 -lm $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@
+libFLAC_la_LDFLAGS = -...