search for: flac__has_doxygen

Displaying 11 results from an estimated 11 matches for "flac__has_doxygen".

2005 Mar 01
1
Re: FLAC 1.1.2 released
--- Christian Weisgerber <naddy@mips.inka.de> wrote: > Josh Coalson <xflac@yahoo.com> wrote: > > > FLAC 1.1.2 has been released. See the news item for full details: > > In doc/html, the api documentation is only installed if doxygen is > installed. Is this correct? I thought, doxygen was only required > to _build_ the api docs, but the package already comes
2004 Sep 10
1
Altivec, automake
...=============================================== RCS file: /cvsroot/flac/flac/configure.in,v retrieving revision 1.94 diff -c -r1.94 configure.in *** configure.in 29 Jul 2004 05:25:36 -0000 1.94 --- configure.in 29 Jul 2004 10:20:55 -0000 *************** *** 311,316 **** --- 311,322 ---- AC_DEFINE(FLAC__HAS_DOXYGEN) fi + AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man) + AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN") + if test -n "$DOCBOOK_TO_MAN" ; then + AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN) + fi + AC_CHECK_PROGS(NASM, nasm) AM_CONDITIONAL(FLaC__HAS...
2004 Sep 10
2
Altivec, automake
finished hooking up the altivec stuff so it works in ProjectBuilder. I ran a test, doing a 'flac -t' on 400MB of files compresses at level 5. the runtime dropped from from 180 sec to 105 sec! once I get the latest autotools on my ibook I'll try and get asm compilation to work that way. Josh --- Josh Coalson <xflac@yahoo.com> wrote: > OK, checked it all in (only minor
2017 Jan 13
0
[PATCH 3/4] Honor user's $(htmldir) and do not override GNU defaults for $(docdir)
...le.am index 813b55f2..ef4a12d8 100644 --- a/doc/html/Makefile.am +++ b/doc/html/Makefile.am @@ -18,9 +18,7 @@ SUBDIRS = images -docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html - -doc_DATA = \ +html_DATA = \ changelog.html \ developers.html \ documentation.html \ @@ -46,10 +44,10 @@ if FLaC__HAS_DOXYGEN # The install targets don't copy whole directories so we have to # handle 'api/' specially: install-data-local: - $(mkinstalldirs) $(DESTDIR)$(docdir)/api - (cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api) + $(mkinstalldirs) $(DESTDIR)$(htmldir)/api + (cd $(b...
2005 Feb 01
3
FLAC 1.1.2-beta: attn package maintainers
The FLAC 1.1.2 release candidate is now available at http://prdownloads.sourceforge.net/flac/flac-1.1.2-beta.tar.gz?download Only the source tarball is available. I am putting out the beta first so that package maintainers and others can smoke test the build/install/check process before the official one goes out, since we've had problems before. Everyone that can, please download and try:
2012 Dec 12
0
[PATCH 2/5] autogen.sh: replace this by a simple call to autoreconf
...Makefile.am index 801bfd6..70fb4a1 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -15,8 +15,6 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -AUTOMAKE_OPTIONS = foreign - SUBDIRS = . html if FLaC__HAS_DOXYGEN diff --git a/doc/html/Makefile.am b/doc/html/Makefile.am index a0e89ce..1b2b336 100644 --- a/doc/html/Makefile.am +++ b/doc/html/Makefile.am @@ -15,8 +15,6 @@ # restrictive of those mentioned above. See the file COPYING.Xiph in this # distribution. -AUTOMAKE_OPTIONS = foreign - SUBDIRS = ru...
2017 Jan 13
9
Upstreaming Gentoo patches
Dear FLAC devs, I would like to get some of our patches merged into master. Most of them deal with adhering to GNU conventions, respectively not overriding flags/variables that are up to the user to set. For instance, honoring $(htmldir) is important, as we have installation paths for the documentation that differ from what is currently coded in the various Makefile.am's. Regards David
2012 Dec 12
8
[PATCH 0/5] update build system
This patch series modernizes various aspects of the autotools based build system. There is a lot more that could and should be done, but I tried to stay conservative for now and just resolve some of the most obvious issues. Max Horn (5): configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN autogen.sh: replace this by a simple call to autoreconf configure: always print
2013 Jan 09
4
[PATCH] doc: fix out-of-tree build
It seems the mail you are referring to never made the list: it's not in the archives and not in my mailbox. Take a look here: http://lists.xiph.org/pipermail/flac-dev/2012-December/thread.html It's probably still waiting for moderation. On 07-01-13 17:07, Olivier BLIN wrote: > On 29/12/2012 00:06, Olivier Blin wrote: >> When building outside of the source tree, the Doxyfile
2012 Dec 28
0
[PATCH] doc: fix out-of-tree build
...t a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO diff --git a/doc/Makefile.am b/doc/Makefile.am index 70fb4a1..67703e9 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -18,6 +18,7 @@ SUBDIRS = . html if FLaC__HAS_DOXYGEN +all-local: Doxyfile FLAC.tag: Doxyfile doxygen Doxyfile rm -rf html/api @@ -35,7 +36,7 @@ docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION) doc_DATA = \ FLAC.tag -EXTRA_DIST = Doxyfile Makefile.lite doxygen.footer.html doxygen.header.html $(doc_DATA) +EXTRA_DIST = Doxyfile.in Makefile.lite d...
2012 Dec 28
3
[PATCH] doc: fix out-of-tree build
...t a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO diff --git a/doc/Makefile.am b/doc/Makefile.am index 70fb4a1..67703e9 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -18,6 +18,7 @@ SUBDIRS = . html if FLaC__HAS_DOXYGEN +all-local: Doxyfile FLAC.tag: Doxyfile doxygen Doxyfile rm -rf html/api @@ -35,7 +36,7 @@ docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION) doc_DATA = \ FLAC.tag -EXTRA_DIST = Doxyfile Makefile.lite doxygen.footer.html doxygen.header.html $(doc_DATA) +EXTRA_DIST = Doxyfile.in Makefile.lite d...