Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dbus
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
238
Issues
238
List
Boards
Labels
Service Desk
Milestones
Merge Requests
28
Merge Requests
28
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dbus
dbus
Commits
7f3af474
Commit
7f3af474
authored
Mar 04, 2007
by
Ralf Habacker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.in,test/test-sleep-forever.c,test/test-names.c:
added configure check for unistd.h.
parent
4d568118
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
1 deletion
+14
-1
ChangeLog
ChangeLog
+5
-0
configure.in
configure.in
+2
-0
test/name-test/test-names.c
test/name-test/test-names.c
+3
-1
test/test-sleep-forever.c
test/test-sleep-forever.c
+4
-0
No files found.
ChangeLog
View file @
7f3af474
2007-03-04 Ralf Habacker <ralf.habacker@freenet.de>
* configure.in,test/test-sleep-forever.c,test/test-names.c:
added configure check for unistd.h.
2007-03-04 Ralf Habacker <ralf.habacker@freenet.de>
* test/Makefile.am: fixed test data copy problem in
...
...
configure.in
View file @
7f3af474
...
...
@@ -568,6 +568,8 @@ AC_CHECK_HEADERS(execinfo.h, [AC_CHECK_FUNCS(backtrace)])
AC_CHECK_HEADERS(errno.h)
AC_CHECK_HEADERS(unistd.h)
# checking for a posix version of getpwnam_r
# if we are cross compiling and can not run the test
# assume getpwnam_r is the posix version
...
...
test/name-test/test-names.c
View file @
7f3af474
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <dbus/dbus.h>
#include <dbus/dbus-connection-internal.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#define REMOVE_CONNECTION 0
#define ADD_CONNECTION 1
...
...
test/test-sleep-forever.c
View file @
7f3af474
/* This is a process that just sleeps infinitely. */
#include <config.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
int
main
(
int
argc
,
char
**
argv
)
...
...
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