40 lines
1.5 KiB
Diff
40 lines
1.5 KiB
Diff
From c25d1f794cdd478129ea01e525fbe87f623be9ed Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
|
|
Date: Sat, 7 Jan 2017 22:35:23 +0100
|
|
Subject: [PATCH] configure.ac: do not run temp binary in cross envirnoment
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
it is more a developer check before packing new version
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
|
|
---
|
|
configure.ac | 8 --------
|
|
1 file changed, 8 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 39b532c..f45ca0e 100755
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -28,14 +28,6 @@ m4_define([lt_current_minus_age], [m4_eval(lt_current - lt_age)])
|
|
SO_VERSION=lt_version_info
|
|
AC_SUBST(SO_VERSION)
|
|
|
|
-# Check version number coherency between RtMidi.h and configure.ac
|
|
-AC_MSG_CHECKING([that version numbers are coherent])
|
|
-AC_RUN_IFELSE(
|
|
- [AC_LANG_PROGRAM([#include <string.h>
|
|
- `grep "define RTMIDI_VERSION" $srcdir/RtMidi.h`],
|
|
- [return strcmp(RTMIDI_VERSION, PACKAGE_VERSION);])],
|
|
- [AC_MSG_RESULT([yes])],
|
|
- [AC_MSG_FAILURE([testing RTMIDI_VERSION==PACKAGE_VERSION failed, check that RtMidi.h defines RTMIDI_VERSION as "$PACKAGE_VERSION" or that the first line of configure.ac has been updated.])])
|
|
|
|
# Enable some nice automake features if they are available
|
|
m4_ifdef([AM_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
|
|
--
|
|
2.5.5
|
|
|