File: configure.ac

package info (click to toggle)
quickplot 0.8.6-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,544 kB
  • ctags: 1,019
  • sloc: cpp: 10,051; sh: 7,597; makefile: 176
file content (360 lines) | stat: -rw-r--r-- 8,889 bytes parent folder | download | duplicates (2)
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
# This file is for people developing quickplot. This file is used to
# generate many other files using the GNU autotools. You do this by
# running `./bootstrap'.  If you're not developing or hacking
# quickplot you likely don't want to run `./bootstrap' or
# `./cvsclean'.

# require autoconf version
AC_PREREQ(2.58)

##########################################################
############ Configure a release here ####################
##########################################################

# AC_INIT( PACKAGE, VERSION, PACKAGE_BUGREPORT, TARNAME)

AC_INIT([Quickplot],
 0.8.6,
 [Lance Arsenault <lanceman@users.sourceforge.net>],
 quickplot)

RELEASE_DATE="Thu Jan  6 20:26:45 EST 2005"
HOMEPAGE="http://quickplot.sourceforge.net/"


##########################################################
######## END: Configure a release here ####################
##########################################################


#AM_INIT_AUTOMAKE(option1 option2 ...)
AM_INIT_AUTOMAKE(dist-bzip2)

AM_CONFIG_HEADER(config.h)


# Checks for programs.
missing_dir=`cd $ac_aux_dir && pwd`
AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)


AC_CONFIG_SRCDIR([config.h.in])


AC_PROG_CXX
#AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
#AC_PROG_LN_S
AC_PROG_MAKE_SET
#AC_PROG_RANLIB

# `info autoconf' says use this order
# -- checks for types
# -- checks for structures
# -- checks for compiler characteristics
# -- checks for library functions
# -- checks for system services

##########################################################

ARCH="`uname`"

#These three we know so far
# Linux
# IRIX or IRIX64
# Darwin

