summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2007-03-19 11:20:55 -0400
committerDavid Cantrell <dcantrell@redhat.com>2007-03-19 20:58:45 -0400
commit5167881e1f44c1bd4ccf4ed15daeeaa7af75558d (patch)
tree8ad99fb3f2640c59de77273854caee9de341f539 /configure.ac
parent04f2111580d683dbc252ac1765e5874fc1444f81 (diff)
downloadparted-5167881e1f44c1bd4ccf4ed15daeeaa7af75558d.tar.gz
Remove the COMPILE_FOR_S390 flag-setting stuff. It wasn't correct anyway. Take a kernel-style approach and check uname -m to see if we are on s390. If so, we build for zSeries. Otherwise we do not.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index a824fcd..5735541 100644
--- a/configure.ac
+++ b/configure.ac
@@ -433,12 +433,6 @@ AC_CHECK_HEADER([execinfo.h], [
])
])
-dnl Checks for #defines.
-compile_for_s390=no
-AC_EGREP_CPP([__s390__], , compile_for_s390=yes)
-AC_EGREP_CPP([__s390x__], , compile_for_s390=yes)
-AM_CONDITIONAL([COMPILE_FOR_S390], [test "$compile_for_s390" = yes])
-
dnl check for "check", unit testing library/header
PKG_CHECK_MODULES([CHECK], [check >= 0.9.3], have_check=yes, have_check=no)
if test "$have_check" != "yes"; then