summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDaniel Juyung Seo <seojuyung2@gmail.com>2012-12-08 18:21:34 +0000
committerDaniel Juyung Seo <seojuyung2@gmail.com>2012-12-08 18:21:34 +0000
commit9d68ba83ffd40e08be81a6a87af8f69d68428822 (patch)
treed5189a51fa748cdf4536932dd633254db778e697 /m4
parentc75c7a67d5c74dc466ca81e42929d69cbade3673 (diff)
downloadefl-9d68ba83ffd40e08be81a6a87af8f69d68428822.tar.gz
efl/m4 evas_dither.m4: Oops I didn't mean it and I've never added them. Explicit bug on git or svn.
SVN revision: 80531
Diffstat (limited to 'm4')
-rw-r--r--m4/evas_dither.m444
1 files changed, 0 insertions, 44 deletions
diff --git a/m4/evas_dither.m4 b/m4/evas_dither.m4
deleted file mode 100644
index f8dcca3b7b..0000000000
--- a/m4/evas_dither.m4
+++ /dev/null
@@ -1,44 +0,0 @@
-dnl Copyright (C) 2009 Vincent Torri <vtorri at univ-evry dot fr>
-dnl That code is public domain and can be freely used or copied.
-
-dnl Macro that enables dithering support is wanted.
-
-dnl Usage: EVAS_CHECK_DITHER(dither, description [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
-dnl The parameter 'dither' is the type of dithering.
-dnl The parameter 'description' is the description of the dithering.
-dnl Defines BUILD_[TYPEOFDITHERING]
-
-AC_DEFUN([EVAS_CHECK_DITHER],
-[
-m4_pushdef([UP], m4_translit([$1], [-a-z], [_A-Z]))dnl
-m4_pushdef([DOWN], m4_translit([$1], [-A-Z], [_a-z]))dnl
-
-AC_ARG_ENABLE([$1],
- AC_HELP_STRING([--enable-$1], [enable $2 @<:@default=disabled@:>@]),
- [
- if test "x${enableval}" = "xyes" ; then
- _efl_enable_dither_option_[]DOWN="yes"
- else
- _efl_enable_dither_option_[]DOWN="no"
- fi
- ],
- [_efl_enable_dither_option_[]DOWN="no"])
-
-AC_MSG_CHECKING(whether to build $2)
-AC_MSG_RESULT([${_efl_enable_dither_option_[]DOWN}])
-
-if test "x${_efl_enable_dither_option_[]DOWN}" = "xyes" ; then
- AC_DEFINE([BUILD_]UP[], [1], [define to 1 if you have the $2 support])
-fi
-
-if test "x${_efl_enable_dither_option_[]DOWN}" = "xyes" ; then
- m4_default([$3], [:])
-else
- m4_default([$4], [:])
-fi
-
-m4_popdef([UP])
-m4_popdef([DOWN])
-])
-
-dnl End of evas_dither.m4