Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
libcifpp
Commits
5a71dbec
Commit
5a71dbec
authored
Sep 26, 2020
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compatibility with libstdc++ (LLVM) and BSD install
parent
6675768a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
4 deletions
+9
-4
GNUmakefile.in
+6
-3
include/cif++/Cif++.hpp
+1
-0
src/Cif++.cpp
+1
-1
src/PDB2Cif.cpp
+1
-0
No files found.
GNUmakefile.in
View file @
5a71dbec
...
...
@@ -223,14 +223,17 @@ HEADERS = \
install-lib
:
lib
install
-d
$(libdir)
$(LIBTOOL)
--mode
=
install install
$(LIB_TARGET)
$(libdir)
install
-d
$(DATADIR)
/dictionaries
for
d
in
mmcif_ddl.dic mmcif_pdbx.dic
;
do
\
install
-
D
-
m644
rsrc/dictionaries/
$$
d
$(DATADIR)
/dictionaries/
$$
d
;
\
install
-m644
rsrc/dictionaries/
$$
d
$(DATADIR)
/dictionaries/
$$
d
;
\
done
.PHONY
:
install-dev
install-dev
:
for
f
in
$(HEADERS)
;
do
install
-D
include/cif++/
$$
f
$(includedir)
/cif++/
$$
f
;
done
install
-m
644
-D
$(LIB_NAME)
.pc
$(pkgconfigdir)
/
$(LIB_NAME)
.pc
install
-d
$(includedir)
/cif++
for
f
in
$(HEADERS)
;
do
install include/cif++/
$$
f
$(includedir)
/cif++/
$$
f
;
done
install
-d
$(pkgconfigdir)
install
-m
644
$(LIB_NAME)
.pc
$(pkgconfigdir)
/
$(LIB_NAME)
.pc
.PHONY
:
install
install
:
install-lib install-dev
...
...
include/cif++/Cif++.hpp
View file @
5a71dbec
...
...
@@ -32,6 +32,7 @@
#include <regex>
#include <iostream>
#include <sstream>
#include <set>
#include <list>
...
...
src/Cif++.cpp
View file @
5a71dbec
...
...
@@ -630,7 +630,7 @@ RowComparator::RowComparator(Category* cat, KeyIter b, KeyIter e)
using
namespace
std
::
placeholders
;
mComp
.
emplace_back
(
ix
,
bind
(
&
ValidateType
::
compare
,
tv
,
_1
,
_2
));
mComp
.
emplace_back
(
ix
,
std
::
bind
(
&
ValidateType
::
compare
,
tv
,
_1
,
_2
));
}
}
...
...
src/PDB2Cif.cpp
View file @
5a71dbec
...
...
@@ -29,6 +29,7 @@
#include <map>
#include <set>
#include <system_error>
#include <stack>
#include <boost/date_time/gregorian/gregorian.hpp>
#include <boost/algorithm/string.hpp>
...
...
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