~johanvdw/osgeo-fdo/trunk

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: jng
  • Date: 2018-12-03 11:48:40 UTC
  • Revision ID: svn-v4:d98eaee6-4212-0410-900c-dcc49bf69b99:trunk:7762
#961: Don't call the wrapper C++11 check m4 macro, just call the underlying m4 macro instead. Also enable subdir-objects so automake shuts up about subdirectory source file references across various Makefile.am files

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
AC_INIT(FDO,4.2.0,http://fdo.osgeo.org)
25
25
AC_CONFIG_MACRO_DIR([m4])
26
26
AC_CONFIG_SRCDIR(configure.in)
27
 
AM_INIT_AUTOMAKE
 
27
AM_INIT_AUTOMAKE([subdir-objects])
28
28
 
29
29
# We need C++11 support
30
 
m4_include([m4/ax_cxx_compile_stdcxx_11.m4])
31
 
AX_CXX_COMPILE_STDCXX_11([ext], [mandatory])
 
30
m4_include([m4/ax_cxx_compile_stdcxx.m4])
 
31
AX_CXX_COMPILE_STDCXX([11], [ext], [mandatory])
32
32
 
33
33
# Enable silent rules if supported. Allows for less verbose output while still displaying any compiler/linker warnings/errors
34
34
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])