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
|
m4_define([DIME_MAJOR], [0])
m4_define([DIME_MINOR], [9])
m4_define([DIME_MICRO], [1])
m4_define([DIME_BETA], [])
m4_define([DIME_VERSION_STRING], [DIME_MAJOR.DIME_MINOR.DIME_MICRO[]DIME_BETA])
m4_define([DIME_ABI_VERSION], [0])
m4_define([DIME_ABI_AGE], [0])
m4_define([DIME_ABI_REVISION], [0])
# **************************************************************************
AC_INIT([dime], [DIME_VERSION_STRING], [dime-support@coin3d.org])
AC_CONFIG_SRCDIR([include/dime/Base.h])
AC_CONFIG_AUX_DIR([cfg])
AC_CANONICAL_SYSTEM
AC_SUBST([DIME_MAJOR_VERSION], [DIME_MAJOR])
AC_SUBST([DIME_MINOR_VERSION], [DIME_MINOR])
AC_SUBST([DIME_MICRO_VERSION], [DIME_MICRO])
AC_SUBST([DIME_BETA_VERSION], [DIME_MICRO])
AC_SUBST([DIME_VERSION], [DIME_VERSION_STRING])
VERSION=$DIME_VERSION
AC_SUBST(DIME_INTERFACE_AGE, 0)
AC_SUBST(DIME_BINARY_AGE, 0)
SIM_AC_MSVC_DSP_ENABLE_OPTION
SIM_AC_SETUP_MSVCPP_IFELSE
if $BUILD_WITH_MSVC; then
SIM_AC_SETUP_MSVCRT([
CPPFLAGS="$CPPFLAGS $sim_ac_msvcrt_CPPFLAGS"
CFLAGS="$CFLAGS $sim_ac_msvcrt_CFLAGS"
CXXFLAGS="$CXXFLAGS $sim_ac_msvcrt_CXXFLAGS"
LDFLAGS="$LDFLAGS $sim_ac_msvcrt_LDFLAGS"
LIBS="$LIBS $sim_ac_msvcrt_LIBS"
# sim_ac_msvcrt_LIBLIBS is set up at the end
# sim_ac_msvcrt_LIBLDFLAGS is set up at the end
AC_SUBST([DIME_MSVC_LIBC], [$sim_ac_msvcrt])
])
fi
# Locate C++ compiler and set C++ as the default compiler to run
# in tests.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX
AC_PROG_CXXCPP
AC_LANG([C++])
# *******************************************************************
# * Library version control.
# *******************************************************************
# Making releases:
# DIME_MICRO_VERSION += 1;
# DIME_INTERFACE_AGE += 1;
# DIME_BINARY_AGE += 1;
# if any functions have been added, set DIME_INTERFACE_AGE to 0.
# if backwards compatibility has been broken,
# set DIME_BINARY_AGE _and_ DIME_INTERFACE_AGE to 0.
#
# libtool versioning
LT_RELEASE=$DIME_MAJOR_VERSION.$DIME_MINOR_VERSION
LT_CURRENT=`expr $DIME_MICRO_VERSION - $DIME_INTERFACE_AGE`
LT_REVISION=$DIME_INTERFACE_AGE
LT_AGE=`expr $DIME_BINARY_AGE - $DIME_INTERFACE_AGE`
AC_SUBST(LT_RELEASE)
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
AC_SUBST([SUFFIX], [])
# These are used for constructing the dime-config file.
AC_SUBST([DIME_EXTRA_CPPFLAGS], [$CPPFLAGS])
AC_SUBST([DIME_EXTRA_CFLAGS], [$CFLAGS])
AC_SUBST([DIME_EXTRA_CXXFLAGS], [$CXXFLAGS])
AC_SUBST([DIME_EXTRA_LDFLAGS], [$LDFLAGS])
AC_SUBST([DIME_EXTRA_LIBS], [$LIBS])
# *******************************************************************
# * Miscellaneous options and initializations.
# *******************************************************************
AM_INIT_AUTOMAKE(libdime, $VERSION)
# Default to not building a static library.
# Can be overridden by the user with --enable-static.
AM_DISABLE_STATIC
# Turn off default maintainer make-rules -- use ./autogen.sh instead.
AM_MAINTAINER_MODE
if $BUILD_WITH_MSVC; then
RANLIB=:
export RANLIB
fi
# Initialize libtool
AC_PROG_LIBTOOL
test "x$prefix" = xNONE && prefix=$ac_default_prefix
CPPFLAGS="$CPPFLAGS -DDIME_INTERNAL"
dime_build_dir=`pwd`
dime_src_dir=`cd "$srcdir"; pwd`
AC_SUBST([dime_build_dir])
AC_SUBST([dime_src_dir])
SIM_AC_CONFIGURATION_SETTING([Dime version], [DIME_MAJOR.DIME_MINOR.DIME_MICRO[]DIME_BETA])
# *******************************************************************
# disable build if you just want to generate doc.
sim_ac_build_library=true
AC_ARG_ENABLE(
[build],
[AC_HELP_STRING([--disable-build], [disable configuration for library build])],
[case $enableval in
no | false)
sim_ac_build_library=false
SIM_AC_CONFIGURATION_SETTING([Dime build type], [build disabled])
;;
esac])
AM_CONDITIONAL(BUILD_LIBRARY, $sim_ac_build_library)
# *******************************************************************
# * Do we want to build the documentation?
# *******************************************************************
AC_ARG_ENABLE(html,
AC_HELP_STRING([--enable-html], [build and install Dime HTML documentation]),
[case $enableval in
yes | true) want_html=yes ;;
*) want_html=no ;;
esac],
[want_html=no])
case $htmldir in
/*)
# do nothing - absolute path
;;
*)
# expand $docdir and append /html
htmldir=`eval echo ${docdir}`/html
;;
esac
AC_SUBST(htmldir)
# Used in the Doxygen parameter file.
AC_SUBST([DIME_DOC_HTML], [`echo $want_html | tr '[a-z]' '[A-Z]'`])
AC_SUBST([dime_html_dir], [`pwd`/html])
AM_CONDITIONAL(BUILD_HTMLPAGES, test x"$want_html" = x"yes")
if test x"$want_html" = x"yes"; then
SIM_AC_DOXYGEN_TOOL([], [SIM_AC_ERROR([no-doxygen])])
# Perl is used for the Doxygen-based doc generation
AC_PATH_PROG(sim_ac_perl_exe, perl, false, $PATH)
if test x"$sim_ac_perl_exe" = xfalse; then
AC_MSG_ERROR([Could not find the Perl executable, which is needed for Doxygen doc generation.])
fi
SIM_AC_CONFIGURATION_SETTING([HTML installation], [$htmldir])
fi
# path_tag is used to identify paths in docs/coin.doxygen that needs to be
# transformed using cygpath under cygwin.
case $host in
*-cygwin) path_tag="<PATH>" ;;
*) path_tag= ;;
esac
AC_SUBST(path_tag)
# Make it possible for the user to turn off optimization flags.
SIM_AC_COMPILER_OPTIMIZATION
SIM_AC_COMPILE_DEBUG([
CPPFLAGS="$CPPFLAGS -DDIME_DEBUG=1"
], [
CPPFLAGS="$CPPFLAGS -DDIME_DEBUG=0"
])
SIM_AC_DEBUGSYMBOLS
# *******************************************************************
# * Enable/disable compilation with symbol information.
# *******************************************************************
if test "x$ac_cv_prog_cxx_g" = "xyes"; then
AC_ARG_ENABLE(symbols,
[ --enable-symbols turn on symbol debug information [default=yes]],
[case "${enableval}" in
yes) enable_symbols=yes ;;
no) enable_symbols=no ;;
*) AC_MSG_ERROR(bad value "${enableval}" for --enable-symbols) ;;
esac],
enable_symbols=yes)
if test "x$enable_symbols" = "xno"; then
CXXFLAGS="`echo $CXXFLAGS | sed 's/-g//'`"
fi
fi
# *******************************************************************
# * Enable/disable compilation with profiling information
# * for parsing by gprof (this is a g++ only option).
# *******************************************************************
if test "x$ac_cv_prog_cxx_g" = "xyes"; then
AC_ARG_ENABLE(profile,
[ --enable-profile turn on inclusion of profiling code [default=no]],
[case "${enableval}" in
yes) enable_profile=yes ;;
no) enable_profile=no ;;
*) AC_MSG_ERROR(bad value "${enableval}" for --enable-profile) ;;
esac],
enable_profile=no)
if test "x$enable_profile" = "xyes"; then
CXXFLAGS="$CXXFLAGS -pg"
LDFLAGS="$LDFLAGS -pg"
fi
fi
# *******************************************************************
# * Enable/disable compilation with warnings turned on (g++ only).
# *******************************************************************
if test "x$ac_cv_prog_gxx" = "xyes"; then
AC_ARG_ENABLE(warnings,
[ --enable-warnings turn on warnings when compiling [default=no]],
[case "${enableval}" in
yes) enable_warnings=yes ;;
no) enable_warnings=no ;;
*) AC_MSG_ERROR(bad value "${enableval}" for --enable-warnings) ;;
esac],
enable_warnings=no)
if test "x$enable_warnings" = "xyes"; then
CXXFLAGS="$CXXFLAGS -W -Wall"
fi
fi
# **************************************************************************
# Headers we might want to use
AC_CHECK_HEADERS(
[ieeefp.h],
[], [],
[ ])
# **************************************************************************
# We want to use BSD 4.3's isinf(), isnan(), finite() if they are
# available.
AC_MSG_CHECKING([for BSD 4.3 isinf() function])
AC_TRY_LINK(
[#include <math.h>],
[int result = isinf(42.0);],
[AC_DEFINE(HAVE_ISINF, 1, [whether or not isinf() is available])
AC_MSG_RESULT([available])],
[AC_MSG_RESULT([not available])])
AC_MSG_CHECKING([for BSD 4.3 isnan() function])
AC_TRY_LINK(
[#include <math.h>],
[int result = isnan(42.0);],
[AC_DEFINE(HAVE_ISNAN, 1, [whether or not isnan() is available])
AC_MSG_RESULT([available])],
[AC_MSG_RESULT([not available])
AC_MSG_CHECKING([for _isnan() function])
AC_TRY_LINK(
[#include <math.h>],
[int result = _isnan(42.0);],
[AC_DEFINE(HAVE__ISNAN, 1, [whether or not _isnan() is available])
AC_MSG_RESULT([available])],
[AC_MSG_RESULT([not available])])
])
AC_MSG_CHECKING([for BSD 4.3 finite() function])
AC_TRY_LINK(
[#include <math.h>],
[int result = finite(42.0);],
[AC_DEFINE(HAVE_FINITE, 1, [whether or not finite() is available])
AC_MSG_RESULT([available])],
[AC_MSG_RESULT([not available])
AC_MSG_CHECKING([for _finite() function])
AC_TRY_LINK(
[#include <math.h>],
[int result = _finite(42.0);],
[AC_DEFINE(HAVE__FINITE, 1, [whether or not _finite() is available])
AC_MSG_RESULT([available])],
[AC_MSG_RESULT([not available])])
])
AC_MSG_CHECKING([for fpclass() function])
AC_TRY_LINK(
[#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif],
[int result = fpclass(42.0);],
[AC_DEFINE(HAVE_FPCLASS, 1, [whether or not fpclass() is available])
AC_MSG_RESULT([available])],
[AC_MSG_RESULT([not available])])
AC_MSG_CHECKING([for _fpclass() function])
AC_TRY_LINK(
[#include <math.h>],
[int result = _fpclass(42.0);],
[AC_DEFINE(HAVE__FPCLASS, 1, [whether or not _fpclass() is available])
AC_MSG_RESULT([available])],
[AC_MSG_RESULT([not available])])
# **************************************************************************
SIM_AC_UNIQIFY_LIST(DIME_EXTRA_CPPFLAGS, -I$includedir $DIME_EXTRA_CPPFLAGS)
SIM_AC_UNIQIFY_LIST(DIME_EXTRA_LDFLAGS, -L$libdir $DIME_EXTRA_LDFLAGS)
SIM_AC_UNIQIFY_LIST(DIME_EXTRA_LIBS, $DIME_EXTRA_LIBS)
SIM_AC_UNIQIFY_LIST(CPPFLAGS, $CPPFLAGS)
SIM_AC_UNIQIFY_LIST(LDFLAGS, $LDFLAGS)
SIM_AC_UNIQIFY_LIST(LIBS, $LIBS)
# **************************************************************************
# no DLL setup yet
case $enable_static in
yes | true) DIME_STATIC=true ;;
*) DIME_STATIC=false ;;
esac
case $enable_shared in
yes | true) DIME_STATIC=false ;;
*) DIME_STATIC=true ;;
esac
AC_SUBST([LIBFLAGS], [])
# **************************************************************************
AM_CONDITIONAL([BUILD_WITH_MSVC], [$BUILD_WITH_MSVC])
if $sim_ac_build_library; then
if $BUILD_WITH_MSVC; then
rm -f vc60.pdb
LIBS="$LIBS $sim_ac_msvcrt_LIBLIBS"
LIBFLAGS="$LIBFLAGS" # $sim_ac_msvcrt_LIBLDFLAGS
if $DIME_STATIC; then
DIME_EXTRA_CPPFLAGS="$DIME_EXTRA_CPPFLAGS -DDIME_NOT_DLL"
else
CPPFLAGS="-DDIME_MAKE_DLL $CPPFLAGS"
DIME_EXTRA_CPPFLAGS="$DIME_EXTRA_CPPFLAGS -DDIME_DLL"
fi
debugfile="`pwd`/src/dime${DIME_MAJOR_VERSION}${SUFFIX}.pdb"
debugfile=`cygpath -w "$debugfile" | sed 's,\\\\,\\\\\\\\,g'`
if $DIME_STATIC; then
SIM_AC_CONFIGURATION_SETTING([Dime build type], [static .lib])
LIBFLAGS="-LIB $LIBFLAGS"
LIBFLAGS="$LIBFLAGS /OUT:dime$DIME_MAJOR_VERSION$SUFFIX.lib"
else
LIBFLAGS="-DLL /INCREMENTAL:NO $LIBFLAGS"
case $enable_symbols in
no | false)
SIM_AC_CONFIGURATION_SETTING([Dime build type],
[dynamic .dll, no symbols])
LIBFLAGS="$LIBFLAGS /RELEASE"
;;
*)
SIM_AC_CONFIGURATION_SETTING([Dime build type],
[dynamic .dll + .pdb])
CFLAGS="/Fd$debugfile -g $CFLAGS"
CXXFLAGS="/Fd$debugfile -g $CXXFLAGS"
LIBFLAGS="$LIBFLAGS /DEBUG /PDB:dime$DIME_MAJOR_VERSION$SUFFIX.pdb"
;;
esac
LIBFLAGS="$LIBFLAGS /OUT:dime$DIME_MAJOR_VERSION$SUFFIX.dll"
fi
SIM_AC_CONFIGURATION_SETTING([C library linkage], [$sim_ac_msvcrt])
# We use a version suffix on the .dll-file, so several incompatible
# (major) versions can be installed on a system.
#
# BTW, when linking DLLs, the 3rd-party .lib files will be
# linked into the .dll file. I believe it is still advisable to
# list all libs used upon `dime-config --libs`, as we can then
# also use them from "parent" code (remember that their interfaces
# is not exposed from the DLL) without any fuss.
if test -n "$DIME_EXTRA_LIBS"; then
DIME_EXTRA_LIBS="-ldime${DIME_MAJOR_VERSION}${SUFFIX} $DIME_EXTRA_LIBS"
else
DIME_EXTRA_LIBS="-ldime${DIME_MAJOR_VERSION}${SUFFIX}"
fi
else
if test -n "$DIME_EXTRA_LIBS"; then
DIME_EXTRA_LIBS="-ldime${SUFFIX} $DIME_EXTRA_LIBS"
else
DIME_EXTRA_LIBS="-ldime${SUFFIX}"
fi
fi
DIME_COMPILER="$CXX"
if $BUILD_WITH_MSVC; then
# we'll use the installed wrapper when we use the dime-config script later
# so we can remove the source code hierarchy
DIME_COMPILER="wrapmsvc"
fi
AC_SUBST(DIME_COMPILER)
sim_ac_path_problem=true # until proven otherwise
if test -d "${bindir}"; then
# search by inode seems safer than strings because of noncanonical paths
( findinode=`ls -id "$prefix/bin" 2>/dev/null | sed 's/^\([ ]*\)\([0-9]*\).*/\2/g'`
IFS=:; for dir in $PATH; do
inode=`ls -id "$dir" 2>/dev/null | sed 's/^\([ ]*\)\([0-9]*\).*/\2/g'`;
test x"$inode" = x"$findinode" && exit 0
done; exit 1 ) && sim_ac_path_problem=false
fi
if $sim_ac_path_problem; then
( IFS=:; for dir in $PATH; do
test x"$dir" = x"${bindir}" && exit 0
done; exit 1 ) && sim_ac_path_problem=false
fi
if $sim_ac_path_problem; then
SIM_AC_CONFIGURATION_WARNING([Your \$PATH variable does not appear to include \"$prefix/bin\"])
fi
fi
# **************************************************************************
SIM_AC_MSVC_DSP_SETUP([DIME], [Dime], [dime], [-I$dime_build_dir -I$dime_build_dir/include -I$dime_src_dir/include])
# **************************************************************************
SIM_AC_CONFIGURATION_SETTING([Dime installation prefix], [$prefix])
AM_CONFIG_HEADER([include/config.h])
AC_CONFIG_FILES([
dime.pc
Makefile
bin/Makefile
src/Makefile
src/classes/Makefile
src/entities/Makefile
src/objects/Makefile
src/records/Makefile
src/sections/Makefile
src/tables/Makefile
src/util/Makefile
src/convert/Makefile
dxf2vrml/Makefile
dxfsphere/Makefile
html/Makefile
])
AC_OUTPUT
# **************************************************************************
SIM_AC_CONFIGURATION_SUMMARY
echo ""
echo "Done. Now run make install to build $PACKAGE."
echo ""
# **************************************************************************
|