Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 242903 Details for
Bug 329315
forked-daapd-0.12.ebuild (New Package)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
config.patch
config.patch (text/plain), 1.93 KB, created by
Gergan Penkov
on 2010-08-14 09:10:10 UTC
(
hide
)
Description:
config.patch
Filename:
MIME Type:
Creator:
Gergan Penkov
Created:
2010-08-14 09:10:10 UTC
Size:
1.93 KB
patch
obsolete
>--- configure.in.orig 2010-05-02 11:21:07.000000000 +0200 >+++ configure.in 2010-08-09 23:19:31.000000000 +0200 >@@ -45,21 +45,15 @@ > AC_SYS_LARGEFILE > AC_TYPE_OFF_T > >-AC_ARG_ENABLE(flac, AC_HELP_STRING([--enable-flac], [Enable FLAC support]), >- use_flac=true; >- CPPFLAGS="${CPPFLAGS} -DFLAC") >- >-AC_ARG_ENABLE(musepack, AC_HELP_STRING([--enable-musepack], [Enable Musepack support]), >- use_musepack=true; >- CPPFLAGS="${CPPFLAGS} -DMUSEPACK") >- >-AC_ARG_ENABLE(itunes, AC_HELP_STRING([--enable-itunes], [Enable iTunes library support]), >- use_itunes=true; >- CPPFLAGS="${CPPFLAGS} -DITUNES") >- >-AM_CONDITIONAL(COND_FLAC, test x$use_flac = xtrue) >-AM_CONDITIONAL(COND_MUSEPACK, test x$use_musepack = xtrue) >-AM_CONDITIONAL(COND_ITUNES, test x$use_itunes = xtrue) >+AC_ARG_ENABLE(flac, AC_HELP_STRING([--enable-flac], [Enable FLAC support])) >+ >+AC_ARG_ENABLE(musepack, AC_HELP_STRING([--enable-musepack], [Enable Musepack support])) >+ >+AC_ARG_ENABLE(itunes, AC_HELP_STRING([--enable-itunes], [Enable iTunes library support])) >+ >+AM_CONDITIONAL(COND_FLAC, test x$enable_flac = xtrue) >+AM_CONDITIONAL(COND_MUSEPACK, test x$enable_musepack = xtrue) >+AM_CONDITIONAL(COND_ITUNES, test x$enable_itunes = xtrue) > > dnl Checks for libraries. > PKG_CHECK_MODULES(CONFUSE, [ libconfuse ]) >@@ -108,16 +102,19 @@ > > AM_PATH_LIBGCRYPT([], , AC_MSG_ERROR([libgcrypt not found])) > >-if test x$use_flac = xtrue; then >+if test x$enable_flac = xtrue; then > PKG_CHECK_MODULES(FLAC, [ flac ]) >+ CPPFLAGS="${CPPFLAGS} -DFLAC" > fi > >-if test x$use_musepack = xtrue; then >+if test x$enable_musepack = xtrue; then > PKG_CHECK_MODULES(TAGLIB, [ taglib_c ]) >+ CPPFLAGS="${CPPFLAGS} -DMUSEPACK" > fi > >-if test x$use_itunes = xtrue; then >+if test x$enable_itunes = xtrue; then > PKG_CHECK_MODULES(LIBPLIST, [ libplist >= 0.16 ]) >+ CPPFLAGS="${CPPFLAGS} -DITUNES" > fi > > case "$host" in
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 329315
:
239703
|
239705
|
239709
|
239893
|
240837
|
242901
| 242903 |
246115
|
266337
|
272933