Skip to content

Latest commit

 

History

History
124 lines (110 loc) · 3.19 KB

configure.in

File metadata and controls

124 lines (110 loc) · 3.19 KB
 
Oct 21, 1999
Oct 21, 1999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
dnl Process this file with autoconf to produce a configure script.
AC_INIT(README)
dnl Set various version strings - taken gratefully from the GTk sources
# Making releases:
# MICRO_VERSION += 1;
# INTERFACE_AGE += 1;
# BINARY_AGE += 1;
# if any functions have been added, set INTERFACE_AGE to 0.
# if backwards compatibility has been broken,
# set BINARY_AGE and INTERFACE_AGE to 0.
MAJOR_VERSION=1
MINOR_VERSION=0
Feb 1, 2000
Feb 1, 2000
16
17
18
MICRO_VERSION=4
INTERFACE_AGE=2
BINARY_AGE=4
Oct 21, 1999
Oct 21, 1999
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
AC_SUBST(MAJOR_VERSION)
AC_SUBST(MINOR_VERSION)
AC_SUBST(MICRO_VERSION)
AC_SUBST(INTERFACE_AGE)
AC_SUBST(BINARY_AGE)
AC_SUBST(VERSION)
# libtool versioning
LT_RELEASE=$MAJOR_VERSION.$MINOR_VERSION
LT_CURRENT=`expr $MICRO_VERSION - $INTERFACE_AGE`
LT_REVISION=$INTERFACE_AGE
LT_AGE=`expr $BINARY_AGE - $INTERFACE_AGE`
AC_SUBST(LT_RELEASE)
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
dnl Setup for automake
Jan 18, 2000
Jan 18, 2000
40
AM_INIT_AUTOMAKE(SDL_mixer, $VERSION)
Oct 21, 1999
Oct 21, 1999
41
42
43
44
45
dnl Check for tools
AC_PROG_MAKE_SET
AC_PROG_CC
Dec 26, 1999
Dec 26, 1999
46
AC_LIBTOOL_WIN32_DLL
Oct 21, 1999
Oct 21, 1999
47
48
49
AM_PROG_LIBTOOL
AC_PROG_INSTALL
Oct 25, 1999
Oct 25, 1999
50
51
52
53
54
55
56
57
dnl The alpha architecture needs special flags for binary portability
AC_CANONICAL_TARGET
case "$target" in
alpha*-*-linux*)
CFLAGS="$CFLAGS -mcpu=ev4 -Wa,-mall"
;;
esac
Nov 23, 1999
Nov 23, 1999
58
dnl Check for SDL
Dec 21, 1999
Dec 21, 1999
59
SDL_VERSION=1.0.1
Nov 23, 1999
Nov 23, 1999
60
61
62
63
AM_PATH_SDL($SDL_VERSION,
:,
AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])
)
Oct 21, 1999
Oct 21, 1999
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
CFLAGS="$CFLAGS $SDL_CFLAGS"
LIBS="$LIBS $SDL_LIBS"
dnl Check command-line options
AC_ARG_ENABLE(music-cmd,
[ --enable-music-cmd support an external music player [default=yes]],
, enable_music_cmd=yes)
if test x$enable_music_cmd = xyes; then
CFLAGS="$CFLAGS -DCMD_MUSIC"
fi
AC_ARG_ENABLE(music-wave,
[ --enable-music-wave enable streaming WAVE music [default=yes]],
, enable_music_wave=yes)
if test x$enable_music_wave = xyes; then
CFLAGS="$CFLAGS -DWAV_MUSIC"
fi
AC_ARG_ENABLE(music-mod,
[ --enable-music-mod enable MOD music via mikmod [default=yes]],
, enable_music_mod=yes)
if test x$enable_music_mod = xyes; then
CFLAGS="$CFLAGS -DMOD_MUSIC -I\$(top_srcdir)/mikmod"
Oct 21, 1999
Oct 21, 1999
85
86
87
88
89
90
91
92
MUSIC_SUBDIRS="$MUSIC_SUBDIRS mikmod"
fi
AC_ARG_ENABLE(music-midi,
[ --enable-music-midi enable MIDI music via timidity [default=yes]],
, enable_music_midi=yes)
if test x$enable_music_midi = xyes; then
CFLAGS="$CFLAGS -DMID_MUSIC -I\$(top_srcdir)/timidity"
MUSIC_SUBDIRS="$MUSIC_SUBDIRS timidity"
Oct 21, 1999
Oct 21, 1999
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
fi
AC_ARG_ENABLE(music-mp3,
[ --enable-music-mp3 enable MP3 music via smpeg [default=yes]],
, enable_music_mp3=yes)
if test x$enable_music_mp3 = xyes; then
AC_MSG_CHECKING(for SMPEG headers and libraries)
have_smpeg=no
AC_TRY_COMPILE([
#include <smpeg/smpeg.h>
],[
],[
have_smpeg=yes
])
AC_MSG_RESULT($have_smpeg)
if test x$have_smpeg = xyes; then
CFLAGS="$CFLAGS -DMP3_MUSIC"
LIBS="$LIBS -lsmpeg"
fi
fi
Oct 21, 1999
Oct 21, 1999
113
114
115
116
117
dnl Add Makefile conditionals
AC_SUBST(MUSIC_SUBDIRS)
AM_CONDITIONAL(USE_MIKMOD, test x$enable_music_mod = xyes)
AM_CONDITIONAL(USE_TIMIDITY, test x$enable_music_midi = xyes)
Oct 21, 1999
Oct 21, 1999
118
119
120
121
122
# Finally create all the generated files
AC_OUTPUT([
Makefile
mikmod/Makefile
timidity/Makefile
Jan 20, 2000
Jan 20, 2000
123
SDL_mixer.spec
Oct 21, 1999
Oct 21, 1999
124
])