Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
ldb
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Timo Aaltonen
ldb
Commits
f4481e2d
Unverified
Commit
f4481e2d
authored
Sep 19, 2015
by
Jelmer Vernooij
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix clean.
parent
6f8c1888
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
2 deletions
+13
-2
debian/rules
debian/rules
+2
-2
man/ldb.3.xml
man/ldb.3.xml
+1
-0
man/ldbadd.1.xml
man/ldbadd.1.xml
+1
-0
man/ldbdel.1.xml
man/ldbdel.1.xml
+1
-0
man/ldbedit.1.xml
man/ldbedit.1.xml
+1
-0
man/ldbmodify.1.xml
man/ldbmodify.1.xml
+1
-0
man/ldbrename.1.xml
man/ldbrename.1.xml
+1
-0
man/ldbsearch.1.xml
man/ldbsearch.1.xml
+1
-0
wscript
wscript
+4
-0
No files found.
debian/rules
View file @
f4481e2d
...
...
@@ -46,8 +46,8 @@ override_dh_auto_clean:
# Waf should be doing this; see
# https://bugzilla.samba.org/show_bug.cgi?id=8855
rm -f buildtools/wafsamba/*.pyc \
buildtools
/wafadmin/*.pyc \
buildtools
/wafadmin/Tools/*.pyc
third_party/waf
/wafadmin/*.pyc \
third_party/waf
/wafadmin/Tools/*.pyc
override_dh_auto_build:
$(WAF) build
...
...
man/ldb.3.xml
View file @
f4481e2d
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry
id=
"ldb.3"
>
<refentryinfo><date>
2015-04-26
</date></refentryinfo>
<refmeta>
<refentrytitle>
ldb
</refentrytitle>
...
...
man/ldbadd.1.xml
View file @
f4481e2d
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry
id=
"ldbadd.1"
>
<refentryinfo><date>
2015-04-26
</date></refentryinfo>
<refmeta>
<refentrytitle>
ldbadd
</refentrytitle>
...
...
man/ldbdel.1.xml
View file @
f4481e2d
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry
id=
"ldbdel.1"
>
<refentryinfo><date>
2015-04-26
</date></refentryinfo>
<refmeta>
<refentrytitle>
ldbdel
</refentrytitle>
...
...
man/ldbedit.1.xml
View file @
f4481e2d
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry
id=
"ldbedit.1"
>
<refentryinfo><date>
2015-04-26
</date></refentryinfo>
<refmeta>
<refentrytitle>
ldbedit
</refentrytitle>
...
...
man/ldbmodify.1.xml
View file @
f4481e2d
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry
id=
"ldbmodify.1"
>
<refentryinfo><date>
2015-04-26
</date></refentryinfo>
<refmeta>
<refentrytitle>
ldbmodify
</refentrytitle>
...
...
man/ldbrename.1.xml
View file @
f4481e2d
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry
id=
"ldbrename.1"
>
<refentryinfo><date>
2015-04-26
</date></refentryinfo>
<refmeta>
<refentrytitle>
ldbrename
</refentrytitle>
...
...
man/ldbsearch.1.xml
View file @
f4481e2d
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<refentry
id=
"ldbsearch.1"
>
<refentryinfo><date>
2015-04-26
</date></refentryinfo>
<refmeta>
<refentrytitle>
ldbsearch
</refentrytitle>
...
...
wscript
View file @
f4481e2d
...
...
@@ -76,6 +76,10 @@ def configure(conf):
if
not
sys
.
platform
.
startswith
(
"openbsd"
):
conf
.
ADD_LDFLAGS
(
'-Wl,-no-undefined'
,
testflags
=
True
)
# Work around pthread bug on the hurd (#578432)
if
sys
.
platform
.
startswith
(
"gnu"
):
conf
.
ADD_LDFLAGS
(
'-pthread'
,
testflags
=
True
)
conf
.
DEFINE
(
'HAVE_CONFIG_H'
,
1
,
add_to_cflags
=
True
)
conf
.
SAMBA_CONFIG_H
()
...
...
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