aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-05 16:43:58 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-05 16:43:58 +0000
commit52fe4db735a8abf5821c5d1e21082ce7803a8e8e (patch)
tree90d48ebe23306fdc0107b851cb2ed0cdf34972cb /configure.ac
parent8414b45f48d68b898a6dda27069c377088687fb8 (diff)
downloadopen-axiom-52fe4db735a8abf5821c5d1e21082ce7803a8e8e.tar.gz
* configure.ac.pamphlet [mingw] (oa_shrlib_flags): Ensure
the compiler appreciates we want dynamic link.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index bd94c21f..e0e52418 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
sinclude(config/open-axiom.m4)
sinclude(config/aclocal.m4)
-AC_INIT([OpenAxiom], [1.2.0-2008-04-04],
+AC_INIT([OpenAxiom], [1.2.0-2008-04-05],
[open-axiom-bugs@lists.sf.net])
AC_CONFIG_AUX_DIR(config)
@@ -28,7 +28,8 @@ AC_SUBST(libext)
case $host in
*mingw*|*cygwin*)
oa_use_libtool_for_shared_lib=no
- oa_shrlib_flags="$oa_shrlib_flags --export-all-symbols"
+ oa_shrobj_flags='-prefer-pic'
+ oa_shrlib_flags="-shared --export-all-symbols"
;;
*darwin*)
oa_shrobj_flags='-dynamic'