gst-gmyth/m4/gst-feature.m4
author renatofilho
Tue May 01 16:36:58 2007 +0100 (2007-05-01)
branchtrunk
changeset 610 3cdc32e43041
permissions -rwxr-xr-x
[svn r616] added m4 macros
renatofilho@610
     1
dnl Perform a check for a feature for GStreamer
renatofilho@610
     2
dnl Richard Boulton <richard-alsa@tartarus.org>
renatofilho@610
     3
dnl Thomas Vander Stichele <thomas@apestaart.org> added useful stuff
renatofilho@610
     4
dnl Last modification: 25/06/2001
renatofilho@610
     5
dnl GST_CHECK_FEATURE(FEATURE-NAME, FEATURE-DESCRIPTION,
renatofilho@610
     6
dnl                   DEPENDENT-PLUGINS, TEST-FOR-FEATURE,
renatofilho@610
     7
dnl                   DISABLE-BY-DEFAULT, ACTION-IF-USE, ACTION-IF-NOTUSE)
renatofilho@610
     8
dnl
renatofilho@610
     9
dnl This macro adds a command line argument to enable the user to enable
renatofilho@610
    10
dnl or disable a feature, and if the feature is enabled, performs a supplied
renatofilho@610
    11
dnl test to check if the feature is available.
renatofilho@610
    12
dnl
renatofilho@610
    13
dnl The test should define HAVE_<FEATURE-NAME> to "yes" or "no" depending
renatofilho@610
    14
dnl on whether the feature is available.
renatofilho@610
    15
dnl
renatofilho@610
    16
dnl The macro will set USE_<FEATURE-NAME> to "yes" or "no" depending on
renatofilho@610
    17
dnl whether the feature is to be used.
renatofilho@610
    18
dnl Thomas changed this, so that when USE_<FEATURE-NAME> was already set
renatofilho@610
    19
dnl to no, then it stays that way.
renatofilho@610
    20
dnl
renatofilho@610
    21
dnl The macro will call AM_CONDITIONAL(USE_<<FEATURE-NAME>, ...) to allow
renatofilho@610
    22
dnl the feature to control what is built in Makefile.ams.  If you want
renatofilho@610
    23
dnl additional actions resulting from the test, you can add them with the
renatofilho@610
    24
dnl ACTION-IF-USE and ACTION-IF-NOTUSE parameters.
renatofilho@610
    25
dnl 
renatofilho@610
    26
dnl FEATURE-NAME        is the name of the feature, and should be in
renatofilho@610
    27
dnl                     purely upper case characters.
renatofilho@610
    28
dnl FEATURE-DESCRIPTION is used to describe the feature in help text for
renatofilho@610
    29
dnl                     the command line argument.
renatofilho@610
    30
dnl DEPENDENT-PLUGINS   lists any plugins which depend on this feature.
renatofilho@610
    31
dnl TEST-FOR-FEATURE    is a test which sets HAVE_<FEATURE-NAME> to "yes"
renatofilho@610
    32
dnl                     or "no" depending on whether the feature is
renatofilho@610
    33
dnl                     available.
renatofilho@610
    34
dnl DISABLE-BY-DEFAULT  if "disabled", the feature is disabled by default,
renatofilho@610
    35
dnl                     if any other value, the feature is enabled by default.
renatofilho@610
    36
dnl ACTION-IF-USE       any extra actions to perform if the feature is to be
renatofilho@610
    37
dnl                     used.
renatofilho@610
    38
dnl ACTION-IF-NOTUSE    any extra actions to perform if the feature is not to
renatofilho@610
    39
dnl                     be used.
renatofilho@610
    40
dnl
renatofilho@610
    41
dnl
renatofilho@610
    42
dnl thomas :
renatofilho@610
    43
dnl we also added a history.  
renatofilho@610
    44
dnl GST_PLUGINS_YES will contain all plugins to be built
renatofilho@610
    45
dnl                 that were checked through GST_CHECK_FEATURE
renatofilho@610
    46
dnl GST_PLUGINS_NO will contain those that won't be built
renatofilho@610
    47
renatofilho@610
    48
AC_DEFUN([GST_CHECK_FEATURE],
renatofilho@610
    49
AC_MSG_NOTICE(***)
renatofilho@610
    50
AC_MSG_NOTICE(*** checking plugin: [$3] ***)
renatofilho@610
    51
AC_MSG_NOTICE(***)
renatofilho@610
    52
[dnl
renatofilho@610
    53
builtin(define, [gst_endisable], ifelse($5, [disabled], [enable], [disable]))dnl
renatofilho@610
    54
dnl if it is set to NO, then don't even consider it for building
renatofilho@610
    55
NOUSE=
renatofilho@610
    56
if test "x$USE_[$1]" = "xno"; then
renatofilho@610
    57
  NOUSE="yes"
renatofilho@610
    58
fi
renatofilho@610
    59
AC_ARG_ENABLE(translit([$1], A-Z, a-z),
renatofilho@610
    60
  [  ]builtin(format, --%-26s gst_endisable %s, gst_endisable-translit([$1], A-Z, a-z), [$2]ifelse([$3],,,: [$3])),
renatofilho@610
    61
  [ case "${enableval}" in
renatofilho@610
    62
      yes) USE_[$1]=yes;;
renatofilho@610
    63
      no) USE_[$1]=no;;
renatofilho@610
    64
      *) AC_MSG_ERROR(bad value ${enableval} for --enable-translit([$1], A-Z, a-z)) ;;
renatofilho@610
    65
    esac],
renatofilho@610
    66
  [ USE_$1=]ifelse($5, [disabled], [no], [yes]))           dnl DEFAULT
renatofilho@610
    67
renatofilho@610
    68
dnl *** set it back to no if it was preset to no
renatofilho@610
    69
if test "x$NOUSE" = "xyes"; then
renatofilho@610
    70
  USE_[$1]="no"
renatofilho@610
    71
  AC_MSG_WARN(*** $3 pre-configured not to be built)
renatofilho@610
    72
fi
renatofilho@610
    73
NOUSE=
renatofilho@610
    74
renatofilho@610
    75
dnl *** If it's enabled
renatofilho@610
    76
renatofilho@610
    77
if test x$USE_[$1] = xyes; then
renatofilho@610
    78
  dnl save compile variables before the test
renatofilho@610
    79
renatofilho@610
    80
  gst_check_save_LIBS=$LIBS
renatofilho@610
    81
  gst_check_save_LDFLAGS=$LDFLAGS
renatofilho@610
    82
  gst_check_save_CFLAGS=$CFLAGS
renatofilho@610
    83
  gst_check_save_CPPFLAGS=$CPPFLAGS
renatofilho@610
    84
  gst_check_save_CXXFLAGS=$CXXFLAGS
renatofilho@610
    85
renatofilho@610
    86
  HAVE_[$1]=no
renatofilho@610
    87
  dnl TEST_FOR_FEATURE
renatofilho@610
    88
  $4
renatofilho@610
    89
renatofilho@610
    90
  LIBS=$gst_check_save_LIBS
renatofilho@610
    91
  LDFLAGS=$gst_check_save_LDFLAGS
renatofilho@610
    92
  CFLAGS=$gst_check_save_CFLAGS
renatofilho@610
    93
  CPPFLAGS=$gst_check_save_CPPFLAGS
renatofilho@610
    94
  CXXFLAGS=$gst_check_save_CXXFLAGS
renatofilho@610
    95
renatofilho@610
    96
  dnl If it isn't found, unset USE_[$1]
renatofilho@610
    97
  if test x$HAVE_[$1] = xno; then
renatofilho@610
    98
    USE_[$1]=no
renatofilho@610
    99
  fi
renatofilho@610
   100
fi
renatofilho@610
   101
dnl *** Warn if it's disabled or not found
renatofilho@610
   102
