Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
b70d38dc
Commit
b70d38dc
authored
Aug 07, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile.am: move sources to libsystem.a
parent
a27d105d
Hide whitespace changes
Inline
Side-by-side
Showing
43 changed files
with
69 additions
and
67 deletions
+69
-67
Makefile.am
Makefile.am
+31
-29
ClientNew.cxx
src/ClientNew.cxx
+2
-2
Daemon.cxx
src/Daemon.cxx
+1
-1
Daemon.hxx
src/Daemon.hxx
+1
-1
DecoderThread.cxx
src/DecoderThread.cxx
+1
-1
InotifySource.cxx
src/InotifySource.cxx
+2
-2
Log.cxx
src/Log.cxx
+2
-2
Main.cxx
src/Main.cxx
+1
-1
MusicBuffer.cxx
src/MusicBuffer.cxx
+1
-1
OutputAll.cxx
src/OutputAll.cxx
+1
-1
OutputThread.cxx
src/OutputThread.cxx
+1
-1
PlayerThread.cxx
src/PlayerThread.cxx
+1
-1
SignalHandlers.cxx
src/SignalHandlers.cxx
+1
-1
Timer.cxx
src/Timer.cxx
+1
-1
UpdateGlue.cxx
src/UpdateGlue.cxx
+1
-1
BufferedSocket.cxx
src/event/BufferedSocket.cxx
+1
-1
EventFD.cxx
src/event/EventFD.cxx
+1
-1
EventPipe.cxx
src/event/EventPipe.cxx
+1
-1
FullyBufferedSocket.cxx
src/event/FullyBufferedSocket.cxx
+1
-1
MultiSocketMonitor.cxx
src/event/MultiSocketMonitor.cxx
+1
-1
ServerSocket.cxx
src/event/ServerSocket.cxx
+4
-4
SocketMonitor.cxx
src/event/SocketMonitor.cxx
+1
-1
FileSystem.hxx
src/fs/FileSystem.hxx
+1
-1
FileInputPlugin.cxx
src/input/FileInputPlugin.cxx
+1
-1
OssMixerPlugin.cxx
src/mixer/OssMixerPlugin.cxx
+1
-1
FifoOutputPlugin.cxx
src/output/FifoOutputPlugin.cxx
+1
-1
HttpdClient.cxx
src/output/HttpdClient.cxx
+1
-1
HttpdOutputPlugin.cxx
src/output/HttpdOutputPlugin.cxx
+2
-2
OssOutputPlugin.cxx
src/output/OssOutputPlugin.cxx
+1
-1
RecorderOutputPlugin.cxx
src/output/RecorderOutputPlugin.cxx
+1
-1
SolarisOutputPlugin.cxx
src/output/SolarisOutputPlugin.cxx
+1
-1
FatalError.cxx
src/system/FatalError.cxx
+0
-0
FatalError.hxx
src/system/FatalError.hxx
+0
-0
SocketError.hxx
src/system/SocketError.hxx
+0
-0
SocketUtil.cxx
src/system/SocketUtil.cxx
+0
-0
SocketUtil.hxx
src/system/SocketUtil.hxx
+0
-0
clock.c
src/system/clock.c
+0
-0
clock.h
src/system/clock.h
+0
-0
fd_util.c
src/system/fd_util.c
+0
-0
fd_util.h
src/system/fd_util.h
+0
-0
resolver.c
src/system/resolver.c
+0
-0
resolver.h
src/system/resolver.h
+0
-0
run_resolver.c
test/run_resolver.c
+1
-1
No files found.
Makefile.am
View file @
b70d38dc
...
...
@@ -9,6 +9,7 @@ bin_PROGRAMS = src/mpd
noinst_LIBRARIES
=
\
libutil.a
\
libsystem.a
\
libevent.a
\
libpcm.a
\
libconf.a
\
...
...
@@ -43,6 +44,7 @@ src_mpd_LDADD = \
$(MIXER_LIBS)
\
libconf.a
\
libevent.a
\
libsystem.a
\
libutil.a
\
libfs.a
\
$(SYSTEMD_DAEMON_LIBS)
\
...
...
@@ -54,7 +56,6 @@ mpd_headers = \
src/filter_internal.h
\
src/command.h
\
src/conf.h
\
src/fd_util.h
\
src/gerror.h
\
src/glib_compat.h
\
src/gcc.h
\
...
...
@@ -91,8 +92,6 @@ src_mpd_SOURCES = \
src/thread/PosixCond.hxx
\
src/thread/WindowsCond.hxx
\
src/thread/GLibCond.hxx
\
src/FatalError.cxx src/FatalError.hxx
\
src/clock.c src/clock.h
\
src/notify.cxx src/notify.hxx
\
src/AudioConfig.cxx src/AudioConfig.hxx
\
src/CheckAudioFormat.cxx src/CheckAudioFormat.hxx
\
...
...
@@ -135,7 +134,6 @@ src_mpd_SOURCES = \
src/DatabaseVisitor.hxx
\
src/DatabaseSelection.cxx src/DatabaseSelection.hxx
\
src/ExcludeList.cxx src/ExcludeList.hxx
\
src/fd_util.c
\
src/FilterConfig.cxx src/FilterConfig.hxx
\
src/FilterPlugin.cxx src/FilterPlugin.hxx
\
src/FilterRegistry.cxx src/FilterRegistry.hxx
\
...
...
@@ -166,7 +164,6 @@ src_mpd_SOURCES = \
src/Listen.cxx src/Listen.hxx
\
src/Log.cxx src/Log.hxx
\
src/ls.cxx
\
src/SocketError.hxx
\
src/io_error.h
\
src/IOThread.cxx src/IOThread.hxx
\
src/Main.cxx src/Main.hxx
\
...
...
@@ -210,8 +207,6 @@ src_mpd_SOURCES = \
src/SongPrint.cxx src/SongPrint.hxx
\
src/SongSave.cxx src/SongSave.hxx
\
src/SongSort.cxx src/SongSort.hxx
\
src/resolver.c src/resolver.h
\
src/SocketUtil.cxx src/SocketUtil.hxx
\
src/StateFile.cxx src/StateFile.hxx
\
src/Stats.cxx
\
src/TagType.h
\
...
...
@@ -285,6 +280,16 @@ libutil_a_SOURCES = \
src/util/byte_reverse.c src/util/byte_reverse.h
\
src/util/bit_reverse.c src/util/bit_reverse.h
# System library
libsystem_a_SOURCES
=
\
src/system/FatalError.cxx src/system/FatalError.hxx
\
src/system/fd_util.c src/system/fd_util.h
\
src/system/SocketUtil.cxx src/system/SocketUtil.hxx
\
src/system/SocketError.hxx
\
src/system/resolver.c src/system/resolver.h
\
src/system/clock.c src/system/clock.h
# Event loop library
libevent_a_SOURCES
=
\
...
...
@@ -1057,9 +1062,9 @@ test_read_conf_LDADD = \
test_read_conf_SOURCES
=
test
/read_conf.cxx
test_run_resolver_LDADD
=
\
libsystem.a
\
$(GLIB_LIBS)
test_run_resolver_SOURCES
=
test
/run_resolver.c
\
src/resolver.c
test_run_resolver_SOURCES
=
test
/run_resolver.c
test_DumpDatabase_LDADD
=
\
$(DB_LIBS)
\
...
...
@@ -1084,13 +1089,13 @@ test_run_input_LDADD = \
libconf.a
\
libutil.a
\
libevent.a
\
libsystem.a
\
libfs.a
\
$(GLIB_LIBS)
test_run_input_SOURCES
=
test
/run_input.cxx
\
test
/stdbin.h
\
src/IOThread.cxx
\
src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagSave.cxx
\
src/fd_util.c
src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagSave.cxx
if
ENABLE_ARCHIVE
...
...
@@ -1100,13 +1105,13 @@ test_visit_archive_LDADD = \
libconf.a
\
libutil.a
\
libevent.a
\
libsystem.a
\
libfs.a
\
$(GLIB_LIBS)
test_visit_archive_SOURCES
=
test
/visit_archive.cxx
\
src/IOThread.cxx
\
src/InputStream.cxx
\
src/Tag.cxx src/TagNames.c src/TagPool.cxx
\
src/fd_util.c
src/Tag.cxx src/TagNames.c src/TagPool.cxx
if
ENABLE_DESPOTIFY
test_visit_archive_SOURCES
+=
src/DespotifyUtils.cxx
...
...
@@ -1120,14 +1125,14 @@ test_dump_text_file_LDADD = \
libconf.a
\
libevent.a
\
libfs.a
\
libsystem.a
\
libutil.a
\
$(GLIB_LIBS)
test_dump_text_file_SOURCES
=
test
/dump_text_file.cxx
\
test
/stdbin.h
\
src/IOThread.cxx
\
src/Tag.cxx src/TagNames.c src/TagPool.cxx
\
src/TextInputStream.cxx
\
src/fd_util.c
src/TextInputStream.cxx
test_dump_playlist_LDADD
=
\
$(PLAYLIST_LIBS)
\
...
...
@@ -1138,6 +1143,7 @@ test_dump_playlist_LDADD = \
$(TAG_LIBS)
\
libconf.a
\
libevent.a
\
libsystem.a
\
libfs.a
\
libutil.a
\
libpcm.a
\
...
...
@@ -1149,8 +1155,7 @@ test_dump_playlist_SOURCES = test/dump_playlist.cxx \
src/TagHandler.cxx src/TagFile.cxx
\
src/CheckAudioFormat.cxx
\
src/TextInputStream.cxx
\
src/cue/CueParser.cxx src/cue/CueParser.hxx
\
src/fd_util.c
src/cue/CueParser.cxx src/cue/CueParser.hxx
if
HAVE_FLAC
test_dump_playlist_SOURCES
+=
\
...
...
@@ -1166,6 +1171,7 @@ test_run_decoder_LDADD = \
$(TAG_LIBS)
\
libconf.a
\
libevent.a
\
libsystem.a
\
libfs.a
\
libutil.a
\
$(GLIB_LIBS)
...
...
@@ -1174,7 +1180,6 @@ test_run_decoder_SOURCES = test/run_decoder.cxx \
src/IOThread.cxx
\
src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagHandler.cxx
\
src/ReplayGainInfo.cxx
\
src/fd_util.c
\
src/AudioFormat.cxx src/CheckAudioFormat.cxx
\
$(ARCHIVE_SRC)
\
$(INPUT_SRC)
\
...
...
@@ -1189,6 +1194,7 @@ test_read_tags_LDADD = \
$(TAG_LIBS)
\
libconf.a
\
libevent.a
\
libsystem.a
\
libfs.a
\
libutil.a
\
$(GLIB_LIBS)
...
...
@@ -1196,7 +1202,6 @@ test_read_tags_SOURCES = test/read_tags.cxx \
src/IOThread.cxx
\
src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagHandler.cxx
\
src/ReplayGainInfo.cxx
\
src/fd_util.c
\
src/CheckAudioFormat.cxx
\
$(DECODER_SRC)
...
...
@@ -1307,6 +1312,7 @@ test_run_output_LDADD = $(MPD_LIBS) \
libconf.a
\
libevent.a
\
libfs.a
\
libsystem.a
\
libutil.a
\
$(GLIB_LIBS)
test_run_output_SOURCES
=
test
/run_output.cxx
\
...
...
@@ -1316,11 +1322,9 @@ test_run_output_SOURCES = test/run_output.cxx \
src/CheckAudioFormat.cxx
\
src/AudioFormat.cxx
\
src/AudioParser.cxx
\
src/Timer.cxx
src/clock.c
\
src/Timer.cxx
\
src/Tag.cxx src/TagNames.c src/TagPool.cxx
\
src/Page.cxx
\
src/SocketUtil.cxx
\
src/resolver.c
\
src/OutputInit.cxx src/OutputFinish.cxx src/OutputList.cxx
\
src/OutputPlugin.cxx
\
src/MixerControl.cxx
\
...
...
@@ -1328,8 +1332,7 @@ test_run_output_SOURCES = test/run_output.cxx \
src/FilterPlugin.cxx
\
src/FilterConfig.cxx
\
src/AudioCompress/compress.c
\
src/ReplayGainInfo.cxx
\
src/fd_util.c
src/ReplayGainInfo.cxx
test_read_mixer_LDADD
=
\
libpcm.a
\
...
...
@@ -1338,13 +1341,13 @@ test_read_mixer_LDADD = \
libconf.a
\
libutil.a
\
libevent.a
\
libsystem.a
\
libfs.a
\
$(GLIB_LIBS)
test_read_mixer_SOURCES
=
test
/read_mixer.cxx
\
src/MixerControl.cxx
\
src/FilterPlugin.cxx
\
src/filter/VolumeFilterPlugin.cxx
\
src/fd_util.c
src/filter/VolumeFilterPlugin.cxx
if
ENABLE_BZIP2_TEST
TESTS
+=
test
/test_archive_bzip2.sh
...
...
@@ -1361,11 +1364,10 @@ endif
if
ENABLE_INOTIFY
noinst_PROGRAMS
+=
test
/run_inotify
test_run_inotify_SOURCES
=
test
/run_inotify.cxx
\
src/FatalError.cxx
\
src/fd_util.c
\
src/InotifySource.cxx
test_run_inotify_LDADD
=
\
libevent.a
\
libsystem.a
\
libutil.a
\
$(GLIB_LIBS)
endif
...
...
@@ -1393,9 +1395,9 @@ test_test_pcm_LDADD = \
test_test_queue_priority_SOURCES
=
\
src/Queue.cxx
\
src/fd_util.c
\
test
/test_queue_priority.cxx
test_test_queue_priority_LDADD
=
\
libsystem.a
\
libutil.a
\
$(GLIB_LIBS)
...
...
src/ClientNew.cxx
View file @
b70d38dc
...
...
@@ -22,9 +22,9 @@
#include "ClientList.hxx"
#include "Partition.hxx"
#include "Instance.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
extern
"C"
{
#include "resolver.h"
#include "
system/
resolver.h"
}
#include "Permission.hxx"
...
...
src/Daemon.cxx
View file @
b70d38dc
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "Daemon.hxx"
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
#include <glib.h>
...
...
src/Daemon.hxx
View file @
b70d38dc
...
...
@@ -46,7 +46,7 @@ daemonize_finish(void)
void
daemonize_kill
(
void
);
#else
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
static
inline
void
daemonize_kill
(
void
)
{
...
...
src/DecoderThread.cxx
View file @
b70d38dc
...
...
@@ -24,7 +24,7 @@
#include "DecoderError.hxx"
#include "DecoderPlugin.hxx"
#include "Song.hxx"
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
#include "Mapper.hxx"
#include "fs/Path.hxx"
#include "DecoderAPI.hxx"
...
...
src/InotifySource.cxx
View file @
b70d38dc
...
...
@@ -20,8 +20,8 @@
#include "config.h"
#include "InotifySource.hxx"
#include "util/fifo_buffer.h"
#include "fd_util.h"
#include "FatalError.hxx"
#include "
system/
fd_util.h"
#include "
system/
FatalError.hxx"
#include <glib.h>
...
...
src/Log.cxx
View file @
b70d38dc
...
...
@@ -20,8 +20,8 @@
#include "config.h"
#include "Log.hxx"
#include "conf.h"
#include "fd_util.h"
#include "FatalError.hxx"
#include "
system/
fd_util.h"
#include "
system/
FatalError.hxx"
#include "mpd_error.h"
#include <assert.h>
...
...
src/Main.cxx
View file @
b70d38dc
...
...
@@ -55,7 +55,7 @@
#include "AudioConfig.hxx"
#include "pcm/PcmResample.hxx"
#include "Daemon.hxx"
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
extern
"C"
{
#include "stats.h"
...
...
src/MusicBuffer.cxx
View file @
b70d38dc
...
...
@@ -22,7 +22,7 @@
#include "MusicChunk.hxx"
#include "thread/Mutex.hxx"
#include "util/SliceBuffer.hxx"
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
#include <assert.h>
...
...
src/OutputAll.cxx
View file @
b70d38dc
...
...
@@ -26,7 +26,7 @@
#include "MusicBuffer.hxx"
#include "MusicPipe.hxx"
#include "MusicChunk.hxx"
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
#include "conf.h"
#include "notify.hxx"
...
...
src/OutputThread.cxx
View file @
b70d38dc
...
...
@@ -29,7 +29,7 @@
#include "PlayerControl.hxx"
#include "MusicPipe.hxx"
#include "MusicChunk.hxx"
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
#include "gcc.h"
#include <glib.h>
...
...
src/PlayerThread.cxx
View file @
b70d38dc
...
...
@@ -26,7 +26,7 @@
#include "MusicChunk.hxx"
#include "Song.hxx"
#include "Main.hxx"
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
#include "CrossFade.hxx"
#include "PlayerControl.hxx"
#include "OutputAll.hxx"
...
...
src/SignalHandlers.cxx
View file @
b70d38dc
...
...
@@ -26,7 +26,7 @@
#include "Main.hxx"
#include "event/Loop.hxx"
#include "GlobalEvents.hxx"
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
#include <glib.h>
...
...
src/Timer.cxx
View file @
b70d38dc
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "Timer.hxx"
#include "AudioFormat.hxx"
#include "clock.h"
#include "
system/
clock.h"
#include <glib.h>
...
...
src/UpdateGlue.cxx
View file @
b70d38dc
...
...
@@ -33,7 +33,7 @@ extern "C" {
#include "Main.hxx"
#include "Instance.hxx"
#include "FatalError.hxx"
#include "
system/
FatalError.hxx"
#include <glib.h>
...
...
src/event/BufferedSocket.cxx
View file @
b70d38dc
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "BufferedSocket.hxx"
#include "SocketError.hxx"
#include "
system/
SocketError.hxx"
#include "util/fifo_buffer.h"
#include <assert.h>
...
...
src/event/EventFD.cxx
View file @
b70d38dc
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#ifdef USE_EVENTFD
#include "EventFD.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include "gcc.h"
#include <unistd.h>
...
...
src/event/EventPipe.cxx
View file @
b70d38dc
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "EventPipe.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include "gcc.h"
#include <unistd.h>
...
...
src/event/FullyBufferedSocket.cxx
View file @
b70d38dc
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "FullyBufferedSocket.hxx"
#include "SocketError.hxx"
#include "
system/
SocketError.hxx"
#include "util/fifo_buffer.h"
#include <assert.h>
...
...
src/event/MultiSocketMonitor.cxx
View file @
b70d38dc
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "MultiSocketMonitor.hxx"
#include "Loop.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include "gcc.h"
#include <assert.h>
...
...
src/event/ServerSocket.cxx
View file @
b70d38dc
...
...
@@ -24,11 +24,11 @@
#endif
#include "ServerSocket.hxx"
#include "SocketUtil.hxx"
#include "SocketError.hxx"
#include "
system/
SocketUtil.hxx"
#include "
system/
SocketError.hxx"
#include "event/SocketMonitor.hxx"
#include "resolver.h"
#include "fd_util.h"
#include "
system/
resolver.h"
#include "
system/
fd_util.h"
#include <sys/types.h>
#include <sys/stat.h>
...
...
src/event/SocketMonitor.cxx
View file @
b70d38dc
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "SocketMonitor.hxx"
#include "Loop.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include "gcc.h"
#include <assert.h>
...
...
src/fs/FileSystem.hxx
View file @
b70d38dc
...
...
@@ -21,7 +21,7 @@
#define MPD_FS_FILESYSTEM_HXX
#include "check.h"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include "Path.hxx"
...
...
src/input/FileInputPlugin.cxx
View file @
b70d38dc
...
...
@@ -22,7 +22,7 @@
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include "open.h"
#include "io_error.h"
...
...
src/mixer/OssMixerPlugin.cxx
View file @
b70d38dc
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "MixerInternal.hxx"
#include "OutputAPI.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include <glib.h>
...
...
src/output/FifoOutputPlugin.cxx
View file @
b70d38dc
...
...
@@ -21,7 +21,7 @@
#include "FifoOutputPlugin.hxx"
#include "OutputAPI.hxx"
#include "Timer.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include "open.h"
#include <glib.h>
...
...
src/output/HttpdClient.cxx
View file @
b70d38dc
...
...
@@ -23,7 +23,7 @@
#include "util/fifo_buffer.h"
#include "Page.hxx"
#include "IcyMetaDataServer.hxx"
#include "SocketError.hxx"
#include "
system/
SocketError.hxx"
#include <assert.h>
#include <string.h>
...
...
src/output/HttpdOutputPlugin.cxx
View file @
b70d38dc
...
...
@@ -24,10 +24,10 @@
#include "OutputAPI.hxx"
#include "EncoderPlugin.hxx"
#include "EncoderList.hxx"
#include "resolver.h"
#include "
system/
resolver.h"
#include "Page.hxx"
#include "IcyMetaDataServer.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include "Main.hxx"
#include <assert.h>
...
...
src/output/OssOutputPlugin.cxx
View file @
b70d38dc
...
...
@@ -21,7 +21,7 @@
#include "OssOutputPlugin.hxx"
#include "OutputAPI.hxx"
#include "MixerList.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include <glib.h>
...
...
src/output/RecorderOutputPlugin.cxx
View file @
b70d38dc
...
...
@@ -22,7 +22,7 @@
#include "OutputAPI.hxx"
#include "EncoderPlugin.hxx"
#include "EncoderList.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include "open.h"
#include <assert.h>
...
...
src/output/SolarisOutputPlugin.cxx
View file @
b70d38dc
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "SolarisOutputPlugin.hxx"
#include "OutputAPI.hxx"
#include "fd_util.h"
#include "
system/
fd_util.h"
#include <glib.h>
...
...
src/FatalError.cxx
→
src/
system/
FatalError.cxx
View file @
b70d38dc
File moved
src/FatalError.hxx
→
src/
system/
FatalError.hxx
View file @
b70d38dc
File moved
src/SocketError.hxx
→
src/
system/
SocketError.hxx
View file @
b70d38dc
File moved
src/SocketUtil.cxx
→
src/
system/
SocketUtil.cxx
View file @
b70d38dc
File moved
src/SocketUtil.hxx
→
src/
system/
SocketUtil.hxx
View file @
b70d38dc
File moved
src/clock.c
→
src/
system/
clock.c
View file @
b70d38dc
File moved
src/clock.h
→
src/
system/
clock.h
View file @
b70d38dc
File moved
src/fd_util.c
→
src/
system/
fd_util.c
View file @
b70d38dc
File moved
src/fd_util.h
→
src/
system/
fd_util.h
View file @
b70d38dc
File moved
src/resolver.c
→
src/
system/
resolver.c
View file @
b70d38dc
File moved
src/resolver.h
→
src/
system/
resolver.h
View file @
b70d38dc
File moved
test/run_resolver.c
View file @
b70d38dc
...
...
@@ -18,7 +18,7 @@
*/
#include "config.h"
#include "resolver.h"
#include "
system/
resolver.h"
#ifdef WIN32
#include <ws2tcpip.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