diff options
author | kaiv <kaiv@0c269be4-1314-0410-8aa9-9f06e86f4224> | 2002-10-29 17:53:18 +0000 |
---|---|---|
committer | kaiv <kaiv@0c269be4-1314-0410-8aa9-9f06e86f4224> | 2002-10-29 17:53:18 +0000 |
commit | c90412ef08908e8b4cbbddefb52c2823dada04b5 (patch) | |
tree | 57a2081b73209370662cc29ea7784698a5f449b1 /configure.in | |
parent | 19f7da54b6a629ba29df5b6f565fc33a22a013ad (diff) | |
download | jack1-c90412ef08908e8b4cbbddefb52c2823dada04b5.tar.gz |
- added jslist.h, a replacement for glib's linked list code
- replaced use of g_snprinf with snprintf (snprintf is a standard
POSIX/ANSI-C routine so there's no need to use glib here)
- removed all dependencies to glib from source code and makefiles
- added documentation of JACK versioning to configure.in
- incremented JACK version to 0.40.0
git-svn-id: svn+ssh://jackaudio.org/trunk/jack@256 0c269be4-1314-0410-8aa9-9f06e86f4224
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 44 |
1 files changed, 21 insertions, 23 deletions
diff --git a/configure.in b/configure.in index bb136dc..87587e0 100644 --- a/configure.in +++ b/configure.in @@ -3,10 +3,29 @@ AC_INIT(jackd/jackd.c) AC_CONFIG_AUX_DIR(.) +dnl --- +dnl HOWTO: updating the JACK version number +dnl +dnl major version = ask on jackit-devel :) +dnl minor version = incremented when any of the public or internal +dnl interfaces are changed +dnl micro version = incremented when implementation-only +dnl changes are made +dnl --- JACK_MAJOR_VERSION=0 -JACK_MINOR_VERSION=39 +JACK_MINOR_VERSION=40 JACK_MICRO_VERSION=0 +dnl --- +dnl HOWTO: updating the libjack interface version +dnl +dnl current = incremented whenever the public libjack API is changed +dnl revision = incremented when the libjack implementation is changed +dnl age = current libjack is both source and binary compatible with +dnl libjack interfaces current,current-1,...,current-age +dnl +dnl Note! see libtool documentation for detailed documentation +dnl --- JACK_API_CURRENT=0 JACK_API_REVISION=4 JACK_API_AGE=0 @@ -125,26 +144,7 @@ fi AC_SUBST(HTML_DIR) -# jack depends on alsa 0.9 and glib. some example apps depend on libsndfile and fltk. - -AM_PATH_GLIB(1.0.0, - [:], - [AC_MSG_ERROR([*** JACK requires GLib, but it does not appear to be installed])] -) - -# check for the presence of glib2 and build libjack-glib2 - - -PKG_CHECK_MODULES(GLIB2, glib-2.0 >= 2.0.0, - [ - HAVE_GLIB2="true" - ], - [ - HAVE_GLIB2="false" - ]) -AC_SUBST(GLIB2_LIBS) -AC_SUBST(GLIB2_CFLAGS) - +# jack depends on alsa 0.9. some example apps depend on libsndfile and fltk. AC_CHECK_LIB(asound,snd_pcm_drop, [ @@ -202,11 +202,9 @@ AM_CONDITIONAL(USE_CAPABILITIES, $USE_CAPABILITIES) AM_CONDITIONAL(STRIPPED_JACKD, $STRIPPED_JACKD) AM_CONDITIONAL(HAVE_ALSA, $HAVE_ALSA) AM_CONDITIONAL(HAVE_SOLARIS, $HAVE_SOLARIS) -AM_CONDITIONAL(HAVE_GLIB2, $HAVE_GLIB2) AC_OUTPUT( Makefile -jack-glib2.pc jack.pc jack.spec jack/Makefile |