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

Diff of /gigedit/trunk/configure.ac

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

revision 1303 by persson, Sun Aug 26 09:29:52 2007 UTC revision 1356 by persson, Sat Sep 22 07:40:13 2007 UTC
# Line 1  Line 1 
1  dnl Process this file with autoconf to produce a configure script.  dnl Process this file with autoconf to produce a configure script.
2  AC_INIT(gigedit,0.0.3)  AC_INIT(gigedit,0.0.3)
3    AC_CONFIG_AUX_DIR([.])
4    
5  #------------------------------------------------------------------------------------  #------------------------------------------------------------------------------------
6  # The following is the libtool / shared library version. This doesn't have to  # The following is the libtool / shared library version. This doesn't have to
# Line 39  GETTEXT_PACKAGE=gigedit Line 40  GETTEXT_PACKAGE=gigedit
40  AC_SUBST([GETTEXT_PACKAGE])  AC_SUBST([GETTEXT_PACKAGE])
41  AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])  AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
42    
43    # the libgig header files need this
44    AC_C_BIGENDIAN
45    
46  AC_PROG_CXX  AC_PROG_CXX
47    
48  IT_PROG_INTLTOOL(0.35.0)  IT_PROG_INTLTOOL(0.35.0)
49  AM_GLIB_GNU_GETTEXT  AM_GLIB_GNU_GETTEXT
50    
51  PKG_CHECK_MODULES(GTKMM, gtkmm-2.4 >= 2.4.11 gthread-2.0)  PKG_CHECK_MODULES(GTKMM, gtkmm-2.4 >= 2.4.10 gthread-2.0)
52  PKG_CHECK_MODULES(GIG, gig >= 3.1.1)  PKG_CHECK_MODULES(GIG, gig >= 3.1.1)
53    
54  # check for presence of libsndfile  # check for presence of libsndfile
# Line 85  else Line 89  else
89          echo "for on-the-fly editing with LinuxSampler will be disabled."          echo "for on-the-fly editing with LinuxSampler will be disabled."
90      else      else
91          echo "${LINUXSAMPLER_PLUGIN_DIR} "          echo "${LINUXSAMPLER_PLUGIN_DIR} "
92            # convert absolute LS plugin dir into relative dir
93            # (see ch 27.10 of the automake manual,
94            #  "Installing to Hard-Coded Locations")
95            LINUXSAMPLER_PLUGIN_DIR=`echo "${LINUXSAMPLER_PLUGIN_DIR}" | sed 's/^.*\/lib\//\${libdir}\//g'`
96            echo "Relative plugin dir: ${LINUXSAMPLER_PLUGIN_DIR}"
97      fi      fi
98  fi  fi
99  AC_SUBST(LINUXSAMPLER_CFLAGS)  AC_SUBST(LINUXSAMPLER_CFLAGS)

Legend:
Removed from v.1303  
changed lines
  Added in v.1356

  ViewVC Help
Powered by ViewVC