Skip to content
Snippets Groups Projects
Commit 5c8e3c89 authored by Thimo Neubauer's avatar Thimo Neubauer
Browse files

added libtool-stuff and disable shared-libraries by default. Debugging

is way easier with static libs. If we want shared libs later, this can be
easily changed by passing a --enable-shared to configure (or changing the
default if the lib is bug-free :)

[[Imported from SVN: r253]]
parent 919d93c5
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,10 @@ AC_CONFIG_SRCDIR([grid/common/grid.hh])
# do almost nothing, an application using Dune should provide the
# checks (use the macro provided in m4/dune.m4 to do this)
# don't build shared libs per default, this is way better for debugging...
AC_DISABLE_SHARED
AC_PROG_LIBTOOL
# write output
AC_CONFIG_FILES([Makefile
common/Makefile
......@@ -18,6 +22,7 @@ AC_CONFIG_FILES([Makefile
grid/common/Makefile
grid/sgrid/Makefile
grid/spgrid/Makefile
lib/Makefile
solver/Makefile
solver/common/Makefile
solver/pmgsolver/Makefile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment