diff --git a/configure.ac b/configure.ac
index 84b3d94877af1fe1b15d0ace7f370c97a8dc33a6..7a2f94e7f7bc79fc10d6cb1a792d4b0f516146ce 100755
--- a/configure.ac
+++ b/configure.ac
@@ -161,12 +161,17 @@ AM_CONDITIONAL([HAVE_CWEAVE], [test "x$CWEAVE" != "x"])
 
 AC_PROG_F77
 AC_F77_LIBRARY_LDFLAGS
-# Hack to get static linking of libgfortran on MinGW
-# (-static-libgfortran doesn't act on gcc/g++)
 case ${host_os} in
   *mingw32*)
+    # Hack to get static linking of libgfortran on MinGW
+    # (-static-libgfortran doesn't act on gcc/g++)
     FLIBS=`echo $FLIBS | sed 's/-lgfortran/-Wl,-Bstatic -lgfortran -Wl,-Bdynamic/'`
     ;;
+  *darwin*)
+    # * OS X doesn't need to link against the Fortran libraries because
+    #   everything is contained within the vecLib framework.
+    FLIBS=''
+    ;;
 esac
 
 if test "x$F77" != "x"; then