Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
67473263
Commit
67473263
authored
Nov 29, 2012
by
Stefan Krah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #16534: On HP-UX ac_cv_olimit_ok=yes is a false positive.
parent
3a237ebc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
configure
configure
+8
-1
configure.ac
configure.ac
+8
-1
No files found.
configure
View file @
67473263
...
...
@@ -5792,7 +5792,14 @@ fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_cv_olimit_ok
"
>
&5
$as_echo
"
$ac_cv_olimit_ok
"
>
&6
;
}
if
test
$ac_cv_olimit_ok
=
yes
;
then
BASECFLAGS
=
"
$BASECFLAGS
-Olimit 1500"
case
$ac_sys_system
in
# Issue #16534: On HP-UX ac_cv_olimit_ok=yes is a false positive.
HP-UX
*
)
;;
*
)
BASECFLAGS
=
"
$BASECFLAGS
-Olimit 1500"
;;
esac
fi
fi
...
...
configure.ac
View file @
67473263
...
...
@@ -1203,7 +1203,14 @@ else
CC="$ac_save_cc"])
AC_MSG_RESULT($ac_cv_olimit_ok)
if test $ac_cv_olimit_ok = yes; then
BASECFLAGS="$BASECFLAGS -Olimit 1500"
case $ac_sys_system in
# Issue #16534: On HP-UX ac_cv_olimit_ok=yes is a false positive.
HP-UX*)
;;
*)
BASECFLAGS="$BASECFLAGS -Olimit 1500"
;;
esac
fi
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment