Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
senf
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wiback
senf
Commits
11f65d0b
Commit
11f65d0b
authored
17 years ago
by
g0dil
Browse files
Options
Downloads
Patches
Plain Diff
Add libsenf_filesystem
parent
5255d3bc
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
SConstruct
+2
-1
2 additions, 1 deletion
SConstruct
debian/control
+5
-4
5 additions, 4 deletions
debian/control
senfscons/SENFSCons.py
+1
-0
1 addition, 0 deletions
senfscons/SENFSCons.py
with
8 additions
and
5 deletions
SConstruct
+
2
−
1
View file @
11f65d0b
...
@@ -70,6 +70,7 @@ deb Build debian source and binary package
...
@@ -70,6 +70,7 @@ deb Build debian source and binary package
debsrc Build debian source package
debsrc Build debian source package
debbin Build debian binary package
debbin Build debian binary package
linklint Check links of doxygen documentation with
'
linklint
'
linklint Check links of doxygen documentation with
'
linklint
'
fixlinks Fix broken links in doxygen documentation
"""
)
"""
)
if
os
.
environ
.
get
(
'
debian_build
'
):
if
os
.
environ
.
get
(
'
debian_build
'
):
...
@@ -86,7 +87,7 @@ def configFilesOpts(target, source, env, for_signature):
...
@@ -86,7 +87,7 @@ def configFilesOpts(target, source, env, for_signature):
env
.
Append
(
env
.
Append
(
CPPPATH
=
[
'
#/include
'
],
CPPPATH
=
[
'
#/include
'
],
LIBS
=
[
'
iberty
'
,
'
$BOOSTREGEXLIB
'
],
LIBS
=
[
'
iberty
'
,
'
$BOOSTREGEXLIB
'
,
'
$BOOSTFSLIB
'
],
DOXY_XREF_TYPES
=
[
'
bug
'
,
'
fixme
'
,
'
todo
'
,
'
idea
'
],
DOXY_XREF_TYPES
=
[
'
bug
'
,
'
fixme
'
,
'
todo
'
,
'
idea
'
],
DOXY_HTML_XSL
=
'
#/doclib/html-munge.xsl
'
,
DOXY_HTML_XSL
=
'
#/doclib/html-munge.xsl
'
,
ENV
=
{
'
TODAY
'
:
str
(
datetime
.
date
.
today
()),
ENV
=
{
'
TODAY
'
:
str
(
datetime
.
date
.
today
()),
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
5
−
4
View file @
11f65d0b
...
@@ -3,15 +3,16 @@ Priority: extra
...
@@ -3,15 +3,16 @@ Priority: extra
Maintainer: Stefan Bund <senf-dev@lists.berlios.de>
Maintainer: Stefan Bund <senf-dev@lists.berlios.de>
Build-Depends: debhelper (>= 5), scons, binutils-dev, libboost-dev,
Build-Depends: debhelper (>= 5), scons, binutils-dev, libboost-dev,
libboost-test-dev, libboost-date-time-dev, libboost-regex-dev,
libboost-test-dev, libboost-date-time-dev, libboost-regex-dev,
doxygen, dia, tidy, xsltproc,
graphviz, perl-base, linklint
libboost-filesystem-dev,
doxygen, dia, tidy, xsltproc,
Standards-Version: 3.7.2
graphviz, perl-base, linklint
Section: libs
Standards-Version: 3.7.2
Section: libs
Package: libsenf-dev
Package: libsenf-dev
Section: libdevel
Section: libdevel
Architecture: any
Architecture: any
Depends: binutils-dev, libboost-dev, libboost-regex-dev,
Depends: binutils-dev, libboost-dev, libboost-regex-dev,
libboost-date-time-dev, libboost-thread-dev
libboost-date-time-dev, libboost-thread-dev,
libboost-filesystem-dev
Description: SENF Extensible Network Framework, development files
Description: SENF Extensible Network Framework, development files
The SENF Simple and Extensible Network Framework aims to be a
The SENF Simple and Extensible Network Framework aims to be a
complete set of libraries to facilitate the development of network
complete set of libraries to facilitate the development of network
...
...
This diff is collapsed.
Click to expand it.
senfscons/SENFSCons.py
+
1
−
0
View file @
11f65d0b
...
@@ -150,6 +150,7 @@ def FinalizeBoost(env):
...
@@ -150,6 +150,7 @@ def FinalizeBoost(env):
env
[
'
BOOSTTESTLIB
'
]
=
'
libboost_unit_test_framework
'
+
env
[
'
BOOST_VARIANT
'
]
env
[
'
BOOSTTESTLIB
'
]
=
'
libboost_unit_test_framework
'
+
env
[
'
BOOST_VARIANT
'
]
env
[
'
BOOSTREGEXLIB
'
]
=
'
libboost_regex
'
+
env
[
'
BOOST_VARIANT
'
]
env
[
'
BOOSTREGEXLIB
'
]
=
'
libboost_regex
'
+
env
[
'
BOOST_VARIANT
'
]
env
[
'
BOOSTFSLIB
'
]
=
'
libboost_filesystem
'
+
env
[
'
BOOST_VARIANT
'
]
env
.
Append
(
LIBPATH
=
[
'
$BOOST_LIBDIR
'
],
env
.
Append
(
LIBPATH
=
[
'
$BOOST_LIBDIR
'
],
CPPPATH
=
[
'
$BOOST_INCLUDES
'
])
CPPPATH
=
[
'
$BOOST_INCLUDES
'
])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment