Skip to content

Commit

Permalink
Sync buildsys from core. Closes: #1364
Browse files Browse the repository at this point in the history
Plugins are now installed as .dylib files again on macOS.
  • Loading branch information
radioactiveman committed May 17, 2024
1 parent 696c2e0 commit f954e8a
Show file tree
Hide file tree
Showing 3 changed files with 298 additions and 106 deletions.
15 changes: 12 additions & 3 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
#!/bin/sh
aclocal -I m4 || exit 1
autoconf || exit 1
autoheader || exit 1
set -e

# Set a version for OpenBSD
if test x"$(uname -s)" = x"OpenBSD"; then
: ${AUTOCONF_VERSION:=2.71}
: ${AUTOMAKE_VERSION:=1.16}
export AUTOCONF_VERSION AUTOMAKE_VERSION
fi

aclocal -I m4
autoconf
autoheader
Loading

0 comments on commit f954e8a

Please sign in to comment.