-
Notifications
You must be signed in to change notification settings - Fork 14
/
configure.ac
719 lines (583 loc) · 21.9 KB
/
configure.ac
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
dnl ***************************************************************************
dnl configure.ac (Seq66)
dnl ---------------------------------------------------------------------------
dnl
dnl \file configure.ac
dnl \library Seq66
dnl \author Chris Ahlstrom
dnl \date 2018-11-09
dnl \update 2024-10-28
dnl \version $Revision$
dnl \license $XPC_SUITE_GPL_LICENSE$
dnl
dnl This script is for the Seq66 project, a repackaging and updating
dnl of sequencer64.
dnl
dnl Process this file with bootstrap (autoconf) to produce a configure
dnl script. Run "./bootstrap --help" for more information, or read the
dnl INSTALL file.
dnl
dnl ---------------------------------------------------------------------------
AC_PREREQ([2.72])
AC_REVISION($Revision: 0.99$)
AC_INIT([Seq66],[0.99.15],[[email protected]])
AC_CONFIG_AUX_DIR([aux-files])
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE([dist-bzip2])
AC_DEFINE(_GNU_SOURCE, 1, [gnu source])
AC_CONFIG_HEADERS([include/config.h])
export PKG_CONFIG=$(which pkg-config)
dnl Prepends "SEQ66_" to the macro definitions, for a better guarantee of
dnl avoiding naming conflicts in macros.
AX_PREFIX_CONFIG_H([include/seq66-config.h], [seq66])
dnl c/c++ configuration.
AC_PROG_CC(gcc clang llvm-gcc)
AC_PROG_CXX(g++ clang++ llvm-g++)
AC_PROG_CPP()
AC_PROG_CXXCPP()
dnl Important: see
dnl
dnl https://android.googlesource.com/toolchain/llvm/+/release_34/
dnl autoconf/configure.ac
dnl
dnl If CXX is Clang, check that it can find and parse C++ standard library
dnl headers. Note that space between 'include' and '(' is required.
dnl There's a broken regex in aclocal that otherwise will think that we call
dnl m4's include builtin. The linker flags are used with gcc, but not
dnl clang.
ac_linker_flag="-Wl,--copy-dt-needed-entries"
ac_clang_active="no"
if test "$CXX" = "clang++" ; then
AC_MSG_CHECKING([whether clang works])
AC_LANG_PUSH([C++])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <limits>
#if __has_include (<cxxabi.h>)
#include <cxxabi.h>
#endif
#if __has_include (<unwind.h>)
#include <unwind.h>
#endif
]])],
[
AC_MSG_RESULT([yes])
AC_DEFINE(CLANG_SUPPORT, 1, [Define if clang is active])
ac_linker_flag=""
ac_clang_active="yes"
],
[
AC_MSG_RESULT([no])
AC_MSG_ERROR([Compiler could not parse C++ headers. Use CC=c-compiler CXX=c++-compiler ./configure ...])
])
AC_LANG_POP([C++])
fi
LINKER_FLAGS=$ac_linker_flag
AC_SUBST([LINKER_FLAGS])
dnl 5.c. Mingw support. Missing, qmake support is more reliable at
dnl present.
dnl Note that the BUILD_XXXX macros "merely" select which subdirectories we
dnl descend into during the build.
ac_build_docs="no"
ac_build_windows="no"
ac_build_portmidi="no"
ac_build_qtmidi="yes"
ac_build_rtcli="no"
ac_build_rtmidi="yes"
ac_build_sessions="yes"
ac_build_testing="no"
ac_build_qt="yes"
dnl Test for CYGWIN/MSYS2; this macro is marked as obsolete, though:
dnl AC_CYGWIN. Instead, see AC_CANONICAL_HOST at the top of this file.
dnl It uses the host_os variable.
case $host_os in
*cygwin* | *msys* | windows*) ac_build_windows="yes";;
* ) ac_build_windows="no";;
esac
if test "$ac_build_windows" = "yes" ; then
ac_build_portmidi="yes"
ac_build_rtmidi="no"
ac_build_sessions="no"
fi
dnl Windows build not supported. qmake and mingw are used for Windows code.
dnl But we are trying to change that.
dnl New for autoconf 2.60, prevents spurious datarootdir warnings.
AC_DEFUN([AC_DATAROOTDIR_CHECKED])
dnl 1. Package version information. We define the name of the package, the
dnl name of the client application for display, and the version.
PACKAGE="seq66"
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
AC_SUBST([PACKAGE])
AC_DEFINE(APP_TYPE, ["qt5"], "Type of the Seq66 executable, qt/cli")
AC_DEFINE(APP_ENGINE, ["rtmidi"], "Seq66 MIDI engine, rtmidi/portmidi")
ac_build_os="'$(uname -srm)'"
dnl Get the value of /etc/issue.net and remove new lines. Note that
dnl the CLIENT_NAME macro is always "seq66" and is used as part of
dnl the installation sub-directories.
dnl
dnl Is there a way to do this for FreeBSD??? For now see seq66_features.cpp.
AC_DEFINE_UNQUOTED(
APP_BUILD_OS,
["$ac_build_os"],
"OS/kernel where build was done")
dnl AC_DEFINE_UNQUOTED(
dnl APP_BUILD_ISSUE,
dnl "[m4_normalize(esyscmd([cat /etc/issue.net]))]",
dnl "Distro of build")
dnl
dnl Let's try a more universal method.
AC_DEFINE_UNQUOTED(
APP_BUILD_ISSUE,
"[m4_normalize(esyscmd([uname -o]))]",
"Operating system of build")
AC_DEFINE(CLIENT_NAME, ["seq66"], "Name to display as client/port")
SEQ66_SUITE_NAME="SEQ66"
AC_SUBST([SEQ66_SUITE_NAME])
dnl Set up version information for this project.
SEQ66_API_MAJOR="0"
AC_SUBST([SEQ66_API_MAJOR])
SEQ66_API_MINOR="99"
AC_SUBST([SEQ66_API_MINOR])
SEQ66_API_PATCH="0"
AC_SUBST([SEQ66_API_PATCH])
dnl For version 1.0.0, we will reset the libtool version information.
SEQ66_LT_CURRENT="0"
AC_SUBST([SEQ66_LT_CURRENT])
SEQ66_LT_REVISION="0"
AC_SUBST([SEQ66_LT_REVISION])
SEQ66_LT_AGE="0"
AC_SUBST([SEQ66_LT_AGE])
SEQ66_LIBTOOL_VERSION="$SEQ66_LT_CURRENT:$SEQ66_LT_REVISION:$SEQ66_LT_AGE"
AC_SUBST([SEQ66_LIBTOOL_VERSION])
dnl 1.b. Set up the version strings. The primary version string of interest
dnl is SEQ66_API_VERSION.
SEQ66_API_VERSION="$SEQ66_API_MAJOR.$SEQ66_API_MINOR"
AC_DEFINE(API_VERSION, ["0.99"], [Seq66 API version])
AC_SUBST([API_VERSION])
dnl 1.c. Report the version information in the progress output.
AC_MSG_CHECKING(major version)
AC_MSG_RESULT($SEQ66_API_MAJOR)
AC_MSG_CHECKING(minor version)
AC_MSG_RESULT($SEQ66_API_MINOR)
AC_MSG_CHECKING(patchlevel)
AC_MSG_RESULT($SEQ66_API_PATCH)
dnl 1.d. Set up the suite name and current-project name.
SEQ66_PROJECT_NAME="SEQ66"
AC_SUBST([SEQ66_PROJECT_NAME])
dnl 2. Libtool
dnl
dnl Initialize libtool in the default manner, which turns on shared
dnl libraries if available, and enable static libraries if they do not conflict
dnl with shared libraries. Also sets the shell variable LIBTOOL_DEPS.
dnl The latest GNU documentation specifies version 2 of libtool.
LT_PREREQ([2.4.2])
LT_INIT
AC_SUBST([LIBTOOL_DEPS])
LT_RELEASE="$SEQ66_API_MAJOR.$SEQ66_API_MINOR"
AC_SUBST([LT_RELEASE])
LT_CURRENT="$SEQ66_API_MAJOR"
AC_SUBST([LT_CURRENT])
LT_REVISION="$SEQ66_API_MINOR"
AC_SUBST([LT_REVISION])
LT_AGE="$SEQ66_API_PATCH"
AC_SUBST([LT_AGE])
dnl 3. Set up expandable installation directory(ies).
seq66includedir="${includedir}/seq66-${SEQ66_API_VERSION}"
AC_SUBST(seq66includedir)
seq66libdir="${libdir}/seq66-${SEQ66_API_VERSION}"
AC_SUBST(seq66libdir)
seq66docdir="${datadir}/doc/seq66-${SEQ66_API_VERSION}"
AC_SUBST(seq66docdir)
seq66datadir="${datadir}/seq66-${SEQ66_API_VERSION}"
AC_SUBST(seq66datadir)
seq66pixdir="${datadir}/pixmaps/seq66-${SEQ66_API_VERSION}"
AC_SUBST(seq66pixdir)
dnl 4. Get external flags, if any.
CFLAGS="${CFLAGS} -I/usr/local/include "
CXXFLAGS="${CXXFLAGS} -I/usr/local/include "
LDFLAGS="${LDFLAGS} -L/usr/local/lib "
dnl Check for header files. Added more to support daemonization.
dnl
dnl m4_warn([obsolete],
dnl [Preprocessor macro STDC_HEADERS is obsolete.
dnl Except in unusual embedded environments, one can include all ISO C90
dnl headers unconditionally.])
dnl
dnl Autoupdate added the next two lines to ensure that your configure
dnl script's behavior did not change. They are probably safe to remove.
dnl In fact, they cause issues on Ubuntu (as opposed to Debian Sid).
dnl
dnl AC_CHECK_INCLUDES_DEFAULT
dnl AC_PROG_EGREP
AC_CHECK_HEADERS([getopt.h string.h limits.h])
AC_CHECK_HEADERS([stdarg.h stdio.h stddef.h stdlib.h string.h])
AC_CHECK_HEADERS([limits.h ctype.h sys/time.h time.h errno.h])
AC_CHECK_HEADERS([fcntl.h sys/stat.h sys/sysctl.h])
AC_CHECK_HEADERS([syslog.h unistd.h])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
dnl Doxygen support has been added back! However, it is disabled by default.
dnl Check for the presence of Doxygen. Not an error to be missing, but
dnl we don't want to try to build documentation if it is not present.
dnl See http://www.gnu.org/software/autoconf-archive/ax_prog_doxygen.html
dnl Note the building the documentation also requires graphviz to be installed.
AC_CHECK_PROGS([DOXYGEN], [doxygen])
if test -z "$DOXYGEN" ; then
AC_MSG_WARN([Doxygen not found, no developer docs will be built])
else
AC_ARG_ENABLE(docs,
[AS_HELP_STRING(--enable-docs, [Enable developer document support])],
[docs=$enableval],
[docs=no])
if test "$docs" != no ; then
ac_build_docs="yes"
AC_MSG_RESULT([Doxygen document build enabled])
AC_CHECK_PROGS([LATEX], [latex])
if test -z "$LATEX" ; then
AC_MSG_WARN([LaTeX not found, no docs will be built])
ac_build_docs="no"
fi
fi
fi
dnl Clear out the X11 flags for the case where we are cross-compiling
dnl for i586-mingw32 targets, under UNIX.
if test "$mingw" = "yes" ; then
X_CFLAGS=""
X_LIBS=""
fi
dnl JACK support, plus session and metadata support.
dnl JACK session support is now deprecated (circa 2020-10-26), but still the
dnl default for this option is 'yes'. JACK recommends using NSM instead! But
dnl Seq66 will support it for awhile yet.
dnl JACK metadata, seems to work, so now enabled by default.
PKG_CHECK_MODULES(JACK, jack >= 0.90.0, jack_found="yes", jack_found="no")
if test "$jack_found" = "yes" -a "$ac_build_windows" = "no" ; then
AC_ARG_ENABLE(jack,
[AS_HELP_STRING(--disable-jack, [Disable JACK support])],
[jack=$enableval],
[jack=yes])
AC_ARG_ENABLE(jack-session,
[AS_HELP_STRING(--disable-jack-session, [Disable JACK session])],
[jack_session=$enableval],
[jack_session=yes])
AC_ARG_ENABLE(jack-metadata,
[AS_HELP_STRING(--disable-jack-metadata, [Disable JACK metadata])],
[jack_metadata=$enableval],
[jack_metadata=yes])
if test "$jack" != "no" ; then
AC_DEFINE(JACK_SUPPORT, 1, [Define to enable JACK driver])
AC_SUBST(JACK_CFLAGS)
AC_SUBST(JACK_LIBS)
if test "$jack_session" != "no" ; then
AC_CHECK_HEADER(jack/session.h, jack_session_found="yes",
jack_session_found="no")
if test "$jack_session_found" = "yes" ; then
AC_DEFINE(JACK_SESSION, 1, [Define to enable JACK session])
AC_MSG_RESULT([JACK session support enabled]);
fi
fi
AC_MSG_RESULT([JACK support enabled])
AC_CHECK_HEADERS([jack/jack.h])
AC_CHECK_LIB([jack], [jack_get_version_string],
jack_get_version="yes", jack_get_version="no")
if test "$jack_get_version" = "yes" ; then
AC_DEFINE(JACK_GET_VERSION_STRING, 1, [Enable JACK version string])
AC_MSG_RESULT([JACK jack_get_version_string available]);
fi
if test "$jack_metadata" = "yes" ; then
AC_CHECK_HEADER(jack/metadata.h, jack_metadata="yes",
jack_metadata="no")
if test "$jack_metadata" = "yes" ; then
AC_DEFINE(JACK_METADATA, 1, [Define to enable JACK metadata])
AC_MSG_RESULT([JACK metadata support enabled]);
fi
fi
fi
else
AC_MSG_WARN([No JACK library, disabling JACK])
fi
dnl Port-refresh support. Far from ready for prime-time, but added for
dnl exploration and testing. Disabled by default.
AC_ARG_ENABLE(port-refresh,
[AS_HELP_STRING(--enable-port-refresh, [Enable JACK port refresh support])],
[port_refresh=$enableval],
[port_refresh=no])
if test "$port_refresh" != "no" ; then
AC_DEFINE(MIDI_PORT_REFRESH, 1, [Define to enable JACK port refresh])
AC_MSG_RESULT([JACK port refresh test code enabled])
else
AC_MSG_NOTICE([JACK port refresh not enabled])
fi
AC_SUBST(MIDI_PORT_REFRESH)
dnl LASH support has been deleted, this time for good. We will support only
dnl JACK Session and NSM. Enable NSM support. Now ready for prime time!
dnl Check for now-required LIBLO library, needed only for NSM support.
NSM_CFLAGS=
NSM_LIBS=
NSM_DEPS=
PKG_CHECK_MODULES([LIBLO], [liblo], [ac_liblo="yes"], [ac_liblo="no"])
if test "$ac_liblo" = "yes" ; then
AC_ARG_ENABLE(nsm,
AS_HELP_STRING([--disable-nsm], [Disable NSM support]),
[nsm=$enableval],
[nsm=yes])
AC_DEFINE(LIBLO_SUPPORT, 1, [Define if LIBLO library is available])
AC_SUBST(LIBLO_CFLAGS)
AC_SUBST(LIBLO_LIBS)
AC_MSG_RESULT([LIBLO support for NSM enabled]);
if test "$nsm" != "no" ; then
AC_DEFINE(NSM_SUPPORT, 1, [Define if NSM support is available])
NSM_CFLAGS="-I ../libsessions/include"
NSM_LIBS="-llo -L../libsessions/src/.libs/ -lsessions"
NSM_DEPS="../libsessions/src/.libs/libsessions.la"
AC_MSG_RESULT([Sessions/NSM support enabled]);
fi
else
AC_MSG_WARN([LIBLO dev package not found, required for NSM])
fi
AC_SUBST(NSM_CFLAGS)
AC_SUBST(NSM_LIBS)
AC_SUBST(NSM_DEPS)
dnl Can enable oth "CLI" and "rtmidi/qtsupport". The CLI version ignores
dnl the macros and fills in its values with functions from the
dnl xxx module.
AC_ARG_ENABLE(both,
[AS_HELP_STRING(--enable-both, [Enable Qt and command-line builds])],
[both=$enableval],
[both=no])
if test "$both" != "no" ; then
AC_MSG_RESULT([Both rtmidi Qt and command-line builds enabled]);
if test "$mingw" != "yes" ; then
ac_build_rtcli="yes"
ac_build_qtmidi="yes"
AM_PATH_ALSA(0.9.0)
fi
fi
dnl "rtmidi" support. This is now the default build for Seq66.
if test "$ac_build_windows" = "no" ; then
AC_ARG_ENABLE(rtmidi,
[AS_HELP_STRING(--disable-rtmidi, [Disable rtmidi MIDI engine])],
[rtmidi=$enableval],
[rtmidi=yes])
if test "$rtmidi" != "no" -o "$both" != "no" ; then
ac_build_rtmidi="yes"
AC_DEFINE(APP_NAME, ["qseq66"], [Names the JACK/ALSA version of application])
AC_DEFINE(APP_ENGINE, ["rtmidi"], [Names the MIDI engine of the application])
AC_DEFINE(CONFIG_NAME, ["qseq66"], [Configuration file name])
AC_DEFINE(ICON_NAME, ["qseq66"], [Canonical icon name for Freedesktop])
AC_DEFINE(RTMIDI_SUPPORT, 1, [Indicates the rtmidi engine is enabled])
AM_PATH_ALSA(0.9.0)
AC_MSG_RESULT([rtmidi engine build enabled]);
fi
fi
dnl "CLI" or "Command-line" support.
AC_ARG_ENABLE(cli,
[AS_HELP_STRING(--enable-cli, [Enable rtmidi command-line build])],
[cli=$enableval],
[cli=no])
if test "$cli" != "no" ; then
AC_MSG_RESULT([rtmidi command-line build enabled]);
AC_DEFINE(APP_NAME, ["seq66cli"], [Name of the CLI version of application])
AC_DEFINE(APP_CLI, [1], [Indicate the CLI version])
AC_DEFINE(APP_TYPE, ["cli"], [Name of the UI])
AC_DEFINE(APP_ENGINE, ["rtmidi"], [Name of the MIDI engine])
AC_DEFINE(CONFIG_NAME, ["seq66cli"], [Configuration file name])
AC_DEFINE(ICON_NAME, ["qseq66"], [Canonical icon name for Freedesktop])
if test "$mingw" != "yes" ; then
ac_build_rtcli="yes"
ac_build_qtmidi="no"
AC_DEFINE(RTMIDI_SUPPORT, 1, [Indicates that rtmidi is enabled])
AM_PATH_ALSA(0.9.0)
fi
ac_build_qt="no"
else
dnl "Qt" support. Enabled by default, and actually mandatory for this
dnl application if not built for the headless mode.
AC_ARG_ENABLE(qt,
[AS_HELP_STRING(--disable-qt, [Disable Qt5 user-interface])],
[ac_build_qt=$enableval],
[ac_build_qt=yes])
fi
dnl Will set the default to yes later. Will need to distinguish between rtmidi
dnl and portmidi builds.
if test "$ac_build_qt" != "no" ; then
AC_DEFINE(APP_NAME, ["qseq66"], [Name of the Qt/rtmidi application])
AC_DEFINE(APP_ENGINE, ["rtmidi"], [Name of the MIDI engine])
AC_DEFINE(APP_TYPE, ["qt5"], [Name of the UI of the application])
AC_DEFINE(CONFIG_NAME, ["qseq66"], [Configuration base file name])
AC_DEFINE(ICON_NAME, ["qseq66"], [Canonical icon name for Freedesktop])
if test "$ac_build_windows" != "yes" ; then
AM_PATH_ALSA(0.9.0)
fi
if test "$ac_build_windows" = "yes" ; then
AX_HAVE_QT
else
if test "$ac_clang_active" = "yes" ; then
AX_HAVE_QT_CLANG
else
AX_HAVE_QT_MIN
fi
fi
AC_MSG_RESULT([qt user-interface build enabled]);
fi
dnl portmidi support. Deprecated for Linux, but we still build it, for
dnl testing purposes. It needs the ALSA libraries to work, in Linux, but
dnl in Windows it uses the Windows MultiMedia API.
AC_ARG_ENABLE(portmidi,
[AS_HELP_STRING(--enable-portmidi, [Enable portmidi build)])],
[portmidi=$enableval],
[portmidi=no])
if test "$portmidi" != "no" ; then
ac_build_portmidi="yes"
ac_build_rtmidi="no"
AC_DEFINE(PORTMIDI_SUPPORT, 1, [Indicates if portmidi is enabled])
AC_DEFINE(APP_NAME, ["seq66portmidi"], [Name of this application])
AC_DEFINE(CONFIG_NAME, ["seq66portmidi"], [Configuration file name])
AC_DEFINE(ICON_NAME, ["qseq66"], [Canonical icon name for Freedesktop])
AM_PATH_ALSA(0.9.0)
AC_MSG_RESULT([Portmidi build enabled]);
else
AC_MSG_NOTICE([Portmidi build disabled]);
fi
AC_SUBST(APP_NAME)
AC_SUBST(APP_TYPE)
AC_SUBST(APP_ENGINE)
AC_SUBST(APP_BUILD_OS)
AC_SUBST(CLIENT_NAME)
AC_SUBST(CONFIG_NAME)
AC_SUBST(ICON_NAME)
AM_CONDITIONAL([BUILD_DOCS], [test "$ac_build_docs" = "yes"])
AM_CONDITIONAL([BUILD_PORTMIDI], [test "$ac_build_portmidi" = "yes"])
AM_CONDITIONAL([BUILD_QTMIDI], [test "$ac_build_qtmidi" = "yes"])
AM_CONDITIONAL([BUILD_RTCLI], [test "$ac_build_rtcli" = "yes"])
AM_CONDITIONAL([BUILD_RTMIDI], [test "$ac_build_rtmidi" = "yes"])
AM_CONDITIONAL([BUILD_SESSIONS], [test "$ac_build_sessions" = "yes"])
dnl 6.0 Top portion of the config.h/seq66-config.h header files. The
dnl seq66-config.h header file has "SEQ66_" prepended to these
dnl macros automatically.
AH_TOP(
#define VERSION_DATE_SHORT "2024-10-26"
#define API_VERSION "0.99"
#define VERSION "0.99.15"
)
dnl 7. Checks for build configuration.
dnl 7.a. Compiling with debugging, coverage, or profiling options.
dnl Implemented in m4/xpc_debug.m4.
dnl
dnl --enable-debug
dnl --enable-coverage
dnl --enable-profiling
AC_XPC_DEBUGGING
dnl 8. Set up other options in the compiler macros.
dnl
dnl -Wno-error=date-time breaks the build on KX Studio (gcc 4.8), removed.
dnl gcc 8 uncovers a warnings issue in libsigc++, so remove -Wextra for now,
dnl and add -Wno-parentheses. 2019-11-30: Add it back, to match qmake's use of
dnl equivalent -W option, to uncover more issues.
dnl
dnl m4/xpc_debug.m4 defines DBGFLAGS to enable debugging/coverage/profiling.
dnl m4/xpc_errorlog.m4 defines NOERRLOG. Currently not used.
dnl m4/xpc_thisptr.m4 defines NOTHISPTR. Currently not used.
WARNFLAGS="-Wall -Wextra -pedantic -Wno-parentheses $WARNINGS"
APIDEF="-DAPI_VERSION=\"$SEQ66_API_VERSION\""
SPEEDFLAGS="-ffast-math"
COMMONFLAGS="$WARNFLAGS -D_REENTRANT $APIDEF $DBGFLAGS"
WARNINGS_DISABLED="-Wno-unused-parameter -Wno-non-virtual-dtor"
dnl Check for MinGW. Workaround for libtool's DLL_EXPORT stupidity.
dnl AX_PTHREAD leaves PTHREADS_LIBS empty for gcc, and sets PTHREADS_CFLAGS
dnl to -pthread, which causes problems if we need -lpthread to appear in
dnl pkgconfig files.
dnl
dnl AX_PTHREAD
dnl
dnl That macro will cause output of just what tools are being used to build
dnl code: VERBCFLAGS="-v"
VERBCFLAGS=""
ac_gnuwin="yes"
case "$host_os" in
*cygwin*)
ac_gnuwin="yes"
AX_PTHREAD
;;
*mingw*)
ac_gnuwin="yes"
AC_MSG_NOTICE([Setting up MingW pthreads support])
CFLAGS="$CFLAGS -mthreads -pthread "
CPPFLAGS="-DPTW32_STATIC_LIB $CPPFLAGS "
CXXFLAGS="$CXXFLAGS -mthreads -pthread "
LDFLAGS="$LDFLAGS -mthreads -pthread "
AC_DEFINE(HAVE_PTHREAD,1,[Defined to POSIX threads for mingw])
;;
*)
AC_MSG_NOTICE([Normal pthreads support])
AC_MSG_CHECKING([Running normal PTHREAD test])
AX_PTHREAD
;;
esac
dnl Note the c++14 option. Also note that PROLDFLAGS comes from xpc_debug.m4.
dnl Trying out gnu++14 or gnu++1y (they don't work) instead, to see if we can
dnl eliminate the problem of debug linkage on some of our laptops.
dnl The warning disabling for clang does prevents the "clang-16: warning:
dnl optimization flag '-fno-fat-lto-objects' is not supported".
dnl Finally, after getting an std::sort() error in the triggers class under
dnl clang-16.0.6, we will force C++14.
if test "$ac_clang_active" = "yes" ; then
CFLAGS="$CFLAGS $COMMONFLAGS -Wno-ignored-optimization-argument"
else
CFLAGS="$CFLAGS $COMMONFLAGS"
fi
CXXFLAGS="$CFLAGS -std=c++14 -pipe -Wno-variadic-macros -Wno-deprecated-declarations"
LDFLAGS="$LDFLAGS $PROLDFLAGS"
AM_CONDITIONAL(GNU_WIN, test "$ac_gnuwin" = "yes")
dnl Try to fix the build flags; we enable RTMIDI by default, but have to
dnl disable it when ALSA or PortMIDI builds are specified. We have to
dnl use a trick to fool configure, which will strip out any bare #undef
dnl statement it sees. Don't like this one bit.
AH_BOTTOM(
#if defined SEQ66_PORTMIDI_SUPPORT
#/**/undef/**/ SEQ66_RTMIDI_SUPPORT
#endif
#if defined SEQ66_WINDOWS_SUPPORT
#/**/undef/**/ SEQ66_RTMIDI_SUPPORT
#endif
)
dnl Set up the Makefiles.
AC_CONFIG_FILES([
Makefile
libseq66/Makefile
libseq66/include/Makefile
libseq66/src/Makefile
libsessions/Makefile
libsessions/include/Makefile
libsessions/src/Makefile
m4/Makefile
man/Makefile
seq_portmidi/Makefile
seq_portmidi/include/Makefile
seq_portmidi/src/Makefile
seq_rtmidi/Makefile
seq_rtmidi/include/Makefile
seq_rtmidi/src/Makefile
seq_qt5/Makefile
seq_qt5/include/Makefile
seq_qt5/forms/Makefile
seq_qt5/src/Makefile
resources/pixmaps/Makefile
Seq66qt5/Makefile
Seq66cli/Makefile
data/Makefile
doc/Makefile
doc/latex/Makefile
doc/latex/tex/Makefile
])
dnl See AC_CONFIG_COMMANDS
AC_OUTPUT
AC_MSG_RESULT([$SEQ66_APP_NAME]);
cat << E_O_F
Run 'make' to build the application. Run 'make install' as root/sudo to install
the application. Do 'make dist', etc. to create gzip and other archives. To
build the PDF user manual, make sure TexLive and latexmk are installed.
Change to the doc/latex directory, and run make.
E_O_F
dnl configure.ac (seq66)
dnl
dnl vim: ts=4 sw=4 et ft=config