-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
704 lines (601 loc) · 24.5 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
# Process this file with autoconf to produce the HMMER3 configure script.
#
# HMMER configures Easel in addition to itself, so this is
# synchronized with Easel's configure script. Saves having to do a
# separate ./configure in Easel, but everything in Easel's configure
# script must also appear here.
#
# reminders to save re-reading autoconf manual for the n'th time:
# output variables:
# - defined here as normal shell variables, e.g. FOO="my string"
# - made into output variables by calling AC_SUBST(FOO)
# - @FOO@ in an output file is substituted
# - output files assigned w/ AC_CONFIG_FILES; e.g. Makefile.in
#
# C preprocessor symbols:
# - defined here by calling AC_DEFINE(FOO) or AC_DEFINE(FOO, [42])
# - #undef FOO in a config file becomes #define FOO or #define FOO 42
# - config files assigned w/ AC_CONFIG_HEADERS; e.g. p7_config.h.in
#
# shell variables:
# - defined as usual, e.g. esl_var=no
# - use within scope of the ./configure script
#
# Contents:
# 1. autoconf requirements
# 2. AC_INIT
# 3. info on the package
# 4. process ./configure command line
# 5. checks for programs, including ${CC}, ${CFLAGS}
# 6. checks for libraries
# 7. checks for header files
# 8. checks for types
# 9. checks for structures
# 10. checks for compiler characteristics
# 11. checks for library functions
# 12. checks for system services
# 13. AC_CONFIG_FILES
# 14. AC_OUTPUT
#
# This obeys "standard configure.ac layout" according to autoconf manual.
#
# To update config.guess and config.sub from GNU:
# wget -O config.guess 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD'
# wget -O config.sub 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD'
#
# Use full 3-arg form of AC_DEFINE() macros. autoheader chokes if you
# don't. We don't use autoheader (we only use autoconf, out of the
# GNU build tools, to limit complexity) but some packagers do, such
# as Debian.
################################################################
# 1. autoconf requirements
################################################################
# Autoconf 2.61 (circa 2006) has a bug in AC_FUNC_FSEEKO; don't use it.
# 2.63 was released in 2008.
AC_PREREQ(2.63)
# Our extra macros are with Easel, in easel/m4.
# It's sort of standard to expect them in m4/, don't
# be confused that they're down in easel.
#
m4_include([easel/m4/ax_gcc_func_attribute.m4])
m4_include([easel/m4/esl_sse.m4])
m4_include([easel/m4/esl_vmx.m4])
m4_include([easel/m4/ax_prog_cc_mpi.m4])
m4_include([easel/m4/ax_pthread.m4])
m4_include([easel/m4/esl_pic_flags.m4])
################################################################
# 2. AC_INIT
################################################################
AC_INIT(HMMER, 3.3.2, [email protected], hmmer)
AC_MSG_NOTICE([Configuring HMMER3 for your system.])
# remember if the user is overriding CFLAGS
esl_cflags_env_set=no
if test x"$CFLAGS" != x; then
esl_cflags_env_set=yes
fi
################################################################
# 3. Info on the package
################################################################
#
# AC_INIT args set these output variables and preprocessor symbols:
# PACKAGE_NAME <package> e.g. "HMMER"
# PACKAGE_VERSION <version> e.g. "3.2"
# PACKAGE_BUGREPORT <bug-report> e.g. "[email protected]"
# PACKAGE_TARNAME <tarname> e.g. "hmmer"
# From them, AC_INIT automatically derives one more:
# PACKAGE_STRING <package> <version>, e.g. "HMMER 3.2"
# and we define additional output variables of our own:
# HMMER_DATE release date: e.g. "August 2017"
# HMMER_COPYRIGHT one-line copyright string
# HMMER_LICENSE one-line license string
# HMMER_VERSION copy of version code, e.g. "3.2"
# HMMER_URL URL home for HMMER.
# And we have to define the relevant package variables for Easel as well.
#
# We avoid using AC_INIT's PACKAGE_ variables anywhere, because we want to be able
# to use HMMER as a library inside other packages, with no name clashes.
################################################################
HMMER_DATE="Nov 2020"
HMMER_COPYRIGHT="Copyright (C) 2020 Howard Hughes Medical Institute."
HMMER_LICENSE="Freely distributed under the BSD open source license."
HMMER_VERSION=$PACKAGE_VERSION
HMMER_URL="http://hmmer.org/"
HMMER_ESLDIR="easel"
HMMER_SADIR="libdivsufsort"
EASEL_DATE="Nov 2020"
EASEL_COPYRIGHT="Copyright (C) 2020 Howard Hughes Medical Institute."
EASEL_LICENSE="Freely distributed under the BSD open source license."
EASEL_VERSION="0.48"
EASEL_URL="http://bioeasel.org/"
AC_SUBST(HMMER_DATE)
AC_SUBST(HMMER_COPYRIGHT)
AC_SUBST(HMMER_LICENSE)
AC_SUBST(HMMER_VERSION)
AC_SUBST(HMMER_URL)
AC_SUBST(HMMER_ESLDIR)
AC_SUBST(HMMER_SADIR)
AC_SUBST(EASEL_DATE)
AC_SUBST(EASEL_COPYRIGHT)
AC_SUBST(EASEL_LICENSE)
AC_SUBST(EASEL_VERSION)
AC_SUBST(EASEL_URL)
AC_DEFINE_UNQUOTED([HMMER_DATE], ["$HMMER_DATE"], [Release date])
AC_DEFINE_UNQUOTED([HMMER_COPYRIGHT], ["$HMMER_COPYRIGHT"], [Brief copyright statement])
AC_DEFINE_UNQUOTED([HMMER_LICENSE], ["$HMMER_LICENSE"], [Brief license statement])
AC_DEFINE_UNQUOTED([HMMER_VERSION], ["$HMMER_VERSION"], [Version number])
AC_DEFINE_UNQUOTED([HMMER_URL], ["$HMMER_URL"], [HMMER web site])
AC_DEFINE_UNQUOTED([EASEL_DATE], ["$EASEL_DATE"], [Easel release date])
AC_DEFINE_UNQUOTED([EASEL_COPYRIGHT], ["$EASEL_COPYRIGHT"], [Easel copyright])
AC_DEFINE_UNQUOTED([EASEL_LICENSE], ["$EASEL_LICENSE"], [Easel license])
AC_DEFINE_UNQUOTED([EASEL_VERSION], ["$EASEL_VERSION"], [Easel version])
AC_DEFINE_UNQUOTED([EASEL_URL], ["$EASEL_URL"], [Easel web URL])
# Figure out what host we're compiling on.
# Three GNU scripts must be included in the distro:
# install.sh, config.guess, config.sub
# This sets four shell variables:
# host example: i686-pc-linux-gnu
# host_cpu example: i686
# host_vendor example: pc
# host_os example: linux-gnu
AC_CANONICAL_HOST
################################################################
# 4. Process the ./configure command line
################################################################
# --enable-debugging - set basic debugging (level 0)
# --enable-debugging=x - set debugging level to <x> (1-3)
#
# At all levels, including 0, replaces CFLAGS w/ "-g -Wall" (so it assumes gcc).
# Sets eslDEBUGLEVEL preprocessor symbol, which compiles in debugging support, to 0..3.
#
AC_ARG_ENABLE(debugging,
[
AS_HELP_STRING([--enable-debugging],[include debugging code])
AS_HELP_STRING([--enable-debugging=x],[also set diagnostics verbosity level to <x> (1-3)])
],
enable_debugging=$enableval,
enable_debugging=no)
case $enable_debugging in
yes) AC_DEFINE(eslDEBUGLEVEL, 1, [debugging on (low verbosity)]);;
1) AC_DEFINE(eslDEBUGLEVEL, 1, [debugging on (low verbosity)]);;
2) AC_DEFINE(eslDEBUGLEVEL, 2, [debugging on (moderate verbosity)]);;
3) AC_DEFINE(eslDEBUGLEVEL, 3, [debugging on (high verbosity)]);;
no) AC_DEFINE(eslDEBUGLEVEL, 0, [debugging off]);;
*) AC_MSG_ERROR([Unknown argument to --enable-debugging: $enable_debugging]);;
esac
AC_ARG_ENABLE(gcov, [AS_HELP_STRING([--enable-gcov], [compile for code coverage testing])], enable_gcov=$enableval, enable_gcov=no)
AC_ARG_ENABLE(gprof, [AS_HELP_STRING([--enable-gprof], [compile for gcc code profiling])], enable_gprof=$enableval, enable_gprof=no)
AC_ARG_ENABLE(sse, [AS_HELP_STRING([--enable-sse], [enable our SSE vector code])], enable_sse=$enableval, enable_sse=check)
AC_ARG_ENABLE(vmx, [AS_HELP_STRING([--enable-vmx], [enable our Altivec/VMX vector code])], enable_vmx=$enableval, enable_vmx=check)
AC_ARG_ENABLE(threads, [AS_HELP_STRING([--enable-threads], [enable POSIX threads parallelization])], enable_threads=$enableval, enable_threads=check)
AC_ARG_ENABLE(mpi, [AS_HELP_STRING([--enable-mpi], [enable MPI parallelization])], enable_mpi=$enableval, enable_mpi=no)
AC_ARG_ENABLE(pic, [AS_HELP_STRING([--enable-pic], [enable position-independent code])], enable_pic=$enableval, enable_pic=no)
AC_ARG_WITH(gsl, [AS_HELP_STRING([--with-gsl], [use the GSL, GNU Scientific Library])], with_gsl=$withval, with_gsl=no)
# If a vector implementation is force-selected, make sure only one is,
# and turn off checking for the others.
vecsel=0
if test "$enable_sse" = "yes"; then vecsel=$((vecsel+1)); fi
if test "$enable_vmx" = "yes"; then vecsel=$((vecsel+1)); fi
if [[ $vecsel -gt 1 ]]; then
AC_MSG_ERROR([Select only one implementation: sse or vmx])
elif [[ $vecsel -eq 1 ]]; then
if test "$enable_sse" = "check"; then enable_sse="no"; fi
if test "$enable_vmx" = "check"; then enable_vmx="no"; fi
fi
################################################################
# 5. Checks for programs, including ${CC} and ${CFLAGS}.
################################################################
# Choose our compiler - which might be mpicc, if enable_mpi is "yes".
# AX_PROG_CC_MPI will call AC_PROG_CC if enable_mpi is "no".
#
AX_PROG_CC_MPI([test x"$enable_mpi" = xyes],
[AC_DEFINE(HAVE_MPI, 1, [Use MPI parallelization])
AC_DEFINE(HMMER_MPI, 1, [Use MPI parallelization])
AC_SUBST([MPI_UTESTS], ["mpi_utest"])
AC_SUBST([MPI_BENCHMARKS], ["mpi_benchmark"])],
[ if test x"$enable_mpi" = xyes; then
AC_MSG_ERROR([MPI library not found for --enable-mpi]);
fi])
AC_PROG_CC_STDC
AC_PROG_CPP
AC_PROG_INSTALL
AC_CHECK_TOOL([STRIP],[strip])
AC_PROG_RANLIB
AC_PATH_PROG([AR], [ar], [:], [$PATH:/usr/ccs/bin:/usr/xpg4/bin])
AC_PROG_LN_S
# Select our default optimization flags in CFLAGS.
# --enable-gcov, --enable-gprof, and --enable-debugging are mutually exclusive.
#
if test "$enable_gcov" = "yes"; then
if test "$esl_cflags_env_set" = "yes"; then
AC_MSG_ERROR([--enable-gcov overrides CFLAGS, so don't set CFLAGS])
fi
CFLAGS="-g -Wall -fprofile-arcs -ftest-coverage"
elif test "$enable_gprof" = "yes"; then
if test "$esl_cflags_env_set" = "yes"; then
AC_MSG_ERROR([--enable-gprof overrides CFLAGS, so don't set CFLAGS])
fi
CFLAGS="-O -g -pg"
elif test "$enable_debugging" != "no"; then
if test "$GCC" = "yes"; then
CFLAGS="-g -Wall"
fi
elif test "$esl_cflags_env_set" != "yes"; then
CFLAGS="-O3"
fi
# PIC (position-independent code) for shared library support
#
if test "$enable_pic" = "yes"; then
ESL_PIC_FLAGS
fi
# Support for POSIX multithreading (we should generally have this)
#
if test "$enable_threads" != "no"; then
AX_PTHREAD([
AC_DEFINE(HAVE_PTHREAD, 1, [Use POSIX threads])
AC_DEFINE(HMMER_THREADS, 1, [Use POSIX threads])
AC_SUBST(PTHREAD_LIBS)
AC_SUBST(PTHREAD_CFLAGS)
],[
if test "$enable_threads" = "yes"; then
AC_MSG_FAILURE([Unable to compile with POSIX multithreading.])
fi
enable_threads=no
])
fi
# Support for vector implementations
#
# If we were explicitly told to enable one ($enable_foo="yes") and we
# can't, fail with an error.
#
# If we're autodetecting ($enable_foo="check"), set $enable_foo to the
# result ("yes" or "no").
#
# If vector support "foo" is enabled:
# - define preprocessor symbol eslENABLE_FOO (esl_config.h.in, p7_config.h.in)
# - set output variable FOO_CFLAGS, if needed (Makefile.in)
# - set shell variable $enable_foo to "yes"
# - set shell variable $impl_choice to "foo"
# and if vector support is available (regardless of whether we
# decide to enable it), the autoconf macros:
# - set shell variable $esl_have_foo to "yes"
# - set shell var $esl_foo_cflags to any necessary compiler flags
#
if test "$enable_vmx" = "yes" || test "$enable_vmx" = "check"; then
ESL_VMX([
AC_DEFINE(eslENABLE_VMX, 1, [Enable Altivec/VMX vector implementation])
AC_SUBST([HMMERIMPLLIB], ["impl_vmx/libhmmerimpl.a"])
VMX_CFLAGS=$esl_vmx_cflags
AC_SUBST(VMX_CFLAGS)
enable_vmx=yes
impl_choice=vmx
],[
if test "$enable_vmx" = "yes"; then
AC_MSG_FAILURE([Unable to compile our Altivec/VMX implementations. Try another compiler?])
fi
enable_vmx=no
])
fi
if test "$enable_sse" = "yes" || test "$enable_sse" = "check"; then
ESL_SSE([
AC_DEFINE(eslENABLE_SSE, 1, [Enable SSE vector implementation])
AC_SUBST([HMMERIMPLLIB], ["impl_sse/libhmmerimpl.a"])
SSE_CFLAGS=$esl_sse_cflags
AC_SUBST(SSE_CFLAGS)
enable_sse=yes
impl_choice=sse
],[
if test "$enable_sse" = "yes"; then
AC_MSG_FAILURE([Unable to compile our SSE implementations. Try another compiler?])
fi
enable_sse=no
])
fi
# If we didn't choose an implementation, die.
case "$impl_choice" in
sse) AC_MSG_NOTICE([Activating Intel/AMD SSE vector DP implementation])
;;
vmx) AC_MSG_NOTICE([Activating Altivec/VMX vector DP implementation])
;;
*) AC_MSG_NOTICE([::::::::::--- no vector instruction set ---::::::::::])
AC_MSG_NOTICE([HMMER3 requires SSE or VMX vector instructions.])
AC_MSG_NOTICE([Supported platforms are x86 (Intel/AMD) and PowerPC.])
AC_MSG_ERROR([No supported vectorization found for your machine.])
;;
esac
IMPL_CHOICE=$impl_choice
AC_SUBST(IMPL_CHOICE)
# Easel has additional vector implementations that HMMER3 does not
# support. Provide blank config for those CFLAGS.
AC_SUBST(SSE4_CFLAGS)
AC_SUBST(AVX_CFLAGS)
AC_SUBST(AVX512_CFLAGS)
AC_SUBST(NEON_CFLAGS)
# For x86 processors check if the flush to zero macro is available
# in order to avoid the performance penalty dealing with sub-normal
# values in the floating point calculations.
if test "$impl_choice" = "sse"; then
AC_MSG_CHECKING([whether _MM_SET_FLUSH_ZERO_MODE is supported])
esl_save_cflags="$CFLAGS"
CFLAGS="$CFLAGS $SSE_CFLAGS"
AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[#include <xmmintrin.h>]],
[[_MM_SET_FLUSH_ZERO_MODE (_MM_FLUSH_ZERO_ON);
]])],
[ AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_FLUSH_ZERO_MODE], 1, [Processor supports flush-to-zero mode])],
[ AC_MSG_RESULT([no])]
)
CFLAGS="$esl_save_cflags"
fi
# Check if the linker supports library groups for recursive libraries
AS_IF([test "x$impl_choice" != xno],
[AC_MSG_CHECKING([compiler support --start-group])
LDFLAGS_save=$LDFLAGS
LDFLAGS="-Wl,--start-group -Wl,--end-group $LDFLAGS"
AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
[AC_MSG_RESULT([yes])
AC_SUBST([GROUPHMMERLIBS], ["-Wl,--start-group -lhmmer -lhmmerimpl -Wl,--end-group"])],
[AC_MSG_RESULT([no])
AC_SUBST([GROUPHMMERLIBS], ["-lhmmer -lhmmerimpl"])])
LDFLAGS=$LDFLAGS_save],
[AC_SUBST([GROUPHMMERLIBS], ["-lhmmer"])])
# Define HAVE_GZIP if gzip is in $PATH (or if HAVE_GZIP is already set)
AC_PATH_PROG(HAVE_GZIP, "gzip", "no")
if test "${HAVE_GZIP}" = "no"; then
AC_MSG_WARN([gzip not found])
else
AC_DEFINE(HAVE_GZIP, 1, [Support external gzip decompression])
fi
# We need python 3 for 'make check' and some dev tools. sqc checks
# too, as does the Makefile, but we also check in ./configure, so we
# don't recommend 'make check' to the user if they can't use it.
#
AC_CHECK_PROG(HAVE_PYTHON3, python3, yes)
################################################################
# 6. Checks for libraries
#################################################################
LIBGSL=
AS_IF([test "x$with_gsl" != xno],
[AC_CHECK_LIB([gsl], [gsl_expm1],
[AC_SUBST([LIBGSL], ["-lgsl -lgslcblas"])
AC_DEFINE([HAVE_LIBGSL], [1], [Define if you have libgsl])
],
[if test "x$with_gsl" != xcheck; then
AC_MSG_FAILURE(
[--with-gsl was given, but GSL library was not found])
fi
],
[-lgslcblas]
)])
# Easel stopwatch high-res timer may try to use clock_gettime,
# which may be in librt
AC_SEARCH_LIBS(clock_gettime, [rt posix4])
################################################################
# 7. Checks for headers
#################################################################
# Defines HAVE_SYS_TYPES_H, HAVE_STDINT_H, etc.
AC_CHECK_HEADERS([ \
endian.h\
inttypes.h\
stdint.h\
unistd.h\
sys/types.h\
netinet/in.h
])
# Check for sysctl.h separately. On OpenBSD, it requires
# <sys/param.h> and autoconf needs special logic to deal w. this as
# follows.
AC_CHECK_HEADERS([sys/param.h])
AC_CHECK_HEADERS([sys/sysctl.h], [], [],
[[#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
]])
# altivec.h requires the simd cflags
# For reasons I don't understand, this needs to come after any other CHECK_HEADERS().
if test "$impl_choice" = "vmx"; then
esl_save_CFLAGS="$CFLAGS"
esl_save_CPPFLAGS="$CPPFLAGS"
CFLAGS="$CFLAGS $VMX_CFLAGS"
CPPFLAGS="$CPPFLAGS $VMX_CFLAGS"
AC_CHECK_HEADERS([altivec.h])
CFLAGS="$esl_save_CFLAGS"
CPPFLAGS="$esl_save_CPPFLAGS"
fi
################################################################
# 8. Checks for types
#################################################################
AC_TYPE_UINT8_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_OFF_T
################################################################
# 9. Checks for structures - currently none
################################################################
################################################################
# 10. Checks for compiler characteristics
################################################################
AC_C_BIGENDIAN([
AC_DEFINE(WORDS_BIGENDIAN, 1, [Set autoconf's default WORDS_BIGENDIAN flag])
],[
if test "$enable_vmx" = "yes"; then
AC_MSG_NOTICE([::::::::::--- no vector instruction set ---::::::::::])
AC_MSG_NOTICE([HMMER3 Altivec/VMX only supports bigendian platforms: e.g. ppc64 not ppc64le])
AC_MSG_ERROR([No supported vectorization found for your machine.])
fi
],[
AC_MSG_NOTICE([::::::::::--- no vector instruction set ---::::::::::])
AC_MSG_NOTICE([Couldn't determine byte order for your platform.])
AC_MSG_NOTICE([HMMER3 vector code is sensitive to byte order.])
AC_MSG_ERROR([No supported vectorization found for your machine.])
])
# __attribute__() tags on function declarations
# HAVE_FUNC_ATTRIBUTE_NORETURN
#
# The clang static analyzer can't figure out that some of our
# varargs-dependent fatal error handlers (esl_fatal(), for example)
# cannot return. To tell it so, we take advantage of __attribute__
# tags on function declarations, a non-ISO gcc extension, when
# available. gcc, clang, and other gcc-like compilers support this.
#
# This gets set in the Easel esl_config.h.
#
AX_GCC_FUNC_ATTRIBUTE(noreturn)
# HAVE_FUNC_ATTRIBUTE_FORMAT
#
# We have some printf()-style functions that use varargs.
# Apparently when you do something like
# int64_t bigint;
# my_printf("%d", bigint);
# a compiler can't normally detect the size mismatch between the
# specifier (%d) and the argument (bigint). Usually this isn't a
# problem (apparently most platforms cast appropriately) but we had
# problems on ARM. gcc-like compilers allow declaring an attribute
# of format(printf, <string_index>, <first-to-check>), enabling the
# compiler to typecheck printf()-like arguments, and warn appropriately.
# We only need or use this in development.
#
# This gets set in the Easel esl_config.h.
AX_GCC_FUNC_ATTRIBUTE(format)
################################################################
# 11. Checks for functions, defining HAVE_FOO when foo is found
################################################################
AC_CHECK_FUNCS(mkstemp)
AC_CHECK_FUNCS(popen)
AC_CHECK_FUNCS(putenv)
AC_CHECK_FUNCS(strcasecmp)
AC_CHECK_FUNCS(strsep)
AC_CHECK_FUNCS(times)
AC_CHECK_FUNCS(getpid)
AC_CHECK_FUNCS(sysctl)
AC_CHECK_FUNCS(sysconf)
AC_CHECK_FUNCS(getcwd)
AC_CHECK_FUNCS(chmod)
AC_CHECK_FUNCS(stat)
AC_CHECK_FUNCS(fstat)
AC_CHECK_FUNCS(erfc)
AC_SEARCH_LIBS(ntohs, socket)
AC_SEARCH_LIBS(ntohl, socket)
AC_SEARCH_LIBS(htons, socket)
AC_SEARCH_LIBS(htonl, socket)
AC_SEARCH_LIBS(socket, socket)
AC_SEARCH_LIBS(inet_pton, nsl)
AC_FUNC_FSEEKO
#################################################################
# 12. System services
#################################################################
AC_SYS_LARGEFILE
################################################################
# 13. Config subdirs and files
################################################################
# HMMER Makefiles.
AC_CONFIG_FILES([ \
Makefile \
src/Makefile \
testsuite/Makefile \
profmark/Makefile \
src/impl_${impl_choice}/Makefile \
documentation/Makefile \
documentation/man/Makefile \
documentation/userguide/Makefile \
documentation/userguide/inclusions/Makefile \
libdivsufsort/Makefile \
])
# Easel Makefiles.
AC_CONFIG_FILES([ \
easel/Makefile \
easel/miniapps/Makefile \
easel/testsuite/Makefile \
easel/documentation/Makefile \
])
# Substitutions in Userguide .tex files
# HMMER_VERSION, HMMER_DATE, HMMER_COPYRIGHT
AC_CONFIG_FILES([ \
documentation/userguide/titlepage.tex \
documentation/userguide/titlepage_daemon.tex \
documentation/userguide/copyright.tex \
])
# Substitutions in HMMER man pages:
# HMMER_VERSION, HMMER_DATE, HMMER_COPYRIGHT, HMMER_LICENSE, HMMER_URL
AC_CONFIG_FILES([ \
documentation/man/alimask.man \
documentation/man/hmmalign.man \
documentation/man/hmmbuild.man \
documentation/man/hmmc2.man \
documentation/man/hmmconvert.man \
documentation/man/hmmemit.man \
documentation/man/hmmer.man \
documentation/man/hmmfetch.man \
documentation/man/hmmlogo.man \
documentation/man/hmmpgmd.man \
documentation/man/hmmpgmd_shard.man \
documentation/man/hmmpress.man \
documentation/man/hmmscan.man \
documentation/man/hmmsearch.man \
documentation/man/hmmsim.man \
documentation/man/hmmstat.man \
documentation/man/jackhmmer.man \
documentation/man/makehmmerdb.man \
documentation/man/nhmmer.man \
documentation/man/nhmmscan.man \
documentation/man/phmmer.man \
])
# Substitutions in Easel man pages:
# EASEL_VERSION, EASEL_DATE, EASEL_COPYRIGHT, EASEL_LICENSE, EASEL_URL
AC_CONFIG_FILES([ \
easel/miniapps/esl-afetch.man \
easel/miniapps/esl-alimanip.man \
easel/miniapps/esl-alimap.man \
easel/miniapps/esl-alimask.man \
easel/miniapps/esl-alimerge.man \
easel/miniapps/esl-alipid.man \
easel/miniapps/esl-alirev.man \
easel/miniapps/esl-alistat.man \
easel/miniapps/esl-compalign.man \
easel/miniapps/esl-compstruct.man \
easel/miniapps/esl-construct.man \
easel/miniapps/esl-histplot.man \
easel/miniapps/esl-mask.man \
easel/miniapps/esl-mixdchlet.man \
easel/miniapps/esl-reformat.man \
easel/miniapps/esl-selectn.man \
easel/miniapps/esl-seqrange.man \
easel/miniapps/esl-seqstat.man \
easel/miniapps/esl-sfetch.man \
easel/miniapps/esl-shuffle.man \
easel/miniapps/esl-ssdraw.man \
easel/miniapps/esl-translate.man \
easel/miniapps/esl-weight.man \
])
AC_CONFIG_HEADERS([easel/decoy_config.h]) # Put this first to keep gnu 'autoheader' from overwriting a real config file.
AC_CONFIG_HEADERS([src/p7_config.h])
AC_CONFIG_HEADERS([easel/esl_config.h])
AC_CONFIG_HEADERS([libdivsufsort/divsufsort.h])
# the following incantation establishes a symlink of
# src/impl_{whatever} to src/impl in the *build* directory.
# Testsuite sqc tests rely on it.
AC_CONFIG_LINKS([src/impl:${ac_top_build_prefix}src/impl_${impl_choice}])
################################################################
# 14. AC_OUTPUT
################################################################
AC_OUTPUT
echo "
HMMER configuration:
compiler: ${CC} ${CFLAGS} ${SSE_CFLAGS} ${VMX_CFLAGS} ${PTHREAD_CFLAGS} ${PIC_CFLAGS}
host: $host
linker: ${LDFLAGS}
libraries: ${LIBS} ${LIBGSL} ${PTHREAD_LIBS}
DP implementation: ${impl_choice}"
if test x"$HAVE_PYTHON3" = x"yes"; then echo "
Now do 'make' to build HMMER, and optionally:
'make check' to run self tests,
'make install' to install programs and man pages,
'(cd easel; make install)' to install Easel tools.
";
else echo "
(No python3 found, so 'make check' is disabled.)
Now do 'make' to build HMMER, and optionally:
'make install' to install programs and man pages,
'(cd easel; make install)' to install Easel tools.
";
fi