X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=configure.in;h=262f928be32742d772236a4346f433a427907ed8;hb=bfcc769cf8019eabc8c65c07257c8dbee4b4c977;hp=0b5e2705f8e4cfa53a4a1e4eed87603375630ea1;hpb=a05f3cb550877e94aa118cc04b361c0c8fdb3dc3;p=ctsim.git diff --git a/configure.in b/configure.in index 0b5e270..262f928 100644 --- a/configure.in +++ b/configure.in @@ -165,6 +165,21 @@ AC_ARG_ENABLE(verbose-warnings, esac ], AC_MSG_RESULT(no) ) +AC_MSG_CHECKING(static executables) +AC_ARG_ENABLE(static, +[ --enable-static + Enable static executables.], +[ case "$enableval" in + yes) + AC_MSG_RESULT(yes) + AC_ADD_GCC_CFLAGS([--static]) + ;; + *) + AC_MSG_RESULT(no) + ;; + esac ], AC_MSG_RESULT(no) +) + dnl Set LAM path AC_ARG_WITH(lam, [ --with-lam[=PATH] Set path of LAM MPI ], @@ -300,8 +315,12 @@ if test "$no_x" != "yes" ; then AC_DEFINE(HAVE_SGP) AM_CONDITIONAL(HAVE_SGP, test 1==1) LDFLAGS="$LDFLAGS -L../libctgraphics -L/usr/X11R6/lib" - ctlibs_graphics="$ctlibs_base -lctgraphics $X_BASIC_LIBS $X_TOOLKIT_LIBS" + ctlibs_graphics="$ctlibs_base -lctgraphics" AC_MSG_RESULT(yes) + if test "$g2" = "true" ; then + ctlibs_graphics="$ctlibs_graphics -lg2" + fi + ctlibs_graphics="$ctlibs_graphics $X_BASIC_LIBS $X_TOOLKIT_LIBS" else AC_MSG_RESULT(no) fi @@ -312,10 +331,6 @@ fi if test "$zlib" = "true" ; then ctlibs_tools="$ctlibs_tools -lz" fi -if test "$g2" = "true" ; then - ctlibs_tools="$ctlibs_tools -lg2" -fi - if test "$fftw" = "true" ; then ctlibs_tools="$ctlibs_tools -lrfftw -lfftw" fi