if test x$USE_[$1] = xyes; then
renatofilho@610
   103
  ifelse([$6], , :, [$6])
renatofilho@610
   104
  if test "x$3" != "x"; then
renatofilho@610
   105
    GST_PLUGINS_YES="\t[$3]\n$GST_PLUGINS_YES"
renatofilho@610
   106
  fi
renatofilho@610
   107
  AC_DEFINE(HAVE_[$1], , [support for features: $3])
renatofilho@610
   108
else
renatofilho@610
   109
  ifelse([$3], , :, [AC_MSG_NOTICE(*** These plugins will not be built: [$3])])
renatofilho@610
   110
  if test "x$3" != "x"; then
renatofilho@610
   111
    GST_PLUGINS_NO="\t[$3]\n$GST_PLUGINS_NO"
renatofilho@610
   112
  fi
renatofilho@610
   113
  ifelse([$7], , :, [$7])
renatofilho@610
   114
fi
renatofilho@610
   115
dnl *** Define the conditional as appropriate
renatofilho@610
   116
AM_CONDITIONAL(USE_[$1], test x$USE_[$1] = xyes)
renatofilho@610
   117
])
renatofilho@610
   118
renatofilho@610
   119
dnl Use a -config program which accepts --cflags and --libs parameters
renatofilho@610
   120
dnl to set *_CFLAGS and *_LIBS and check existence of a feature.
renatofilho@610
   121
dnl Richard Boulton <richard-alsa@tartarus.org>
renatofilho@610
   122
dnl Last modification: 26/06/2001
renatofilho@610
   123
dnl GST_CHECK_CONFIGPROG(FEATURE-NAME, CONFIG-PROG-FILENAME, MODULES)
renatofilho@610
   124
dnl
renatofilho@610
   125
dnl This check was written for GStreamer: it should be renamed and checked
renatofilho@610
   126
dnl for portability if you decide to use it elsewhere.
renatofilho@610
   127
dnl
renatofilho@610
   128
AC_DEFUN([GST_CHECK_CONFIGPROG],
renatofilho@610
   129
[
renatofilho@610
   130
  AC_PATH_PROG([$1]_CONFIG, [$2], no)
renatofilho@610
   131
  if test x$[$1]_CONFIG = xno; then
renatofilho@610
   132
    [$1]_LIBS=
renatofilho@610
   133
    [$1]_CFLAGS=
renatofilho@610
   134
    HAVE_[$1]=no
renatofilho@610
   135
  else
renatofilho@610
   136
    if [$2] --plugin-libs [$3] &> /dev/null; then
renatofilho@610
   137
      [$1]_LIBS=`[$2] --plugin-libs [$3]`
renatofilho@610
   138
    else
renatofilho@610
   139
      [$1]_LIBS=`[$2] --libs [$3]`
renatofilho@610
   140
    fi
renatofilho@610
   141
    [$1]_CFLAGS=`[$2] --cflags [$3]`
renatofilho@610
   142
    HAVE_[$1]=yes
renatofilho@610
   143
  fi
renatofilho@610
   144
  AC_SUBST([$1]_LIBS)
renatofilho@610
   145
  AC_SUBST([$1]_CFLAGS)
renatofilho@610
   146
])
renatofilho@610
   147
renatofilho@610
   148
dnl Use AC_CHECK_LIB and AC_CHECK_HEADER to do both tests at once
renatofilho@610
   149
dnl sets HAVE_module if we have it
renatofilho@610
   150
dnl Richard Boulton <richard-alsa@tartarus.org>
renatofilho@610
   151
dnl Last modification: 26/06/2001
renatofilho@610
   152
