Skip to content

Commit

Permalink
remove AC_DISABLE_STATIC again
Browse files Browse the repository at this point in the history
why did I add this? with deebe76 when updating to autoconf 2.71
it breaks macOS builds. and static progs are fine for me, even if huge.
we still should support --en/disable-shared and --en/disable-static.

fix macos gh actions deps
  • Loading branch information
rurban committed Apr 27, 2024
1 parent fa3dbfb commit 35aaf43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
runs-on: macOS-latest
steps:
- name: init
run: brew install automake texinfo
run: brew install autoconf automake libtool texinfo
- name: link texinfo
run: brew link texinfo --force
- name: setup-python
Expand Down
3 changes: 1 addition & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dnl AM_INIT_AUTOMAKE([1.11.6 gnu no-define])
dnl parallel-tests:
dnl: error: using '$(srcdir)' in TESTS is currently broken: '$(srcdir)/libredwg.spec'
AM_INIT_AUTOMAKE([1.14 gnu no-define serial-tests dist-xz info-in-builddir])
AC_DISABLE_STATIC
LT_INIT

# Keep this in sync with what is passed in AC_INIT
TARBALL_VERSION_FILE=".tarball-version"
Expand Down Expand Up @@ -56,7 +56,6 @@ AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_PROG_EGREP
LT_INIT
AC_CHECK_PROGS([BASH], [bash])

if test x$enable_shared = xyes; then
Expand Down

0 comments on commit 35aaf43

Please sign in to comment.