]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR libobjc/15901 (libobjc is not build shared if you do not supply --enable-shared)
authorAndrew Pinski <pinskia@physics.uc.edu>
Fri, 11 Jun 2004 17:37:06 +0000 (17:37 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Fri, 11 Jun 2004 17:37:06 +0000 (10:37 -0700)
2004-06-11  Andrew Pinski  <pinskia@physics.uc.edu>

        PR libobjc/15901
        * configure.ac: Do not disable shared by default.
        * configure: Regenerate.

From-SVN: r82980

libobjc/ChangeLog
libobjc/configure
libobjc/configure.ac

index d6ba1f2711437c9e7f1dca1ec7a7bbb140c60082..fa34024102a65daa11e5b6fc265239d5747441d5 100644 (file)
@@ -1,3 +1,9 @@
+2004-06-11  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       PR libobjc/15901
+       * configure.ac: Do not disable shared by default.
+       * configure: Regenerate.
+
 2004-06-03  Nicola Pero  <n.pero@mi.flashnet.it>
 
        * Protocol.m ([-isEqual:]): Small optimizations returning
index 555e1e05ed42a0ea70d252a5ad4606ae02f38648..24daec96ae23beed22e4769be8f797e9d0428c2a 100755 (executable)
@@ -837,7 +837,7 @@ Optional Features:
   --enable-version-specific-runtime-libs    Specify that runtime libraries should be installed in a compiler-specific directory
   --enable-objc-gc       enable the use of Boehm's garbage collector with
                           the GNU Objective-C runtime.
-  --enable-shared=PKGS  build shared libraries default=no
+  --enable-shared=PKGS  build shared libraries default=yes
   --enable-static=PKGS  build static libraries default=yes
   --enable-fast-install=PKGS  optimize for fast installation default=yes
   --disable-libtool-lock  avoid locking (might break parallel builds)
@@ -2881,7 +2881,9 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 
 
-# Disable shared libs by default
+# Enable Win32 DLL on MS Windows - FIXME
+
+
 # Check whether --enable-shared or --disable-shared was given.
 if test "${enable_shared+set}" = set; then
   enableval="$enable_shared"
@@ -2902,11 +2904,8 @@ no) enable_shared=no ;;
   ;;
 esac
 else
-  enable_shared=no
+  enable_shared=yes
 fi;
-# Enable Win32 DLL on MS Windows - FIXME
-
-
 # Check whether --enable-static or --disable-static was given.
 if test "${enable_static+set}" = set; then
   enableval="$enable_static"
@@ -3627,7 +3626,7 @@ test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic"
 case $host in
 *-*-irix6*)
   # Find out which ABI we are using.
-  echo '#line 3630 "configure"' > conftest.$ac_ext
+  echo '#line 3629 "configure"' > conftest.$ac_ext
   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
index 16f9a025506dd2fd723c05466d7062854fb8a748..91635d299e6c9c09d18ab2c84702fbd867dcc8ab 100644 (file)
@@ -189,8 +189,6 @@ AC_CHECK_TOOL(AR, ar)
 AC_CHECK_TOOL(RANLIB, ranlib, :)
 AC_PROG_INSTALL
 
-# Disable shared libs by default
-AC_DISABLE_SHARED
 # Enable Win32 DLL on MS Windows - FIXME
 AC_LIBTOOL_WIN32_DLL