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
c996bfcf
Unverified
Commit
c996bfcf
authored
Jan 11, 2021
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added pthread flags
parent
3814635a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
2 deletions
+14
-2
GNUmakefile.in
+2
-2
configure
+0
-0
configure.ac
+2
-0
src/Config.hpp.in
+10
-0
No files found.
GNUmakefile.in
View file @
c996bfcf
...
...
@@ -28,9 +28,9 @@
firstTarget
:
all
CXX
=
@CXX@
CXXFLAGS
=
@CPPFLAGS@ @CXXFLAGS@ @BOOST_CPPFLAGS@
CXXFLAGS
=
@CPPFLAGS@ @CXXFLAGS@ @BOOST_CPPFLAGS@
@PTHREAD_CFLAGS@
LDFLAGS
=
@LDFLAGS@ @LIBS@ @BOOST_LDFLAGS@
LIBS
=
@LIBS@
\
LIBS
=
@LIBS@
@PTHREAD_LIBS@
\
@BOOST_IOSTREAMS_LIB@
\
@BOOST_DATE_TIME_LIB@
...
...
configure
View file @
c996bfcf
This source diff could not be displayed because it is too large. You can
view the blob
instead.
configure.ac
View file @
c996bfcf
...
...
@@ -13,6 +13,8 @@ AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR([config/m4])
AC_CONFIG_HEADERS([src/Config.hpp])
AX_PTHREAD
AC_PREFIX_DEFAULT(/usr/local)
AC_CHECK_HEADER([filesystem], [], [AC_MSG_ERROR([The file <filesystem> is missing, perhaps you should install a more recent libstdc++ implementation.])])
...
...
src/Config.hpp.in
View file @
c996bfcf
...
...
@@ -30,6 +30,12 @@
/* Define to 1 if you have the `pow' function. */
#undef HAVE_POW
/* Define if you have POSIX threads libraries and header files. */
#undef HAVE_PTHREAD
/* Have PTHREAD_PRIO_INHERIT. */
#undef HAVE_PTHREAD_PRIO_INHERIT
/* Define to 1 if the system has the type `ptrdiff_t'. */
#undef HAVE_PTRDIFF_T
...
...
@@ -96,5 +102,9 @@
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* Define to necessary symbol if this constant uses a non-standard name on
your system. */
#undef PTHREAD_CREATE_JOINABLE
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
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