dnl GST_CHECK_LIBHEADER(FEATURE-NAME, LIB NAME, LIB FUNCTION, EXTRA LD FLAGS, 
renatofilho@610
   153
dnl                     HEADER NAME, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
renatofilho@610
   154
dnl
renatofilho@610
   155
dnl This check was written for GStreamer: it should be renamed and checked
renatofilho@610
   156
dnl for portability if you decide to use it elsewhere.
renatofilho@610
   157
dnl
renatofilho@610
   158
AC_DEFUN([GST_CHECK_LIBHEADER],
renatofilho@610
   159
[
renatofilho@610
   160
  AC_CHECK_LIB([$2], [$3], HAVE_[$1]=yes, HAVE_[$1]=no,[$4])
renatofilho@610
   161
  if test "x$HAVE_[$1]" = "xyes"; then
renatofilho@610
   162
    AC_CHECK_HEADER([$5], :, HAVE_[$1]=no)
renatofilho@610
   163
    if test "x$HAVE_[$1]" = "xyes"; then
renatofilho@610
   164
      dnl execute what needs to be
renatofilho@610
   165
      ifelse([$6], , :, [$6])
renatofilho@610
   166
    else
renatofilho@610
   167
      ifelse([$7], , :, [$7])
renatofilho@610
   168
    fi
renatofilho@610
   169
  else
renatofilho@610
   170
    ifelse([$7], , :, [$7])
renatofilho@610
   171
  fi
renatofilho@610
   172
  AC_SUBST(HAVE_[$1])
renatofilho@610
   173
]
renatofilho@610
   174
)
renatofilho@610
   175
renatofilho@610
   176
dnl 2004-02-14 Thomas - changed to get set properly and use proper output
renatofilho@610
   177
dnl 2003-06-27 Benjamin Otte - changed to make this work with gstconfig.h
renatofilho@610
   178
dnl
renatofilho@610
   179
dnl Add a subsystem --disable flag and all the necessary symbols and substitions
renatofilho@610
   180
dnl
renatofilho@610
   181
dnl GST_CHECK_SUBSYSTEM_DISABLE(SYSNAME, [subsystem name])
renatofilho@610
   182
dnl
renatofilho@610
   183
AC_DEFUN([GST_CHECK_SUBSYSTEM_DISABLE],
renatofilho@610
   184
[
renatofilho@610
   185
  dnl this define will replace each literal subsys_def occurrence with
renatofilho@610
   186
  dnl the lowercase hyphen-separated subsystem
renatofilho@610
   187
  dnl e.g. if $1 is GST_DEBUG then subsys_def will be a macro with gst-debug
renatofilho@610
   188
  define([subsys_def],translit([$1], _A-Z, -a-z))
renatofilho@610
   189
renatofilho@610
   190
  AC_ARG_ENABLE(subsys_def, 
renatofilho@610
   191
    AC_HELP_STRING(--disable-subsys_def, [disable $2]),
renatofilho@610
   192
    [
renatofilho@610
   193
      case "${enableval}" in
renatofilho@610
   194
        yes) GST_DISABLE_[$1]=no ;;
renatofilho@610
   195
        no) GST_DISABLE_[$1]=yes ;;
renatofilho@610
   196
        *) AC_MSG_ERROR([bad value ${enableval} for --enable-subsys_def]) ;;
renatofilho@610
   197
       esac
renatofilho@610
   198
    ],
renatofilho@610
   199
    [GST_DISABLE_[$1]=no]) dnl Default value
renatofilho@610
   200
renatofilho@610
   201
  if test x$GST_DISABLE_[$1] = xyes; then
renatofilho@610
   202
    AC_MSG_NOTICE([disabled subsystem [$2]])
renatofilho@610
   203
    GST_DISABLE_[$1]_DEFINE="#define GST_DISABLE_$1 1" 
renatofilho@610
   204
  else
renatofilho@610
   205
    GST_DISABLE_[$1]_DEFINE="/* #undef GST_DISABLE_$1 */"
renatofilho@610
   206
  fi
renatofilho@610
   207
  AC_SUBST(GST_DISABLE_[$1]_DEFINE)
renatofilho@610
   208
  undefine([subsys_def])
renatofilho@610
   209
])
renatofilho@610
   210
renatofilho@610
   211