case "${ARCH}" in

  Darwin)
    AC_DEFINE(QP_ARCH_DARWIN, [],
   [The OS or architecture which was output\
 from `uname' when configure ran.])
  ;;

  Linux)
  AC_DEFINE(QP_ARCH_LINUX, [],
   [The OS or architecture which was output\
 from `uname' when configure ran.])
  ;;

  # Hope to have a port to IRIX
  IRIX*)
  AC_DEFINE(QP_ARCH_IRIX, [],
   [The OS or architecture which was output\
 from `uname' when configure ran.])
  ;;


esac


##################################################
#     check for program pkg-config
##################################################


AC_CHECK_PROG(PKGCONFIG, pkg-config, [yes], [no])
if  test "$PKGCONFIG" = "no" ; then
  AC_MSG_ERROR([

  You need the program pkg-config in your PATH.
  See: http://www.freedesktop.org/software/pkgconfig/
  for more information.  Without this it's hard to say
  what else you need.

configure failed.
])
fi


#####################################################
#  Looking for packages using pkg-config
#####################################################

# will set later if we have a valid version of gtkmm
have_gtkmm=no

# will set later if we have a valid version of libsndfile
have_libsndfile=no


#########################################
#   check for package gtkmm
#########################################

gtkmm_need_version=2.4.5

echo -n "checking for gtkmm version >= $gtkmm_need_version ..."

GTKMM_PKG_NAME=gtkmm-2.4

# is gtkmm-2.4 there
if ! pkg-config --exists $GTKMM_PKG_NAME ; then
    AC_MSG_WARN([


  You need  gtkmm installed.  At least version $gtkmm_need_version
  The gtkmm home page is at http://www.gtkmm.org/

])

# is it at least version
elif ! pkg-config --atleast-version=$gtkmm_need_version $GTKMM_PKG_NAME ; then
   GTKMM_VERSION=$(pkg-config --modversion $GTKMM_PKG_NAME)
   AC_MSG_WARN([


  You have version $GTKMM_VERSION of gtkmm.
  You need at least version $gtkmm_need_version of gtkmm.
  The gtkmm home page is at http://www.gtkmm.org/

])
else
  GTKMM_VERSION=$(pkg-config --modversion $GTKMM_PKG_NAME)
  have_gtkmm=yes
  echo " yes"
fi


#########################################
#   check for package lib sndfile
#########################################

sndfile_need_version=1.0.5

echo -n "checking for lib sndfile version >= $sndfile_need_version ..."

# is it there
if ! pkg-config --exists sndfile ; then
    AC_MSG_NOTICE([


  The libsndfile library was not found.
  Quickplot can't read sound files without libsndfile.
  The lib sndfile home page is at http://www.mega-nerd.com/libsndfile/

])

# is it at least version
elif ! pkg-config --atleast-version=$sndfile_need_version sndfile ; then
   AC_MSG_WARN([


  You have version $SNDFILE_VERSION of libsndfile.
  You need at least version $sndfile_need_version of libsndfile.
  Quickplot can't read sound files without lib sndfile.
  The lib sndfile home page is at http://www.mega-nerd.com/libsndfile/

])
else
  have_libsndfile=yes
  echo " yes"
fi


#########################################
#  fail if gtkmm package is not found
#########################################

case "$have_gtkmm" in
    no)
  AC_MSG_ERROR([see WARNING(s) above: a usable\
 version of gtkmm was not found: configure failed.
])
    ;;
esac



#########################################
#  get library gtkmm compiler options
#########################################

GTKMM_CXXFLAGS=$(pkg-config --cflags $GTKMM_PKG_NAME)
AC_SUBST(GTKMM_CXXFLAGS)
GTKMM_LIBS=$(pkg-config --libs $GTKMM_PKG_NAME)
AC_SUBST(GTKMM_LIBS)



#########################################
#  get library sndfile compiler options
#########################################

AC_ARG_WITH([libsndfile],
      AS_HELP_STRING([--with-libsndfile],
      [link with the libsndfile library, http://www.mega-nerd.com/libsndfile/\
 (default is Yes if it is found, No if not)]),
      [use_libsndfile=$withval], [use_libsndfile=$have_libsndfile])


case "$use_libsndfile" in
    y* | Y* )
    use_libsndfile=yes
    ;;
    * )
    use_libsndfile=no
    ;;
esac


USE_LIBSNDFILE=0
SNDFILE_CFLAGS=""
SNDFILE_LIBS=""
SNDFILE_VERSION="none"

if test x${use_libsndfile} = xyes && test x${have_libsndfile} = xno; then
   AC_MSG_ERROR([
  A usable version of the libsndfile package was not found: configure failed.

   ])
fi

if test x${use_libsndfile} = xyes ; then
   # Using libsndfile with quickplot
   USE_LIBSNDFILE=1
   SNDFILE_CFLAGS=$(pkg-config --cflags sndfile)
   SNDFILE_LIBS=$(pkg-config --libs sndfile)
   SNDFILE_VERSION=$(pkg-config --modversion sndfile)
fi


if test "$USE_LIBSNDFILE" == "1"
then
  AC_DEFINE_UNQUOTED(USE_LIBSNDFILE, [],
   [If we are linking with the libsndfile\
 package USE_LIBSNDFILE will be defined.])
fi

AC_DEFINE_UNQUOTED(SNDFILE_VERSION, "$SNDFILE_VERSION", 
         [The version of libsndfile we're linking Quickplot with.])
AC_SUBST(SNDFILE_CFLAGS)
AC_SUBST(SNDFILE_LIBS)


########################################
# --with-html-dir=PATH
########################################

htmldir=${datadir}/doc/quickplot/html

AC_ARG_WITH([html-dir],
      AS_HELP_STRING([--with-html-dir=DIR],
      [directory to install html documents. \
The default is ${datadir}/doc/quickplot/html]),
      [htmldir=$withval], [htmldir=${datadir}/doc/quickplot/html])

AC_SUBST(htmldir)


#########################################
# extra variables
#########################################


# put RELEASE_DATE in Makefile
AC_SUBST(RELEASE_DATE)
# put RELEASE_DATE in config.h
AC_DEFINE_UNQUOTED(RELEASE_DATE, "$RELEASE_DATE",
 [The date on which the Quickplot (quickplot)\
 release was generated.])

# put HOMEPAGE in Makefile
AC_SUBST(HOMEPAGE)
# put HOMEPAGE in config.h
AC_DEFINE_UNQUOTED(HOMEPAGE, "$HOMEPAGE",
 [The Quickplot (quickplot) home-page.])

CONFIGURE_DATE="`date`"
# put CONFIGURE_DATE in the Makefiles
AC_SUBST(CONFIGURE_DATE)
# put CONFIGURE_DATE in config.h
AC_DEFINE_UNQUOTED(CONFIGURE_DATE, "$CONFIGURE_DATE",
 [The date on which the Quickplot (quickplot) was\
 configured by running the GNU Autotools autoconf configure script.])

AC_SUBST(TARNAME)


if test "${MAKE}" = "" ; then
  MAKE_ifset="Is not set, but that is likely OK."
else
  MAKE_ifset="${MAKE}"
fi

####################################################################


AC_CONFIG_FILES([
Makefile
])

AC_OUTPUT

# you can add spew here

AC_MSG_RESULT([
  ------------------------------------------------------
  done configuring: $PACKAGE_NAME  version $VERSION
  ------------------------------------------------------

     Linking with lib gtkmm version:      $GTKMM_VERSION
     Linking with libsndfile?:            $use_libsndfile
     Linking with libsndfile version:     $SNDFILE_VERSION
     C++ Compiler (CXX):                  $CXX
     C++ Compiler Flags (CXXFLAGS):       $CXXFLAGS
     C++ Linker Flags (LDFLAGS):          $LDFLAGS
     Linker (LD):                         $LD
     C/C++ preprocessor flags (CPPFLAGS): $CPPFLAGS
     Installer (INSTALL):                 $INSTALL
     Make (MAKE):                         $MAKE_ifset
     htmldir                              $htmldir
     Installation prefix (prefix):        $prefix

])