search for: am_ldflags

Displaying 20 results from an estimated 22 matches for "am_ldflags".

Did you mean: am_cflags
2013 Apr 18
1
[PATCH] Ensure AM_LDFLAGS is used consistently
.../Makefile.am +++ b/src/libFLAC++/Makefile.am @@ -44,7 +44,7 @@ EXTRA_DIST = \ libFLAC++.m4 # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention -libFLAC___la_LDFLAGS = -version-info 9:0:3 @LT_NO_UNDEFINED@ +libFLAC___la_LDFLAGS = $(AM_LDFLAGS) -version-info 9:0:3 @LT_NO_UNDEFINED@ libFLAC___la_LIBADD = ../libFLAC/libFLAC.la libFLAC___la_SOURCES = \ diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am index aa0b8b6..84eadb9 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -112,7 +112,7 @@ extra_ogg_sour...
2013 Jul 21
1
[PATCH] Link with -no-undefined regardless of the OS
.../Makefile.am index 51b8cf8..b84f3e4 100644 --- a/src/libFLAC++/Makefile.am +++ b/src/libFLAC++/Makefile.am @@ -45,7 +45,7 @@ EXTRA_DIST = \ libFLAC++.m4 # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention -libFLAC___la_LDFLAGS = $(AM_LDFLAGS) -version-info 9:0:3 @LT_NO_UNDEFINED@ +libFLAC___la_LDFLAGS = $(AM_LDFLAGS) -no-undefined -version-info 9:0:3 libFLAC___la_LIBADD = ../libFLAC/libFLAC.la libFLAC___la_SOURCES = \ diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am index 86155ab..939f706 100644 --- a/src/libFLAC/Make...
2004 Aug 24
0
libvorbis automake version dependency
Hi, > automake1.4 fails with error: > > vq/Makefile.am:9: invalid unused variable name: `AM_LDFLAGS' > > automake1.6 succeeds > > automake1.8 succeeds (with a bunch of "underquoted" warnings for > referenced macros) (the underquoted warnings are due to installed .m4 files being underquoted, and harmless) > it seems the AM_LDFLAGS magic was introduced after autom...
2008 Mar 30
1
[PATCH 1/2] Add SECRET_TEST_CODE to AM_CONDITIONAL in configure.ac
Otherwise, automake will fail to process vivified/code/Makefile.am --- configure.ac | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index a3e186b..0e28374 100644 --- a/configure.ac +++ b/configure.ac @@ -300,6 +300,7 @@ else AC_MSG_NOTICE([Vivified was not enabled.]) fi AM_CONDITIONAL(HAVE_VIVI, [test "x$HAVE_VIVI" = xyes])
2007 Mar 25
3
MMX patch to speed up Theora decoding
Hi, Attached is a patch against 1.0alpha7 to speed up Theora decoding. It is about 15~20% faster in my test. It consists of following things: * MMX loop filter based on Rudolf Marek's patch in http://lists.xiph.org/pipermail/theora-dev/2005-August/002838.html * MMX IDCT based on Rudolf Marek's patch in http://lists.xiph.org/pipermail/theora-dev/2005-July/002816.html and the code in
2004 Aug 06
0
[FYI] Static compile and a few questions...
...rk. You could also add a LIBTOOLFLAGS that is at the right place in the linking stage with a comment like "add '-all-static' here to do a static compile.(usefull for chroot installs) Right place is: LINK = $(LIBTOOL) --mode=link $(CCLD) -all-static $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ (yes, i bet you know, but just to make sure... ) Also has anyone been looking in to adding linuxpirvs support (capabilities)? I also wonderd if icecast2 will support that magicall/mythical instant stripping of oggs instead of reencoding to get a lowerbitrate? //Ian Kumlien PS...
2006 Aug 20
1
omindex patch
Attached is my rather largish omindex.cc patch with ChangeLog. It needs autoreconf to update configure and the Makefiles. Note that unrar is not patent infected, only rar, the compressor. I've put some AC_PATH_PROG checks into configure for all helpers. The patch is not yet complete. 2006-08-18 15:13:32 Reini Urban <reinhard.urban at avl.com> omega-0.9.6b: * omindex.cc: last_mod as
2004 Aug 01
1
autogen.sh of vorbis trunk complains of missing files
...le `vorbis-uninstalled.pc.in' not found configure.in:245: required file `vorbisenc-uninstalled.pc.in' not found configure.in:245: required file `vorbisfile-uninstalled.pc.in' not found vq/Makefile.am:9: `LDFLAGS' is a user variable, you should not override it; vq/Makefile.am:9: use `AM_LDFLAGS' instead.
2014 May 04
0
Building FLAC with LTO
...la \ $(top_builddir)/src/libFLAC/libFLAC.la \ + $(win_utf8_lib) \ @LIBICONV@ \ -lm --- flac-1.3.0/src/metaflac/Makefile.am.orig 2013-05-26 09:30:33.936201600 +0000 +++ flac-1.3.0/src/metaflac/Makefile.am 2014-05-03 09:46:35.618536900 +0000 @@ -42,12 +42,17 @@ utils.h metaflac_LDFLAGS = $(AM_LDFLAGS) +if OS_IS_WINDOWS +win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la +endif + metaflac_LDADD = \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ $(top_builddir)/src/share/getopt/libgetopt.la \...
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
...CONV@ \ + $(win_utf8_lib) @LIBICONV@ \ -lm CLEANFILES = flac.exe diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am index d6e76e8..94fda50 100644 --- a/src/metaflac/Makefile.am +++ b/src/metaflac/Makefile.am @@ -42,12 +42,15 @@ metaflac_SOURCES = \ utils.h metaflac_LDFLAGS = $(AM_LDFLAGS) +if OS_IS_WINDOWS +win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la +endif metaflac_LDADD = \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ $(top_builddir)/src/share/getopt/libgetopt.la \...
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
The following patch changes export.h so that the dllimport/dllexport attributes work with mingw/mingw-w64 and others: - changes _declspec keyword to __declspec: the former may not be defined by some toolchains. - changes the _MSC_VER condition to universally _WIN32: MSVC, as well as GCC supports this. Attached patch: declspec.diff Regards. -- O.S. -------------- next part --------------
2015 Feb 24
4
[PATCH 1/2] nouveau: make nouveau importing global buffers completely thread-safe, with tests
...diff --git a/tests/nouveau/Makefile.am b/tests/nouveau/Makefile.am new file mode 100644 index 0000000..8e3392e --- /dev/null +++ b/tests/nouveau/Makefile.am @@ -0,0 +1,15 @@ +AM_CPPFLAGS = \ + -I$(top_srcdir)/include/drm \ + -I$(top_srcdir)/nouveau \ + -I$(top_srcdir) + +AM_CFLAGS = -Wall -Werror +AM_LDFLAGS = -pthread + +LDADD = -ldl \ + ../../nouveau/libdrm_nouveau.la \ + ../../libdrm.la + +noinst_PROGRAMS = \ + threaded + diff --git a/tests/nouveau/threaded.c b/tests/nouveau/threaded.c new file mode 100644 index 0000000..490a7fa --- /dev/null +++ b/tests/nouveau/threaded.c @@ -0,0 +1,140 @@ +/* + *...
2012 Jul 24
11
[PATCH 01/12] configure: Add -nographic command line option to qemu.
Without this option, configure will fail when there is no display. Signed-off-by: Masami HIRATA <msmhrt at gmail.com> --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index de8a064..61d6f69 100644 --- a/configure.ac +++ b/configure.ac @@ -593,16 +593,16 @@ working. AC_MSG_FAILURE([$QEMU version must be >=
2015 Feb 25
0
[PATCH 1/2] nouveau: make nouveau importing global buffers completely thread-safe, with tests
...0000000..8e3392e > --- /dev/null > +++ b/tests/nouveau/Makefile.am > @@ -0,0 +1,15 @@ > +AM_CPPFLAGS = \ > + -I$(top_srcdir)/include/drm \ > + -I$(top_srcdir)/nouveau \ > + -I$(top_srcdir) > + > +AM_CFLAGS = -Wall -Werror Please use $(WARN_CFLAGS) > +AM_LDFLAGS = -pthread > + I assume that adding -lpthread to the LDADD below will be better, but I'm not 100% sure. > +LDADD = -ldl \ > + ../../nouveau/libdrm_nouveau.la \ > + ../../libdrm.la > + Move -ldl at the bottom of the list so that it doesn't bite us in the future....
2017 Jul 07
3
[PATCH v3 0/3] gobject: Remove gtk-doc.
Another test, the same as before.
2017 Jul 07
3
[PATCH v4 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
Best of .. 4?
2017 Jul 07
3
[PATCH v5 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
After enabling procmail debugging ...
2017 Jul 07
3
[PATCH v2 0/3] Remove gtk-doc.
This is a repost so I can test my procmail script / automatic testing framework. The patch series is identical to v1. Rich.
2017 Jun 29
3
[PATCH 0/3] gobject: Remove gtk-doc and replace with guestfs-gobject(3) manual page.
Patch 1 cleans up the gobject tests. Patches 2 and 3 remote gtk-doc, which is slow and useless, and replace it with a simple manual page. https://bugzilla.redhat.com/show_bug.cgi?id=1465665 Rich.
2015 Feb 25
1
[PATCH 1/2] nouveau: make nouveau importing global buffers completely thread-safe, with tests
...++ b/tests/nouveau/Makefile.am >> @@ -0,0 +1,15 @@ >> +AM_CPPFLAGS = \ >> + -I$(top_srcdir)/include/drm \ >> + -I$(top_srcdir)/nouveau \ >> + -I$(top_srcdir) >> + >> +AM_CFLAGS = -Wall -Werror > Please use $(WARN_CFLAGS) > >> +AM_LDFLAGS = -pthread >> + > I assume that adding -lpthread to the LDADD below will be better, but > I'm not 100% sure. > >> +LDADD = -ldl \ >> + ../../nouveau/libdrm_nouveau.la \ >> + ../../libdrm.la >> + > Move -ldl at the bottom of the list so that...