/[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 1123 by schoenebeck, Sat Mar 24 18:20:09 2007 UTC revision 1209 by persson, Sun May 27 13:54:24 2007 UTC
# Line 38  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 66  if test "$have_audio_file_lib" = "false" Line 69  if test "$have_audio_file_lib" = "false"
69      exit -1;      exit -1;
70  fi  fi
71    
72    AC_CHECK_HEADERS(uuid/uuid.h)
73    AC_SEARCH_LIBS(uuid_generate, uuid)
74    AC_CHECK_FUNCS(uuid_generate CFUUIDCreate)
75    
76    if test "$ac_cv_func_uuid_generate" = no -a "$ac_cv_func_CFUUIDCreate" = no; then
77       AC_MSG_WARN([No UUID generate function found.
78    *** libgig will not be able to create DLSIDs in DLS and gig files.
79    *** Install libuuid from e2fsprogs to solve this. Package might be called
80    *** uuid-dev, libext2fs2-devel or e2fsprogs-devel.])
81    fi
82    
83  AM_CONFIG_HEADER(config.h)  AM_CONFIG_HEADER(config.h)
84  AM_INIT_AUTOMAKE(libgig, "$LIBGIG_RELEASE_MAJOR.$LIBGIG_RELEASE_MINOR.$LIBGIG_RELEASE_BUILD")  AM_INIT_AUTOMAKE(libgig, "$LIBGIG_RELEASE_MAJOR.$LIBGIG_RELEASE_MINOR.$LIBGIG_RELEASE_BUILD")
85    
86  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 debian/Makefile src/testcases/Makefile win32/Makefile)  AC_OUTPUT( \
87        Doxyfile \
88        gig.pc \
89        libgig.spec \
90        Makefile \
91        src/Makefile \
92        src/testcases/Makefile \
93        doc/Makefile \
94        man/Makefile \
95        man/dlsdump.1 \
96        man/gigdump.1 \
97        man/gigextract.1 \
98        man/rifftree.1 \
99        debian/Makefile \
100        osx/Makefile \
101        osx/libgig.xcodeproj/Makefile \
102        win32/Makefile \
103        win32/libgig.dev \
104    )

Legend:
Removed from v.1123  
changed lines
  Added in v.1209

  ViewVC Help
Powered by ViewVC