From: wolf Date: Thu, 20 Mar 2003 23:25:38 +0000 (+0000) Subject: No shared libs on hppa64-unknown-linux-gnu X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c07a3008b5f001b31aeadd8bfc0216a8433ee6d9;p=dealii-svn.git No shared libs on hppa64-unknown-linux-gnu git-svn-id: https://svn.dealii.org/trunk@7334 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure b/deal.II/configure index 8b4a8e807b..75696c0b7b 100755 --- a/deal.II/configure +++ b/deal.II/configure @@ -6745,7 +6745,7 @@ else fi; case "$target" in - *-aix4* | alpha*-linux* | alpha*-osf45* | *cygwin | powerpc-apple-darwin* ) + *-aix4* | alpha*-linux* | alpha*-osf45* | *cygwin | powerpc-apple-darwin* | hppa64-unknown-linux-gnu ) { echo "$as_me:$LINENO: WARNING: Shared libraries not supported on $target. Using static libs instead" >&5 echo "$as_me: WARNING: Shared libraries not supported on $target. Using static libs instead" >&2;} enableshared=no diff --git a/deal.II/configure.in b/deal.II/configure.in index c8ff524f38..6587524e97 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -252,7 +252,7 @@ dnl disable them (we should probably use libtool there). Likewise on dnl CygWin Windows and Mac OS X systems, where we don't know how to dnl create shared libs at all (at least at present) case "$target" in - *-aix4* | alpha*-linux* | alpha*-osf[45]* | *cygwin | powerpc-apple-darwin* ) + *-aix4* | alpha*-linux* | alpha*-osf[45]* | *cygwin | powerpc-apple-darwin* | hppa64-unknown-linux-gnu ) AC_MSG_WARN(Shared libraries not supported on $target. Using static libs instead) enableshared=no ;;