Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
678ff823
Commit
678ff823
authored
Nov 24, 2009
by
Joel Brobecker
Committed by
Joel Brobecker
Nov 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* zlib.m4: New file.
From-SVN: r154521
parent
108e2445
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
config/ChangeLog
+4
-0
config/zlib.m4
+18
-0
No files found.
config/ChangeLog
View file @
678ff823
2009-11-24 Joel Brobecker <brobecker@adacore.com>
* zlib.m4: New file.
2009-11-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2009-11-09 Jan Kratochvil <jan.kratochvil@redhat.com>
* largefile.m4 (ACX_LARGEFILE): Call AC_PLUGINS.
* largefile.m4 (ACX_LARGEFILE): Call AC_PLUGINS.
...
...
config/zlib.m4
0 → 100644
View file @
678ff823
dnl A function to check for zlib availability. zlib is used by default
dnl unless the user configured with --disable-nls.
AC_DEFUN([AM_ZLIB],
[
# See if the user specified whether he wants zlib support or not.
AC_ARG_WITH(zlib,
[ --with-zlib include zlib support (auto/yes/no) [default=auto]],
[], [with_zlib=auto])
if test "$with_zlib" != "no"; then
AC_SEARCH_LIBS(zlibVersion, z, [AC_CHECK_HEADERS(zlib.h)])
if test "$with_zlib" = "yes" -a "$ac_cv_header_zlib_h" != "yes"; then
AC_MSG_ERROR([zlib (libz) library was explicitly requested but not found])
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