gst-gmyth/m4/as-version.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 as-version.m4 0.1.0
renatofilho@610
     2
renatofilho@610
     3
dnl autostars m4 macro for versioning
renatofilho@610
     4
renatofilho@610
     5
dnl Thomas Vander Stichele <thomas at apestaart dot org>
renatofilho@610
     6
renatofilho@610
     7
dnl $Id: as-version.m4,v 1.1 2005/06/18 18:02:46 burgerman Exp $
renatofilho@610
     8
renatofilho@610
     9
dnl AS_VERSION(PACKAGE, PREFIX, MAJOR, MINOR, MICRO, NANO,
renatofilho@610
    10
dnl            ACTION-IF-NO-NANO, [ACTION-IF-NANO])
renatofilho@610
    11
renatofilho@610
    12
dnl example
renatofilho@610
    13
dnl AS_VERSION(gstreamer, GST_VERSION, 0, 3, 2,)
renatofilho@610
    14
dnl for a 0.3.2 release version
renatofilho@610
    15
renatofilho@610
    16
dnl this macro
renatofilho@610
    17
dnl - defines [$PREFIX]_MAJOR, MINOR and MICRO
renatofilho@610
    18
dnl - if NANO is empty, then we're in release mode, else in cvs/dev mode
renatofilho@610
    19
dnl - defines [$PREFIX], VERSION, and [$PREFIX]_RELEASE
renatofilho@610
    20
dnl - executes the relevant action
renatofilho@610
    21
dnl - AC_SUBST's PACKAGE, VERSION, [$PREFIX] and [$PREFIX]_RELEASE
renatofilho@610
    22
dnl   as well as the little ones
renatofilho@610
    23
dnl - doesn't call AM_INIT_AUTOMAKE anymore because it prevents
renatofilho@610
    24
dnl   maintainer mode from running ok
renatofilho@610
    25
dnl
renatofilho@610
    26
dnl don't forget to put #undef [$2] and [$2]_RELEASE in acconfig.h
renatofilho@610
    27
dnl if you use acconfig.h
renatofilho@610
    28
renatofilho@610
    29
AC_DEFUN([AS_VERSION],
renatofilho@610
    30
[
renatofilho@610
    31
  PACKAGE=[$1]
renatofilho@610
    32
  [$2]_MAJOR=[$3]
renatofilho@610
    33
  [$2]_MINOR=[$4]
renatofilho@610
    34
  [$2]_MICRO=[$5]
renatofilho@610
    35
  NANO=[$6]
renatofilho@610
    36
  [$2]_NANO=$NANO
renatofilho@610
    37
  if test "x$NANO" = "x" || test "x$NANO" = "x0";
renatofilho@610
    38
  then
renatofilho@610
    39
      AC_MSG_NOTICE(configuring [$1] for release)
renatofilho@610
    40
      VERSION=[$3].[$4].[$5]
renatofilho@610
    41
      [$2]_RELEASE=1
renatofilho@610
    42
      dnl execute action
renatofilho@610
    43
      ifelse([$7], , :, [$7])
renatofilho@610
    44
  else
renatofilho@610
    45
      AC_MSG_NOTICE(configuring [$1] for development with nano $NANO)
renatofilho@610
    46
      VERSION=[$3].[$4].[$5].$NANO
renatofilho@610
    47
      [$2]_RELEASE=0.`date +%Y%m%d.%H%M%S`
renatofilho@610
    48
      dnl execute action
renatofilho@610
    49
      ifelse([$8], , :, [$8])
renatofilho@610
    50
  fi
renatofilho@610
    51
renatofilho@610
    52
  [$2]=$VERSION
renatofilho@610
    53
  AC_DEFINE_UNQUOTED([$2], "$[$2]", [Define the version])
renatofilho@610
    54
  AC_SUBST([$2])
renatofilho@610
    55
  AC_DEFINE_UNQUOTED([$2]_RELEASE, "$[$2]_RELEASE", [Define the release version])
renatofilho@610
    56
  AC_SUBST([$2]_RELEASE)
renatofilho@610
    57
renatofilho@610
    58
  AC_SUBST([$2]_MAJOR)
renatofilho@610
    59
  AC_SUBST([$2]_MINOR)
renatofilho@610
    60
  AC_SUBST([$2]_MICRO)
renatofilho@610
    61
  AC_SUBST([$2]_NANO)
renatofilho@610
    62
  AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Define the package name])
renatofilho@610
    63
  AC_SUBST(PACKAGE)
renatofilho@610
    64
  AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Define the version])
renatofilho@610
    65
  AC_SUBST(VERSION)
renatofilho@610
    66
])
renatofilho@610
    67