1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
# Process this file with autoconf to produce a configure script.
AC_INIT(QmidiNet, 0.2.0, rncbc@rncbc.org, qmidinet)
AC_CONFIG_SRCDIR(src/qmidinet.cpp)
AC_CONFIG_HEADERS(src/config.h)
AC_CONFIG_FILES(Makefile qmidinet.spec src/src.pri src/qmidinet.desktop)
# Set default installation prefix.
AC_PREFIX_DEFAULT(/usr/local)
ac_prefix=$prefix
if test "x$ac_prefix" = "xNONE"; then
ac_prefix=$ac_default_prefix
fi
AC_SUBST(ac_prefix)
AC_DEFINE_UNQUOTED(CONFIG_PREFIX, ["$ac_prefix"], [Default installation prefix.])
# Enable debugging argument option.
AC_ARG_ENABLE(debug,
AC_HELP_STRING([--enable-debug], [enable debugging (default=no)]),
[ac_debug="$enableval"])
# Enable ALSA MIDI support option.
AC_ARG_ENABLE(alsa_midi,
AC_HELP_STRING([--enable-alsa-midi], [enable ALSA MIDI support (default=yes)]),
[ac_alsa_midi="$enableval"],
[ac_alsa_midi="yes"])
# Enable JACK MIDI support option.
AC_ARG_ENABLE(jack_midi,
AC_HELP_STRING([--enable-jack-midi], [enable JACK MIDI support (default=yes)]),
[ac_jack_midi="$enableval"],
[ac_jack_midi="yes"])
if test "x$ac_debug" = "xyes"; then
AC_DEFINE(CONFIG_DEBUG, 1, [Define if debugging is enabled.])
ac_debug="debug"
else
ac_debug="release"
fi
AC_SUBST(ac_debug)
# Enable Qt4/5 availability.
AC_ARG_ENABLE(qt4,
AC_HELP_STRING([--enable-qt4], [enable Qt4 build (default=yes)]),
[ac_qt4="$enableval"],
[ac_qt4="yes"])
AC_ARG_ENABLE(qt5,
AC_HELP_STRING([--enable-qt5], [enable Qt5 build (default=no)]),
[ac_qt5="$enableval"],
[ac_qt5="no"])
if test "x$ac_qt4" = "xno"; then
ac_qt5="yes"
fi
if test "x$ac_qt5" = "xyes"; then
ac_qt4="no"
fi
# Standard installation base dirs.
ac_with_paths="/usr /usr/local"
# Set for alternate Qt installation dir.
AC_ARG_WITH(qt,
AC_HELP_STRING([--with-qt=PATH], [use alternate Qt install path]),
[ac_with_paths="$ac_with_paths $withval"])
# Set for alternate ALSA installation dir.
AC_ARG_WITH(alsa,
AC_HELP_STRING([--with-alsa=PATH], [use alternate ALSA install path]),
[ac_with_paths="$ac_with_paths $withval"])
# Set for alternate JACK installation dir.
AC_ARG_WITH(jack,
AC_HELP_STRING([--with-jack=PATH], [use alternate JACK install path]),
[ac_with_paths="$ac_with_paths $withval"])
# Honor user specified flags.
ac_cflags=$CFLAGS
ac_cppflags=$CPPFLAGS
ac_ldflags=$LDFLAGS
# Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX
AC_PROG_CXXCPP
AC_PROG_GCC_TRADITIONAL
# Checks for languages.
AC_LANG_C
AC_LANG_CPLUSPLUS
# Check for proper flags.
ac_arch=`uname -m`
# Check for some a-la-debian alternatives...
ac_qtdirs="qt"
if test "x$ac_qt4" = "xyes"; then
ac_qtdirs="qt4 $ac_qtdirs"
fi
if test "x$ac_qt5" = "xyes"; then
ac_qtdirs="qt5 $ac_qtdirs"
fi
ac_topdirs="/usr/share /usr/lib"
if test "x$ac_arch" = "xx86_64"; then
CFLAGS="-fPIC $CFLAGS"
CPPFLAGS="-fPIC $CPPFLAGS"
ac_topdirs="$ac_topdirs /usr/lib64"
fi
for X in $ac_topdirs; do
for Y in $ac_qtdirs; do
if test -d $X/$Y/bin; then
ac_with_paths="$X/$Y $ac_with_paths"
fi
done
done
# Prepend alternate dependencies paths.
ac_path=$PATH
for X in $ac_with_paths; do
if test -d $X/bin; then
ac_path="$X/bin:$ac_path"
fi
# if test -x $X/qmake; then
# ac_path="$X:$ac_path"
# fi
if test -d $X/include; then
for Y in $ac_qtdirs; do
if test -d $X/include/$Y; then
CFLAGS="-I$X/include/$Y $CFLAGS"
CPPFLAGS="-I$X/include/$Y $CPPFLAGS"
ac_incpath="$X/include/$Y $ac_incpath"
fi
done
CFLAGS="-I$X/include $CFLAGS"
CPPFLAGS="-I$X/include $CPPFLAGS"
ac_incpath="$X/include $ac_incpath"
fi
if test "x$ac_arch" = "xx86_64" -a -d $X/lib64; then
LIBS="-L$X/lib64 $LIBS"
ac_libs="-L$X/lib64 $ac_libs"
fi
if test -d $X/lib; then
LIBS="-L$X/lib $LIBS"
ac_libs="-L$X/lib $ac_libs"
fi
done
# Check for proper Qt version.
AC_CACHE_CHECK([for Qt library version >= 4.4],
ac_cv_qtversion, [
AC_TRY_LINK([#include "QtCore/qglobal.h"], [
#if QT_VERSION < 0x040400
#error Qt library 4.4 or greater required.
#endif
], ac_cv_qtversion="yes", [
echo "no; Qt 4.4 or greater is required"
exit 1
])
])
# A common error message:
ac_errmsg="not found in current PATH. Maybe QT development environment isn't available (qt-devel)."
# Check for Qt qmake utility.
AC_PATH_PROG(ac_qmake, qmake, [no], $ac_path)
if test "x$ac_qmake" = "xno"; then
AC_MSG_ERROR([qmake $ac_errmsg])
fi
AC_SUBST(ac_qmake)
# Check for Qt moc utility.
AC_PATH_PROG(ac_moc, moc, [no], $ac_path)
if test "x$ac_moc" = "xno"; then
AC_MSG_ERROR([moc $ac_errmsg])
fi
AC_SUBST(ac_moc)
# Check for Qt uic utility.
AC_PATH_PROG(ac_uic, uic, [no], $ac_path)
if test "x$ac_uic" = "xno"; then
AC_MSG_ERROR([uic $ac_errmsg])
fi
AC_SUBST(ac_uic)
# Checks for libraries.
AC_CHECK_LIB(m, main)
AC_CHECK_LIB(X11, main)
AC_CHECK_LIB(Xext, main)
# Check for ALSA libraries.
if test "x$ac_alsa_midi" = "xyes"; then
AC_CHECK_LIB(asound, main, [ac_alsa_midi="yes"], [ac_alsa_midi="no"])
if test "x$ac_alsa_midi" = "xno"; then
AC_MSG_WARN([*** ALSA library not found.])
else
ac_libs="$ac_libs -lasound"
fi
fi
# Check for JACK libraries.
if test "x$ac_jack_midi" = "xyes"; then
AC_CHECK_LIB(jack, main, [ac_jack_midi="yes"], [ac_jack_midi="no"])
if test "x$ac_jack_midi" = "xno"; then
AC_MSG_WARN([*** JACK library not found.])
else
ac_libs="$ac_libs -ljack"
fi
fi
AC_SUBST(ac_libs)
# Checks for header files.
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/stat.h unistd.h signal.h)
# Check for ALSA headers.
if test "x$ac_alsa_midi" = "xyes"; then
AC_CHECK_HEADER(alsa/asoundlib.h, [ac_alsa_midi="yes"], [ac_alsa_midi="no"])
if test "x$ac_alsa_midi" = "xno"; then
AC_MSG_WARN([*** ALSA headers not found.])
else
AC_DEFINE(CONFIG_ALSA_MIDI, 1, [Define if ALSA MIDI support is enabled.])
fi
fi
# Check for JACK headers.
if test "x$ac_jack_midi" = "xyes"; then
AC_CHECK_HEADERS(jack/jack.h jack/midiport.h, [ac_jack_midi="yes"], [ac_jack_midi="no"])
if test "x$ac_jack_midi" = "xno"; then
AC_MSG_WARN([*** JACK headers not found.])
else
AC_DEFINE(CONFIG_JACK_MIDI, 1, [Define if JACK MIDI support is enabled.])
fi
fi
AC_SUBST(ac_incpath)
AC_SUBST(ac_cflags)
AC_SUBST(ac_cppflags)
AC_SUBST(ac_ldflags)
# Checks for typedefs, structures, and compiler characteristics.
# AC_C_CONST
# Finally produce a configure header file and the makefiles.
AC_OUTPUT
# make clean > /dev/null 2>&1
# Output summary message
echo
echo " $PACKAGE_NAME $PACKAGE_VERSION"
echo
echo " Build target . . . . . . . . . . . . . . . . . . .: $ac_debug"
echo
echo " ALSA MIDI support . . . . . . . . . . . . . . . .: $ac_alsa_midi"
echo " JACK MIDI support . . . . . . . . . . . . . . . .: $ac_jack_midi"
echo
echo " Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"
echo
echo "Now type 'make', followed by 'make install' as root."
echo
|