Skip to content

Latest commit

 

History

History
150 lines (134 loc) · 4.04 KB

configure.in

File metadata and controls

150 lines (134 loc) · 4.04 KB
 
Oct 21, 1999
Oct 21, 1999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
Apr 4, 2001
Apr 4, 2001
15
MINOR_VERSION=2
Apr 28, 2001
Apr 28, 2001
16
17
18
MICRO_VERSION=1
INTERFACE_AGE=1
BINARY_AGE=1
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
Aug 10, 2000
Aug 10, 2000
42
43
44
45
dnl Detect the canonical host and target build environment
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
Oct 21, 1999
Oct 21, 1999
46
47
48
49
dnl Check for tools
AC_PROG_MAKE_SET
AC_PROG_CC
Dec 26, 1999
Dec 26, 1999
50
AC_LIBTOOL_WIN32_DLL
Oct 21, 1999
Oct 21, 1999
51
52
53
AM_PROG_LIBTOOL
AC_PROG_INSTALL
Oct 25, 1999
Oct 25, 1999
54
55
56
57
58
dnl The alpha architecture needs special flags for binary portability
case "$target" in
alpha*-*-linux*)
CFLAGS="$CFLAGS -mcpu=ev4 -Wa,-mall"
;;
Apr 5, 2001
Apr 5, 2001
59
60
61
*-*-beos*)
ac_default_prefix=/boot/develop/tools/gnupro
;;
Aug 10, 2000
Aug 10, 2000
62
63
64
65
66
*-*-cygwin* | *-*-mingw32*)
if test "$build" != "$target"; then # cross-compiling
ac_default_prefix=/usr/local/cross-tools/i386-mingw32msvc
fi
;;
Oct 25, 1999
Oct 25, 1999
67
68
esac
Nov 23, 1999
Nov 23, 1999
69
dnl Check for SDL
Apr 4, 2001
Apr 4, 2001
70
SDL_VERSION=1.2.0
Nov 23, 1999
Nov 23, 1999
71
72
73
74
AM_PATH_SDL($SDL_VERSION,
:,
AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])
)
Oct 21, 1999
Oct 21, 1999
75
76
77
CFLAGS="$CFLAGS $SDL_CFLAGS"
LIBS="$LIBS $SDL_LIBS"
May 8, 2000
May 8, 2000
78
79
80
81
dnl Flag for using SDL_RWops
dnl Matt Campbell (matt@campbellhome.dhs.org)
CFLAGS="$CFLAGS -DUSE_RWOPS"
Oct 21, 1999
Oct 21, 1999
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
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
100
101
102
103
104
105
106
107
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
108
fi
Jul 3, 2000
Jul 3, 2000
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
AC_ARG_ENABLE(music-ogg,
[ --enable-music-ogg enable Ogg Vorbis music [default=yes]],
, enable_music_ogg=yes)
if test x$enable_music_ogg = xyes; then
AC_MSG_CHECKING(for Ogg Vorbis headers and libraries)
have_vorbis=no
AC_TRY_COMPILE([
#include <vorbis/vorbisfile.h>
],[
],[
have_vorbis=yes
])
AC_MSG_RESULT($have_vorbis)
if test x$have_vorbis = xyes; then
CFLAGS="$CFLAGS -DOGG_MUSIC"
LIBS="$LIBS -lvorbisfile -lvorbis"
fi
fi
Oct 21, 1999
Oct 21, 1999
127
128
129
130
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
Apr 5, 2001
Apr 5, 2001
131
132
SMPEG_VERSION=0.4.3
AM_PATH_SMPEG($SMPEG_VERSION, have_smpeg=yes, have_smpeg=no)
Oct 21, 1999
Oct 21, 1999
133
if test x$have_smpeg = xyes; then
Apr 23, 2001
Apr 23, 2001
134
CFLAGS="$CFLAGS -DMP3_MUSIC $SMPEG_CFLAGS"
Apr 5, 2001
Apr 5, 2001
135
LIBS="$LIBS $SMPEG_LIBS"
Oct 21, 1999
Oct 21, 1999
136
137
138
fi
fi
Oct 21, 1999
Oct 21, 1999
139
140
141
142
143
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
144
145
146
147
148
# Finally create all the generated files
AC_OUTPUT([
Makefile
mikmod/Makefile
timidity/Makefile
Jan 20, 2000
Jan 20, 2000
149
SDL_mixer.spec
Oct 21, 1999
Oct 21, 1999
150
])