aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-08-07 18:25:42 +0000
committerdos-reis <gdr@axiomatics.org>2010-08-07 18:25:42 +0000
commit3e082dca8543087650c1103bf2d524694195b591 (patch)
treec7d409c1de64b80fa575f181bb5a5c9bca4b5be9
parent627a701bd311ce12abd03261c9f468e7945fd711 (diff)
downloadopen-axiom-3e082dca8543087650c1103bf2d524694195b591.tar.gz
Fix flags to build loadable module on MAC OS X.
-rw-r--r--config/var-def.mk2
-rwxr-xr-xconfigure20
-rw-r--r--configure.ac4
-rw-r--r--configure.ac.pamphlet4
4 files changed, 15 insertions, 15 deletions
diff --git a/config/var-def.mk b/config/var-def.mk
index 1768b3e9..88aa0d4a 100644
--- a/config/var-def.mk
+++ b/config/var-def.mk
@@ -58,7 +58,7 @@ OBJEXT = @OBJEXT@
EXEEXT = @EXEEXT@
# this includes leading period
SHREXT = @shared_ext@
-# this does not include period
+# extension of the archive library; this does not include period
LIBEXT = @libext@
PACKAGE_STRING = @PACKAGE_STRING@
diff --git a/configure b/configure
index f342afff..18f42f22 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.63 for OpenAxiom 1.4.0-2010-07-29.
+# Generated by GNU Autoconf 2.63 for OpenAxiom 1.4.0-2010-08-07.
#
# Report bugs to <open-axiom-bugs@lists.sf.net>.
#
@@ -745,8 +745,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='OpenAxiom'
PACKAGE_TARNAME='openaxiom'
-PACKAGE_VERSION='1.4.0-2010-07-29'
-PACKAGE_STRING='OpenAxiom 1.4.0-2010-07-29'
+PACKAGE_VERSION='1.4.0-2010-08-07'
+PACKAGE_STRING='OpenAxiom 1.4.0-2010-08-07'
PACKAGE_BUGREPORT='open-axiom-bugs@lists.sf.net'
ac_unique_file="src/Makefile.pamphlet"
@@ -1513,7 +1513,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures OpenAxiom 1.4.0-2010-07-29 to adapt to many kinds of systems.
+\`configure' configures OpenAxiom 1.4.0-2010-08-07 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1583,7 +1583,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of OpenAxiom 1.4.0-2010-07-29:";;
+ short | recursive ) echo "Configuration of OpenAxiom 1.4.0-2010-08-07:";;
esac
cat <<\_ACEOF
@@ -1691,7 +1691,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-OpenAxiom configure 1.4.0-2010-07-29
+OpenAxiom configure 1.4.0-2010-08-07
generated by GNU Autoconf 2.63
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1705,7 +1705,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by OpenAxiom $as_me 1.4.0-2010-07-29, which was
+It was created by OpenAxiom $as_me 1.4.0-2010-08-07, which was
generated by GNU Autoconf 2.63. Invocation command line was
$ $0 $@
@@ -15131,7 +15131,7 @@ case $host in
;;
*darwin*)
oa_shrobj_flags='-dynamic'
- oa_shrlib_flags='-dynamiclib -undefined suppress -flat_namespace'
+ oa_shrlib_flags='-bundle -undefined suppress -flat_namespace'
;;
*)
oa_shrobj_flags='-prefer-pic'
@@ -21182,7 +21182,7 @@ exec 6>&1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by OpenAxiom $as_me 1.4.0-2010-07-29, which was
+This file was extended by OpenAxiom $as_me 1.4.0-2010-08-07, which was
generated by GNU Autoconf 2.63. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -21245,7 +21245,7 @@ Report bugs to <bug-autoconf@gnu.org>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_version="\\
-OpenAxiom config.status 1.4.0-2010-07-29
+OpenAxiom config.status 1.4.0-2010-08-07
configured by $0, generated by GNU Autoconf 2.63,
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
diff --git a/configure.ac b/configure.ac
index 7287a7ad..0e43f539 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
sinclude(config/open-axiom.m4)
sinclude(config/aclocal.m4)
-AC_INIT([OpenAxiom], [1.4.0-2010-07-29],
+AC_INIT([OpenAxiom], [1.4.0-2010-08-07],
[open-axiom-bugs@lists.sf.net])
AC_CONFIG_AUX_DIR(config)
@@ -55,7 +55,7 @@ case $host in
;;
*darwin*)
oa_shrobj_flags='-dynamic'
- oa_shrlib_flags='-dynamiclib -undefined suppress -flat_namespace'
+ oa_shrlib_flags='-bundle -undefined suppress -flat_namespace'
;;
*)
oa_shrobj_flags='-prefer-pic'
diff --git a/configure.ac.pamphlet b/configure.ac.pamphlet
index 13660715..02e2938f 100644
--- a/configure.ac.pamphlet
+++ b/configure.ac.pamphlet
@@ -1210,7 +1210,7 @@ information:
<<Autoconf init>>=
sinclude(config/open-axiom.m4)
sinclude(config/aclocal.m4)
-AC_INIT([OpenAxiom], [1.4.0-2010-07-29],
+AC_INIT([OpenAxiom], [1.4.0-2010-08-07],
[open-axiom-bugs@lists.sf.net])
@
@@ -1348,7 +1348,7 @@ case $host in
;;
*darwin*)
oa_shrobj_flags='-dynamic'
- oa_shrlib_flags='-dynamiclib -undefined suppress -flat_namespace'
+ oa_shrlib_flags='-bundle -undefined suppress -flat_namespace'
;;
*)
oa_shrobj_flags='-prefer-pic'