Skip to content

Commit

Permalink
Merge pull request #39 from halohsu/main
Browse files Browse the repository at this point in the history
add macOS libtool support.
  • Loading branch information
mario4tier authored Oct 16, 2024
2 parents f393d2a + 1ff20f3 commit 0e76a04
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@ echo aclocal
aclocal || exit
echo autoheader
autoheader || exit
echo libtoolize --copy --force
libtoolize --copy --force || exit
if [[ `uname -o` -eq 'Darwin' ]]; then
echo glibtoolize --copy --force
glibtoolize --copy --force || exit
else
echo libtoolize --copy --force
libtoolize --copy --force || exit
fi
echo automake -a -c
automake -a -c || exit
echo autoconf
Expand Down

0 comments on commit 0e76a04

Please sign in to comment.