Skip to content
Snippets Groups Projects
Commit 46dd37a3 authored by Unknown (abagchi)'s avatar Unknown (abagchi)
Browse files

OS390 Change: ebcdic newline character is 025

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@171627 13f79535-47bb-0310-9956-ffa450edef68
parent 896aaf1e
No related branches found
No related tags found
No related merge requests found
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
# Generated automatically using autoconf version 2.13
# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
#
# This configure script is free software; the Free Software Foundation
......@@ -1260,7 +1260,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
cat >> confdefs.h <<EOF
#define $ac_tr_hdr 1
EOF
else
echo "$ac_t""no" 1>&6
fi
......@@ -1396,7 +1396,12 @@ s%\[%\\&%g
s%\]%\\&%g
s%\$%$$%g
EOF
if test "$platform" != "OS390"; then
DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '`
else
# OS390 - EBCDIC NL is '\025'
DEFS=`sed -f conftest.defs confdefs.h | tr '\025' ' '`
fi
rm -f conftest.defs
......@@ -1620,4 +1625,5 @@ test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
echo
echo Having build problems? Read instructions at http://xml.apache.org/xerces-c/build.html
echo Also look at http://xml.apache.org/xerces-c/samples.html
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment