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
39b89619
Commit
39b89619
authored
Feb 24, 2010
by
Martin Lucina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update OpenPGM to 2.0.24 (stable)
parent
ccd47f1e
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
8 deletions
+9
-8
.gitignore
.gitignore
+1
-0
configure.in
configure.in
+8
-8
libpgm-2.0.23rc8.tar.bz2
foreign/openpgm/libpgm-2.0.23rc8.tar.bz2
+0
-0
libpgm-2.0.24.tar.gz
foreign/openpgm/libpgm-2.0.24.tar.gz
+0
-0
No files found.
.gitignore
View file @
39b89619
...
...
@@ -49,3 +49,4 @@ builds/msvc/*/Debug
builds/msvc/*/Release
foreign/openpgm/*
!foreign/openpgm/*.tar.bz2
!foreign/openpgm/*.tar.gz
configure.in
View file @
39b89619
...
...
@@ -453,7 +453,7 @@ fi
# PGM extension
pgm_ext="no"
pgm_basename="libpgm-2.0.2
3rc8
"
pgm_basename="libpgm-2.0.2
4
"
AC_SUBST(pgm_basename)
...
...
@@ -507,10 +507,10 @@ if test "x$with_pgm_ext" != "xno"; then
LIBZMQ_EXTRA_CXXFLAGS="${LIBZMQ_EXTRA_CXXFLAGS} ${GLIB_CFLAGS} "
LIBZMQ_EXTRA_LDFLAGS="${LIBZMQ_EXTRA_LDFLAGS} ${GLIB_LIBS} "
#
Bunzip2
, Perl and Python are required duing PGM build
AC_CHECK_PROG(have_
bunzip2, bunzip2
, yes, no)
if test "x$have_
bunzip2
" != "xyes"; then
AC_MSG_ERROR([
bunzip2
is required for building the PGM extension.])
#
Gzip
, Perl and Python are required duing PGM build
AC_CHECK_PROG(have_
gzip, gzip
, yes, no)
if test "x$have_
gzip
" != "xyes"; then
AC_MSG_ERROR([
gzip
is required for building the PGM extension.])
fi
AC_CHECK_PROG(have_perl, perl, yes, no)
if test "x$have_perl" != "xyes"; then
...
...
@@ -524,9 +524,9 @@ if test "x$with_pgm_ext" != "xno"; then
fi
# Unpack libpgm
AC_MSG_NOTICE([Unpacking ${pgm_basename}.tar.
bz2
])
if !
bunzip2 -c foreign/openpgm/${pgm_basename}.tar.bz2
| tar -xf - -C foreign/openpgm/; then
AC_MSG_ERROR([cannot unpack the foreign/openpgm/${pgm_basename}.tar.
bz2
file.])
AC_MSG_NOTICE([Unpacking ${pgm_basename}.tar.
gz
])
if !
gzip -dc foreign/openpgm/${pgm_basename}.tar.gz
| tar -xf - -C foreign/openpgm/; then
AC_MSG_ERROR([cannot unpack the foreign/openpgm/${pgm_basename}.tar.
gz
file.])
fi
# Success!
...
...
foreign/openpgm/libpgm-2.0.23rc8.tar.bz2
deleted
100644 → 0
View file @
ccd47f1e
File deleted
foreign/openpgm/libpgm-2.0.24.tar.gz
0 → 100644
View file @
39b89619
File added
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