mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-19 20:08:28 +01:00
configure,*am,cosmetics: s/WANT_/BUILD_/
'BUILD_' is more common across the build files Change-Id: Id302dba2e9e567c186a9da1da0fba44517e85d07
This commit is contained in:
parent
895fd28f9b
commit
5d8985de47
@ -2,7 +2,7 @@ ACLOCAL_AMFLAGS = -I m4
|
|||||||
SUBDIRS = src imageio man
|
SUBDIRS = src imageio man
|
||||||
EXTRA_DIST = COPYING autogen.sh
|
EXTRA_DIST = COPYING autogen.sh
|
||||||
|
|
||||||
if WANT_EXTRAS
|
if BUILD_EXTRAS
|
||||||
SUBDIRS += extras
|
SUBDIRS += extras
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -722,7 +722,7 @@ AC_ARG_ENABLE([libwebpmux],
|
|||||||
AS_HELP_STRING([--enable-libwebpmux],
|
AS_HELP_STRING([--enable-libwebpmux],
|
||||||
[Build libwebpmux @<:@default=no@:>@]))
|
[Build libwebpmux @<:@default=no@:>@]))
|
||||||
AC_MSG_RESULT(${enable_libwebpmux-no})
|
AC_MSG_RESULT(${enable_libwebpmux-no})
|
||||||
AM_CONDITIONAL([WANT_MUX], [test "$enable_libwebpmux" = "yes"])
|
AM_CONDITIONAL([BUILD_MUX], [test "$enable_libwebpmux" = "yes"])
|
||||||
|
|
||||||
dnl === Check whether libwebpdemux should be built
|
dnl === Check whether libwebpdemux should be built
|
||||||
AC_MSG_CHECKING(whether libwebpdemux is to be built)
|
AC_MSG_CHECKING(whether libwebpdemux is to be built)
|
||||||
@ -731,7 +731,7 @@ AC_ARG_ENABLE([libwebpdemux],
|
|||||||
[Disable libwebpdemux @<:@default=no@:>@]),
|
[Disable libwebpdemux @<:@default=no@:>@]),
|
||||||
[], [enable_libwebpdemux=yes])
|
[], [enable_libwebpdemux=yes])
|
||||||
AC_MSG_RESULT(${enable_libwebpdemux-no})
|
AC_MSG_RESULT(${enable_libwebpdemux-no})
|
||||||
AM_CONDITIONAL([WANT_DEMUX], [test "$enable_libwebpdemux" = "yes"])
|
AM_CONDITIONAL([BUILD_DEMUX], [test "$enable_libwebpdemux" = "yes"])
|
||||||
|
|
||||||
dnl === Check whether decoder library should be built.
|
dnl === Check whether decoder library should be built.
|
||||||
AC_MSG_CHECKING(whether decoder library is to be built)
|
AC_MSG_CHECKING(whether decoder library is to be built)
|
||||||
@ -747,7 +747,7 @@ AC_ARG_ENABLE([libwebpextras],
|
|||||||
AS_HELP_STRING([--enable-libwebpextras],
|
AS_HELP_STRING([--enable-libwebpextras],
|
||||||
[Build libwebpextras @<:@default=no@:>@]))
|
[Build libwebpextras @<:@default=no@:>@]))
|
||||||
AC_MSG_RESULT(${enable_libwebpextras-no})
|
AC_MSG_RESULT(${enable_libwebpextras-no})
|
||||||
AM_CONDITIONAL([WANT_EXTRAS], [test "$enable_libwebpextras" = "yes"])
|
AM_CONDITIONAL([BUILD_EXTRAS], [test "$enable_libwebpextras" = "yes"])
|
||||||
|
|
||||||
dnl =========================
|
dnl =========================
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
AM_CPPFLAGS += -I$(top_builddir)/src -I$(top_srcdir)/src
|
AM_CPPFLAGS += -I$(top_builddir)/src -I$(top_srcdir)/src
|
||||||
|
|
||||||
bin_PROGRAMS =
|
bin_PROGRAMS =
|
||||||
if WANT_DEMUX
|
if BUILD_DEMUX
|
||||||
bin_PROGRAMS += dwebp cwebp
|
bin_PROGRAMS += dwebp cwebp
|
||||||
endif
|
endif
|
||||||
if BUILD_ANIMDIFF
|
if BUILD_ANIMDIFF
|
||||||
@ -13,7 +13,7 @@ endif
|
|||||||
if BUILD_IMG2WEBP
|
if BUILD_IMG2WEBP
|
||||||
bin_PROGRAMS += img2webp
|
bin_PROGRAMS += img2webp
|
||||||
endif
|
endif
|
||||||
if WANT_MUX
|
if BUILD_MUX
|
||||||
bin_PROGRAMS += webpmux
|
bin_PROGRAMS += webpmux
|
||||||
endif
|
endif
|
||||||
if BUILD_VWEBP
|
if BUILD_VWEBP
|
||||||
|
@ -14,7 +14,7 @@ libwebpextras_la_LIBADD = ../src/libwebp.la
|
|||||||
|
|
||||||
noinst_PROGRAMS =
|
noinst_PROGRAMS =
|
||||||
noinst_PROGRAMS += webp_quality
|
noinst_PROGRAMS += webp_quality
|
||||||
if WANT_DEMUX
|
if BUILD_DEMUX
|
||||||
noinst_PROGRAMS += get_disto
|
noinst_PROGRAMS += get_disto
|
||||||
endif
|
endif
|
||||||
if BUILD_VWEBP_SDL
|
if BUILD_VWEBP_SDL
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
AM_CPPFLAGS += -I$(top_builddir)/src -I$(top_srcdir)/src
|
AM_CPPFLAGS += -I$(top_builddir)/src -I$(top_srcdir)/src
|
||||||
noinst_LTLIBRARIES =
|
noinst_LTLIBRARIES =
|
||||||
noinst_LTLIBRARIES += libimageio_util.la
|
noinst_LTLIBRARIES += libimageio_util.la
|
||||||
if WANT_DEMUX
|
if BUILD_DEMUX
|
||||||
noinst_LTLIBRARIES += libimagedec.la
|
noinst_LTLIBRARIES += libimagedec.la
|
||||||
endif
|
endif
|
||||||
noinst_LTLIBRARIES += libimageenc.la
|
noinst_LTLIBRARIES += libimageenc.la
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
man_MANS = cwebp.1 dwebp.1
|
man_MANS = cwebp.1 dwebp.1
|
||||||
if WANT_MUX
|
if BUILD_MUX
|
||||||
man_MANS += webpmux.1
|
man_MANS += webpmux.1
|
||||||
endif
|
endif
|
||||||
if BUILD_GIF2WEBP
|
if BUILD_GIF2WEBP
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
# The mux and demux libraries depend on libwebp, thus the '.' to force
|
# The mux and demux libraries depend on libwebp, thus the '.' to force
|
||||||
# the build order so it's available to them.
|
# the build order so it's available to them.
|
||||||
SUBDIRS = dec enc dsp utils .
|
SUBDIRS = dec enc dsp utils .
|
||||||
if WANT_MUX
|
if BUILD_MUX
|
||||||
SUBDIRS += mux
|
SUBDIRS += mux
|
||||||
endif
|
endif
|
||||||
if WANT_DEMUX
|
if BUILD_DEMUX
|
||||||
SUBDIRS += demux
|
SUBDIRS += demux
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user