From e3aaaa279245e5df16e7d84b33362f04de034b7c Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Wed, 29 Jan 2014 12:00:50 +0100 Subject: [PATCH] Added hook to auto-install in mingw. --- Makefile.am | 5 +++++ configure.ac | 15 +++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/Makefile.am b/Makefile.am index 4a3435b..fa762b2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,6 +14,11 @@ distclean-local: rm -f ChangeLog; \ fi +if PLATFORM_WIN32 +install-data-hook: + \cp -f -r $(prefix)/* /mingw +endif + ChangeLog: @echo Creating $@ @if test -d "$(srcdir)/.git"; then \ diff --git a/configure.ac b/configure.ac index 18fe362..b2caa0c 100644 --- a/configure.ac +++ b/configure.ac @@ -80,6 +80,21 @@ AC_C_CONST # Checks for library functions. AC_CHECK_FUNCS([strchr strcasecmp strtol]) +dnl ****************************** +dnl Check for Operating System +dnl ****************************** + +platform_win32=no + +case "$host" in +*-mingw*) + platform_win32=yes + ;; +esac + +AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes]) + +# Output files AC_CONFIG_FILES([ libgdaex.pc Makefile -- 2.49.0