Skip to content

Commit

Permalink
changed AC_PROG_LIBTOOL to LT_INIT
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed May 12, 2019
1 parent bd08dcc commit cb217dc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ AC_INIT(pio, 2.4.2)
AC_CONFIG_SRCDIR(src/clib/pio_darray.c)
AM_INIT_AUTOMAKE([foreign serial-tests])


# The PIO version, again.
AC_DEFINE([PIO_VERSION_MAJOR], [2], [PIO major version])
AC_DEFINE([PIO_VERSION_MINOR], [4], [PIO minor version])
Expand All @@ -20,15 +19,15 @@ AC_SUBST([VERSION_PATCH], [2])
# The m4 directory holds macros for autoconf.
AC_CONFIG_MACRO_DIR([m4])

# Libtool initialisation.
LT_INIT

# Find and learn about the C compiler.
AC_PROG_CC

# Find and learn about the Fortran compiler.
AC_PROG_FC

# Libtool initialisation.
AC_PROG_LIBTOOL

# Always use malloc in autotools builds.
AC_DEFINE([PIO_USE_MALLOC], [1], [use malloc for memory])

Expand Down

0 comments on commit cb217dc

Please sign in to comment.