Displaying 20 results from an estimated 155 matches for "noinst_programs".
2017 Jan 15
0
[PATCH 2/2] Only compile and run tests when running 'make check'
.../test_grabbag/cuesheet/Makefile.am
index 96030407..59ae71f4 100644
--- a/src/test_grabbag/cuesheet/Makefile.am
+++ b/src/test_grabbag/cuesheet/Makefile.am
@@ -23,7 +23,7 @@ EXTRA_DIST = \
test_cuesheet.vcxproj.filters
AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
-noinst_PROGRAMS = test_cuesheet
+check_PROGRAMS = test_cuesheet
test_cuesheet_SOURCES = \
main.c
test_cuesheet_LDADD = \
diff --git a/src/test_grabbag/picture/Makefile.am b/src/test_grabbag/picture/Makefile.am
index b1a949e5..0ee04a41 100644
--- a/src/test_grabbag/picture/Makefile.am
+++ b/src/test_grabbag/pic...
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...x 11a48bf..30f8691 100644
--- a/examples/c/decode/file/Makefile.am
+++ b/examples/c/decode/file/Makefile.am
@@ -19,7 +19,7 @@ EXTRA_DIST = \
Makefile.lite \
example_c_decode_file.dsp \
example_c_decode_file.vcproj
-
+AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
noinst_PROGRAMS = example_c_decode_file
example_c_decode_file_LDADD = \
$(top_builddir)/src/libFLAC/libFLAC.la \
diff --git a/examples/c/encode/file/Makefile.am b/examples/c/encode/file/Makefile.am
index 5ae7a63..0ed519a 100644
--- a/examples/c/encode/file/Makefile.am
+++ b/examples/c/encode/file/Makefile.am
@@...
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
...--git a/src/test_grabbag/cuesheet/Makefile.am b/src/test_grabbag/cuesheet/Makefile.am
index a7fc5c5..134afb2 100644
--- a/src/test_grabbag/cuesheet/Makefile.am
+++ b/src/test_grabbag/cuesheet/Makefile.am
@@ -24,8 +24,13 @@ AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
noinst_PROGRAMS = test_cuesheet
test_cuesheet_SOURCES = \
main.c
+
+if OS_IS_WINDOWS
+win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la
+endif
test_cuesheet_LDADD = \
$(top_builddir)/src/share/grabbag/libgrabbag.la \
+ $(win_utf8_lib) \
$(top_builddir)/src/share/replaygain_analysis/lib...
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 --------------
2007 Jul 07
0
2 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...clude_HEA
swfdec_gtk_player.h \
swfdec_gtk_widget.h
-endif
-
EXTRA_DIST = \
swfdec_playback_alsa.c \
swfdec_playback_none.c
diff --git a/player/Makefile.am b/player/Makefile.am
index 11c0b56..501d547 100644
--- a/player/Makefile.am
+++ b/player/Makefile.am
@@ -1,5 +1,3 @@
-if WITH_GTK
-
noinst_PROGRAMS = swfplay swfdebug
swfplay_SOURCES = \
@@ -31,6 +29,4 @@ swfdebug_CFLAGS = $(GLOBAL_CFLAGS) $(GTK
swfdebug_LDFLAGS = $(GTK_LIBS) $(SWFDEC_GTK_LIBS)
swfdebug_LDADD = $(top_builddir)/libswfdec/js/libjs.la
-endif
-
diff-tree 084d1856375ea3dd92325fe106605ac0ce3c58a8 (from 5cdaada235a5bf34316aa...
2007 Nov 01
0
4 commits - libswfdec/swfdec_sound_object.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c test/crashfinder.c test/Makefile.am
...st/crashfinder program that simply runs Flash files to find crashes
diff --git a/test/Makefile.am b/test/Makefile.am
index 8f74f60..1aca7fa 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -3,11 +3,15 @@ SUBDIRS = image sound trace various
if WITH_GTK
noinst_LTLIBRARIES = libswfedit.la
-noinst_PROGRAMS = swfdec-extract dump swfedit swfscript
+noinst_PROGRAMS = swfdec-extract dump swfedit swfscript crashfinder
else
-noinst_PROGRAMS = swfdec-extract dump
+noinst_PROGRAMS = swfdec-extract dump crashfinder
endif
+crashfinder_CFLAGS = $(GLOBAL_CFLAGS) $(SWFDEC_CFLAGS)
+crashfinder_LDFLAGS = $(SWFD...
2009 May 13
1
dovecot 2.0 (revision 9271:d467712aee77) compile problems on AIX 5.3
...Undefined symbol: .iconv_close
I add this ../lib-charset/.libs/libcharset.a -liconv to the Makefiles
(./src/lib-imap/Makefile;./src/lib-index/Makefile;./src/lib-mail/
Makefile)
below:
$ find . -name Makefile -exec egrep -p libcharset.a {} \; -print
clean-noinstPROGRAMS:
@list='$(noinst_PROGRAMS)'; for p in $$list; do \
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
echo " rm -f $$p $$f"; \
rm -f $$p $$f ; \
done
test-imap$(EXEEXT): $(test_imap_OBJECTS) $(test_imap_DEPENDENCIES)
@rm -f test-imap$(EXEEXT)
$(LINK) $(tes...
2005 Jan 29
2
Patch : fix configure.in and Makefile.am problems.
...bbag/cuesheet/Makefile.am,v
retrieving revision 1.8
diff -u -r1.8 Makefile.am
--- src/test_grabbag/cuesheet/Makefile.am 25 Jan 2005 04:18:41 -0000 1.8
+++ src/test_grabbag/cuesheet/Makefile.am 30 Jan 2005 05:23:55 -0000
@@ -19,8 +19,6 @@
Makefile.lite \
test_cuesheet.dsp
-CFLAGS = @CFLAGS@
-
noinst_PROGRAMS = test_cuesheet
test_cuesheet_SOURCES = \
main.c
Index: src/test_libFLAC/Makefile.am
===================================================================
RCS file: /cvsroot/flac/flac/src/test_libFLAC/Makefile.am,v
retrieving revision 1.16
diff -u -r1.16 Makefile.am
--- src/test_libFLAC/Makefile.a...
2007 Jul 07
0
Branch 'as' - 3 commits - doc/Makefile.am libswfdec-gtk/Makefile.am Makefile.am player/Makefile.am test/Makefile.am
...clude_HEA
swfdec_gtk_player.h \
swfdec_gtk_widget.h
-endif
-
EXTRA_DIST = \
swfdec_playback_alsa.c \
swfdec_playback_none.c
diff --git a/player/Makefile.am b/player/Makefile.am
index 11c0b56..501d547 100644
--- a/player/Makefile.am
+++ b/player/Makefile.am
@@ -1,5 +1,3 @@
-if WITH_GTK
-
noinst_PROGRAMS = swfplay swfdebug
swfplay_SOURCES = \
@@ -31,6 +29,4 @@ swfdebug_CFLAGS = $(GLOBAL_CFLAGS) $(GTK
swfdebug_LDFLAGS = $(GTK_LIBS) $(SWFDEC_GTK_LIBS)
swfdebug_LDADD = $(top_builddir)/libswfdec/js/libjs.la
-endif
-
diff-tree 084d1856375ea3dd92325fe106605ac0ce3c58a8 (from 5cdaada235a5bf34316aa...
2004 Sep 10
1
flac-1.1.0: libtool warnings
...rabbag/libgrabbag.la \
+ $(top_builddir)/src/share/gain_analysis/libgain_analysis.la \
$(top_builddir)/src/libFLAC/libFLAC.la \
-lm
--- flac-1.1.0~/src/test_libFLAC/Makefile.am 2003-01-25 21:15:40 +0300
+++ flac-1.1.0/src/test_libFLAC/Makefile.am 2004-02-05 03:52:31 +0300
@@ -24,8 +24,8 @@
noinst_PROGRAMS = test_libFLAC
test_libFLAC_LDADD = \
- $(top_builddir)/src/share/grabbag/libgrabbag.a \
- $(top_builddir)/src/share/gain_analysis/libgain_analysis.a \
+ $(top_builddir)/src/share/grabbag/libgrabbag.la \
+ $(top_builddir)/src/share/gain_analysis/libgain_analysis.la \
$(top_builddir)/src/libFLAC/...
2017 Jan 15
4
Updated CFLAGS patches and make test compilation conditional
Hi Erik,
I've found a middleground for the problem of setting default CFLAGS. I've gone back
to setting them if {C,CXX,CPP,LD}FLAGS are unset at the onset of the configure script
(i.e., the user hasn't specified anything) and then proceed to set them to the defaults
as before. This has been suggested before:
https://lists.gnu.org/archive/html/autoconf/2006-04/msg00022.html
In
2014 May 04
0
Building FLAC with LTO
...builddir)/src/libFLAC/libFLAC.la \
+ $(win_utf8_lib) \
@LIBICONV@
CLEANFILES = metaflac.exe
--- flac-1.3.0/src/test_grabbag/cuesheet/Makefile.am.orig 2013-05-26 09:30:33.940201500 +0000
+++ flac-1.3.0/src/test_grabbag/cuesheet/Makefile.am 2014-05-03 09:48:29.464493500 +0000
@@ -24,9 +24,15 @@
noinst_PROGRAMS = test_cuesheet
test_cuesheet_SOURCES = \
main.c
+
+if OS_IS_WINDOWS
+win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la
+endif
+
test_cuesheet_LDADD = \
$(top_builddir)/src/share/grabbag/libgrabbag.la \
$(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysi...
2015 Sep 30
1
[PATCH] daemon: Compile stubs.c first.
....wordpress.com/2015/09/30/make-and-queuing-theory/#content
---
daemon/Makefile.am | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index 1d29a0f..4ea3c88 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -76,7 +76,11 @@ else
noinst_PROGRAMS = guestfsd
endif
+# Compile the largest file (stubs.c) first. The other files are
+# listed alphabetically. See also:
+# https://rwmj.wordpress.com/2015/09/30/make-and-queuing-theory/#content
guestfsd_SOURCES = \
+ stubs.c \
9p.c \
acl.c \
actions.h \
@@ -162,7 +166,6 @@ guestfsd_SOURCE...
2007 Sep 12
1
[PATCH] Fix errors in new Makefile.ams
Josh,
The two Makefile.ams that you added recently:
examples/c/decode/file/Makefile.am
examples/cpp/decode/file/Makefile.am
are generating errors like this:
examples/c/decode/file/Makefile.am:22: blank line following trailing backslash
examples/cpp/decode/file/Makefile.am:22: blank line following trailing backslash
The attached patch fixes these.
Erik
--
2012 Nov 05
2
[Feature Request] Allow opus-tools from git to be cross-compiled with mingw.
Hi
Please fix it so that opus-tools from git can be cross-compiled with mingw.
Look here ---> http://lists.xiph.org/pipermail/opus/2012-October/001800.html
2004 Sep 10
2
getting framesize in client
...==============================================
RCS file: /cvsroot/flac/flac/src/test_libFLAC/Makefile.am,v
retrieving revision 1.7
diff -u -r1.7 Makefile.am
--- src/test_libFLAC/Makefile.am 7 Nov 2002 05:07:30 -0000 1.7
+++ src/test_libFLAC/Makefile.am 9 Nov 2002 16:51:53 -0000
@@ -25,7 +25,7 @@
noinst_PROGRAMS = test_libFLAC
test_libFLAC_LDADD = \
- $(top_builddir)/src/share/grabbag/grabbag.la \
+ $(top_builddir)/src/share/grabbag/libgrabbag.a \
$(top_builddir)/src/libFLAC/libFLAC.la \
-lm
test_libFLAC_SOURCES = \
Index: src/test_libFLAC++/Makefile.am
===============================================...
2004 Sep 10
3
getting framesize in client
On Fri, Nov 08, 2002 at 12:39:52PM -0800, Josh Coalson wrote:
> --- Miroslav Lichvar <lichvarm@phoenix.inf.upol.cz> wrote:
> > I have few notes:
> >
> > It seems there is changed API in CVS again. So, what about adding
> > function like
> > unsigned FLAC__format_frame_size(const FLAC__Frame *frame)
> > which returns size of the frame in bytes. This
2004 Sep 10
2
-lm ordering
...,4 @@
encode.h \
file.h
-flac_LDFLAGS = -lm
-flac_LDADD = $(top_builddir)/src/libFLAC/libFLAC.la
+flac_LDADD = $(top_builddir)/src/libFLAC/libFLAC.la -lm
--- src/test_streams/Makefile.am.orig Tue Aug 28 16:00:17 2001
+++ src/test_streams/Makefile.am Tue Aug 28 16:00:28 2001
@@ -20,6 +20,6 @@
noinst_PROGRAMS = test_streams
test_streams_SOURCES = \
main.c
-test_streams_LDFLAGS = -lm
+test_streams_LDADD = -lm
CLEANFILES = $(wildcard *.raw)
--- src/test_unit/Makefile.am.orig Tue Aug 28 16:21:54 2001
+++ src/test_unit/Makefile.am Tue Aug 28 16:22:05 2001
@@ -19,8 +19,7 @@
INCLUDES = -I$(top_srcdir)/...
2013 Apr 06
0
[PATCH 2/2] Only link against libogg (and libm) if needed
...it a/examples/c/decode/file/Makefile.am b/examples/c/decode/file/Makefile.am
index 7926e48..d3b2b0e 100644
--- a/examples/c/decode/file/Makefile.am
+++ b/examples/c/decode/file/Makefile.am
@@ -22,8 +22,6 @@ EXTRA_DIST = \
AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
noinst_PROGRAMS = example_c_decode_file
example_c_decode_file_LDADD = \
- $(top_builddir)/src/libFLAC/libFLAC.la \
- @OGG_LIBS@ \
- -lm
+ $(top_builddir)/src/libFLAC/libFLAC.la
example_c_decode_file_SOURCES = main.c
diff --git a/src/flac/Makefile.am b/src/flac/Makefile.am
index 6f0145b..ceae6a5 100644
--- a/sr...
2012 Mar 09
1
[PATCH 1/2] Close all file descriptors in the recovery process.
From: "Richard W.M. Jones" <rjones at redhat.com>
If the parent process uses a pipe (or any fd, but pipes are a
particular problem), then the recovery process would hold open the
file descriptor(s) of the pipe, meaning that it could not be fully
closed in the parent. Because the recovery process doesn't use
exec(2), this wasn't avoidable even using FD_CLOEXEC.
Avoid this