/[svn]/libgig/trunk/configure.ac
ViewVC logotype

Diff of /libgig/trunk/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 632 by schoenebeck, Sun Jun 12 13:06:57 2005 UTC revision 1186 by schoenebeck, Sun May 13 19:03:34 2007 UTC
# Line 1  Line 1 
1  AC_INIT(configure.in)  AC_INIT(configure.in)
2    
3  #------------------------------------------------------------------------------------  #------------------------------------------------------------------------------------
4  # Rules for library version information:  # Library's "official" release version:
5    
6    LIBGIG_RELEASE_MAJOR=3
7    LIBGIG_RELEASE_MINOR=1
8    LIBGIG_RELEASE_BUILD=1
9    
10    #------------------------------------------------------------------------------------
11    # The following is the libtool / shared library version. This doesn't have to
12    # do anything with the release version. It MUST conform to the following rules:
13  #  #
14  #  1. Start with version information of `0:0:0' for each libtool library.  #  1. Start with version information of `0:0:0' for each libtool library.
15  #  2. Update the version information only immediately before a public release of  #  2. Update the version information only immediately before a public release of
# Line 16  AC_INIT(configure.in) Line 24  AC_INIT(configure.in)
24  #  6. If any interfaces have been removed since the last public release, then set age  #  6. If any interfaces have been removed since the last public release, then set age
25  #     to 0.  #     to 0.
26    
27  LIBGIG_CURRENT=2  LIBGIG_LT_CURRENT=7
28  LIBGIG_REVISION=0  LIBGIG_LT_REVISION=0
29  LIBGIG_AGE=1  LIBGIG_LT_AGE=1
30  SHARED_VERSION_INFO="$LIBGIG_CURRENT:$LIBGIG_REVISION:$LIBGIG_AGE"  SHARED_VERSION_INFO="$LIBGIG_LT_CURRENT:$LIBGIG_LT_REVISION:$LIBGIG_LT_AGE"
31    
32    
33  AC_C_BIGENDIAN  AC_C_BIGENDIAN
# Line 30  AM_PROG_LIBTOOL Line 38  AM_PROG_LIBTOOL
38    
39  AC_SUBST(SHLIB_VERSION_ARG)  AC_SUBST(SHLIB_VERSION_ARG)
40  AC_SUBST(SHARED_VERSION_INFO)  AC_SUBST(SHARED_VERSION_INFO)
41    AC_SUBST(LIBGIG_RELEASE_MAJOR)
42    AC_SUBST(LIBGIG_RELEASE_MINOR)
43    AC_SUBST(LIBGIG_RELEASE_BUILD)
44    
45  have_audio_file_lib="false"  have_audio_file_lib="false"
46    
# Line 59  if test "$have_audio_file_lib" = "false" Line 70  if test "$have_audio_file_lib" = "false"
70  fi  fi
71    
72  AM_CONFIG_HEADER(config.h)  AM_CONFIG_HEADER(config.h)
73  AM_INIT_AUTOMAKE(libgig, "$LIBGIG_CURRENT.$LIBGIG_REVISION.$LIBGIG_AGE")  AM_INIT_AUTOMAKE(libgig, "$LIBGIG_RELEASE_MAJOR.$LIBGIG_RELEASE_MINOR.$LIBGIG_RELEASE_BUILD")
74    
75  AC_OUTPUT(Makefile doc/Makefile man/Makefile src/Makefile libgig.spec gig.pc Doxyfile man/dlsdump.1 man/gigdump.1 man/gigextract.1 man/rifftree.1)  AC_OUTPUT( \
76        Doxyfile \
77        gig.pc \
78        libgig.spec \
79        Makefile \
80        src/Makefile \
81        src/testcases/Makefile \
82        doc/Makefile \
83        man/Makefile \
84        man/dlsdump.1 \
85        man/gigdump.1 \
86        man/gigextract.1 \
87        man/rifftree.1 \
88        debian/Makefile \
89        osx/Makefile \
90        osx/libgig.xcodeproj/Makefile \
91        win32/Makefile \
92        win32/libgig.dev \
93    )

Legend:
Removed from v.632  
changed lines
  Added in v.1186

  ViewVC Help
Powered by ViewVC