Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
965fb775
Commit
965fb775
authored
Oct 04, 2010
by
Martin Lucina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.in: OpenPGM no longer requires pkg-config
parent
d62d721f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
11 deletions
+3
-11
configure.in
configure.in
+3
-11
No files found.
configure.in
View file @
965fb775
...
@@ -236,10 +236,9 @@ AC_CHECK_HEADERS(ifaddrs.h, [AC_DEFINE(ZMQ_HAVE_IFADDRS, 1, [Have ifaddrs.h head
...
@@ -236,10 +236,9 @@ AC_CHECK_HEADERS(ifaddrs.h, [AC_DEFINE(ZMQ_HAVE_IFADDRS, 1, [Have ifaddrs.h head
# Use c++ in subsequent tests
# Use c++ in subsequent tests
AC_LANG(C++)
AC_LANG(C++)
# pkg-config is used if found, and is required for builds with OpenPGM.
# pkg-config is used if found, however, we need to provide a way to disable it
# However, we need to provide a way to disable it entirely when the user
# entirely when the user knows what she's doing and it's use is undesirable,
# knows what she's doing and it's use is undesirable, such as when
# such as when cross-compiling.
# cross-compiling.
AC_ARG_WITH([pkg-config], [AS_HELP_STRING([--without-pkg-config],
AC_ARG_WITH([pkg-config], [AS_HELP_STRING([--without-pkg-config],
[do not use pkg-config [default=no]])])
[do not use pkg-config [default=no]])])
if test "x$with_pkg_config" != "xno"; then
if test "x$with_pkg_config" != "xno"; then
...
@@ -302,13 +301,6 @@ if test "x$with_pgm_ext" != "xno"; then
...
@@ -302,13 +301,6 @@ if test "x$with_pgm_ext" != "xno"; then
esac
esac
AC_MSG_RESULT([yes])
AC_MSG_RESULT([yes])
# Test if we have pkg-config
if test "x$with_pkg_config" != "xno"; then
if test "x$have_pkg_config" != "xyes"; then
AC_MSG_ERROR([the --with-pgm option requires that pkg-config be installed.]);
fi
fi
# Gzip, Perl and Python are required duing PGM build
# Gzip, Perl and Python are required duing PGM build
AC_CHECK_PROG(have_gzip, gzip, yes, no)
AC_CHECK_PROG(have_gzip, gzip, yes, no)
if test "x$have_gzip" != "xyes"; then
if test "x$have_gzip" != "xyes"; then
...
...
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