Skip to content

Commit

Permalink
Update configure.ac to make it build on OpenBSD
Browse files Browse the repository at this point in the history
This update is to make libsecp256k1 build on OpenBSD (more specifically OpenBSD 5.7 with Autotools 2.69).

Without the "AM_PROG_CC_C_O" line in configure.ac, ./autogen.sh crashes with "Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'\nautoreconf-2.69: automake failed with exit status: 1".
  • Loading branch information
mlmikael committed Jul 19, 2015
1 parent 1b68366 commit ed5334a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ if test "x$CFLAGS" = "x"; then
CFLAGS="-O3 -g"
fi

AM_PROG_CC_C_O

AC_PROG_CC_C89
if test x"$ac_cv_prog_cc_c89" = x"no"; then
AC_MSG_ERROR([c89 compiler support required])
Expand Down

0 comments on commit ed5334a

Please sign in to comment.