summaryrefslogtreecommitdiff
path: root/debian/patches/0002-build-Fix-inverted-tests-that-broke-module-loads.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0002-build-Fix-inverted-tests-that-broke-module-loads.patch')
-rw-r--r--debian/patches/0002-build-Fix-inverted-tests-that-broke-module-loads.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/debian/patches/0002-build-Fix-inverted-tests-that-broke-module-loads.patch b/debian/patches/0002-build-Fix-inverted-tests-that-broke-module-loads.patch
deleted file mode 100644
index ba35578..0000000
--- a/debian/patches/0002-build-Fix-inverted-tests-that-broke-module-loads.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 112917b0acf923ffa3632fc19a1fbde71d676baf Mon Sep 17 00:00:00 2001
-From: Solomon Peachy <pizza@shaftnet.org>
-Date: Sun, 25 Sep 2016 15:13:06 -0400
-Subject: build: Fix inverted tests that broke module loads.
-
----
- configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 5919a71..a9e4291 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -878,7 +878,7 @@ fi
- # define what module system is to be used
- AC_MSG_CHECKING([which module system will be used])
- if test x$USE_LTDL = xtrue; then
-- if test -n "$WITH_MODULES" ; then
-+ if test -z "$WITH_MODULES" ; then
- MODULE="false"
- else
- MODULE="true"
-@@ -890,7 +890,7 @@ if test x$USE_LTDL = xtrue; then
- AC_DEFINE(USE_LTDL, "1", [Use GNU libltdl as module loader])
- AC_MSG_RESULT([ltdl])
- elif test x$USE_DLOPEN = xtrue; then
-- if test -n "$WITH_MODULES" ; then
-+ if test -z "$WITH_MODULES" ; then
- MODULE="false"
- else
- MODULE="true"