Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use gnulib #311

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Modify to use libtool for windows
Signed-off-by: Bastien Roucariès <rouca@debian.org>
bastien-roucaries committed Apr 12, 2020
commit ed7aab730dcb1169bdc7ae091e99ba2d20da224c
23 changes: 13 additions & 10 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -22,6 +22,18 @@ AC_CONFIG_AUX_DIR(config)
AC_CANONICAL_TARGET

AM_INIT_AUTOMAKE([subdir-objects])
AC_PROG_CC
AM_PROG_CC_C_O
AC_USE_SYSTEM_EXTENSIONS
AC_PROG_CPP
AC_PROG_AWK
AC_PROG_SED
AC_PROG_GREP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL
LT_INIT([win32-dll])

dnl AM_MAINTAINER_MODE

@@ -109,16 +121,7 @@ int main(void){char x[[256]]; snprintf(x, sizeof(x), "NNN"); return 0;}

AC_GNU_SOURCE

AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_CPP
AC_PROG_AWK
AC_PROG_SED
AC_PROG_GREP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL


dnl Detect if we are on and Apple platform
dnl