Files
Ryan Schmidt d1d71557a9 liboss: Regenerate configure to fix build
Use autoreconf to regenerate the build system to fix build errors on
newer macOS versions. Patch configure.ac to remove an obsolete bit to
eliminate a warning printed when configure was run. Modernize checksums.
Change "Mac OS X" to "macOS" in descriptions. Rewrite master_sites to
avoid redirects. Rewrite depends_lib to ensure dependencies from
MacPorts get used. Remove platforms which was set to its default value.
2022-05-07 05:16:42 -05:00

20 lines
619 B
Diff

Don't check if libtool can do static libraries. This doesn't work
because libtool has not been generated by this point in the configure
script and is unnecessary because the value of STATIC doesn't end up
being used anywhere.
--- configure.ac.orig 2003-02-21 21:06:40.000000000 -0600
+++ configure.ac 2022-05-07 03:48:56.000000000 -0500
@@ -117,12 +117,6 @@
dnl
AM_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS)
-if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then
- STATIC="-static"
-else
- STATIC=
-fi
-AC_SUBST(STATIC)
dnl
dnl Checks for typedefs, structures, and compiler characteristics.