/[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 315 by schoenebeck, Fri Nov 26 19:29:05 2004 UTC revision 1953 by schoenebeck, Thu Jul 30 08:16:02 2009 UTC
# Line 1  Line 1 
1  AC_INIT(configure.in)  AC_INIT(configure.in)
 AM_CONFIG_HEADER(config.h)  
2    
3  AM_INIT_AUTOMAKE(libgig, 1.0.0, cuse@users.sourceforge.net)  #------------------------------------------------------------------------------------
4  AC_PROG_LIBTOOL  # Library's "official" release version:
5    
6    LIBGIG_RELEASE_MAJOR=3
7    LIBGIG_RELEASE_MINOR=3
8    LIBGIG_RELEASE_BUILD=0
9    
10  #------------------------------------------------------------------------------------  #------------------------------------------------------------------------------------
11  # Rules for library version information:  # 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 21  AC_PROG_LIBTOOL Line 24  AC_PROG_LIBTOOL
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  SHARED_VERSION_INFO="1:0:0"  LIBGIG_LT_CURRENT=10
28    LIBGIG_LT_REVISION=0
29    LIBGIG_LT_AGE=4
30    SHARED_VERSION_INFO="$LIBGIG_LT_CURRENT:$LIBGIG_LT_REVISION:$LIBGIG_LT_AGE"
31    
32    
 AC_C_BIGENDIAN  
   
33  AC_LANG_CPLUSPLUS  AC_LANG_CPLUSPLUS
34  AC_PROG_CXX  AC_PROG_CXX
35    AC_LIBTOOL_WIN32_DLL
36  AM_PROG_LIBTOOL  AM_PROG_LIBTOOL
37    
38    AC_C_BIGENDIAN
39    
40  AC_SUBST(SHLIB_VERSION_ARG)  AC_SUBST(SHLIB_VERSION_ARG)
41  AC_SUBST(SHARED_VERSION_INFO)  AC_SUBST(SHARED_VERSION_INFO)
42    AC_SUBST(LIBGIG_RELEASE_MAJOR)
43    AC_SUBST(LIBGIG_RELEASE_MINOR)
44    AC_SUBST(LIBGIG_RELEASE_BUILD)
45    
46    have_audio_file_lib="false"
47    
48  // check for presence of libsndfile  # check for presence of libsndfile
49  PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.2, ac_cv_sndfile=1, ac_cv_sndfile=0)  PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.2, ac_cv_sndfile=1, ac_cv_sndfile=0)
50    AM_CONDITIONAL(HAVE_SNDFILE, test $ac_cv_sndfile = "1")
51  AC_DEFINE_UNQUOTED([HAVE_SNDFILE],${ac_cv_sndfile}, [Set to 1 if you have libsndfile.])  AC_DEFINE_UNQUOTED([HAVE_SNDFILE],${ac_cv_sndfile}, [Set to 1 if you have libsndfile.])
52  AC_SUBST(SNDFILE_CFLAGS)  AC_SUBST(SNDFILE_CFLAGS)
53  AC_SUBST(SNDFILE_LIBS)  AC_SUBST(SNDFILE_LIBS)
54    if test "$ac_cv_sndfile" = "1"; then
55        have_audio_file_lib="true";
56    else
57        # no libsndfile? then check for presence of libaudiofile
58        PKG_CHECK_MODULES(AUDIOFILE, audiofile >= 0.2.3, ac_cv_audiofile=1, ac_cv_audiofile=0)
59        AC_DEFINE_UNQUOTED([HAVE_AUDIOFILE],${ac_cv_audiofile}, [Set to 1 if you have libaudiofile.])
60        AC_SUBST(AUDIOFILE_CFLAGS)
61        AC_SUBST(AUDIOFILE_LIBS)
62        if test "$ac_cv_audiofile" = "1"; then
63            have_audio_file_lib="true";
64        fi
65    fi
66    if test "$have_audio_file_lib" = "false"; then
67        echo "No audio file library found!"
68        echo "Sorry, you need either libsndfile or libaudiofile to compile libgig."
69        echo "This is needed for the gigextract utility to write audio files."
70        exit -1;
71    fi
72    
73    AC_CHECK_HEADERS(uuid/uuid.h)
74    AC_SEARCH_LIBS(uuid_generate, uuid)
75    AC_CHECK_FUNCS(uuid_generate CFUUIDCreate)
76    
77    case "$host" in
78        *mingw*|*cygwin*)
79            win32=yes
80            ;;
81        *)
82            win32=no
83            ;;
84    esac
85    AM_CONDITIONAL(WIN32, test "$win32" = "yes")
86    
87    if test "$ac_cv_func_uuid_generate" = no -a "$ac_cv_func_CFUUIDCreate" = no -a "$win32" = no; then
88       AC_MSG_WARN([No UUID generate function found.
89    *** libgig will not be able to create DLSIDs in DLS and gig files.
90    *** Install libuuid from e2fsprogs to solve this. Package might be called
91    *** uuid-dev, libext2fs2-devel or e2fsprogs-devel.])
92    fi
93    
94    AM_CONFIG_HEADER(config.h)
95    AM_INIT_AUTOMAKE(libgig, "$LIBGIG_RELEASE_MAJOR.$LIBGIG_RELEASE_MINOR.$LIBGIG_RELEASE_BUILD")
96    
97  AC_OUTPUT(Makefile doc/Makefile man/Makefile src/Makefile libgig.spec gig.pc Doxyfile)  AC_OUTPUT( \
98        Doxyfile \
99        gig.pc \
100        libgig.spec \
101        Makefile \
102        src/Makefile \
103        src/testcases/Makefile \
104        doc/Makefile \
105        man/Makefile \
106        man/dlsdump.1 \
107        man/gigdump.1 \
108        man/gigextract.1 \
109        man/rifftree.1 \
110        debian/Makefile \
111        osx/Makefile \
112        osx/libgig.xcodeproj/Makefile \
113        win32/Makefile \
114        win32/libgig.dev \
115    )

Legend:
Removed from v.315  
changed lines
  Added in v.1953

  ViewVC Help
Powered by ViewVC