Skip to content

Commit

Permalink
event/net/cares: remove obsolete library
Browse files Browse the repository at this point in the history
We have switched to systemd-resolved.
  • Loading branch information
MaxKellermann committed Nov 9, 2023
1 parent d6c8e94 commit 4dce778
Show file tree
Hide file tree
Showing 19 changed files with 0 additions and 815 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
sudo apt-get install -y --no-install-recommends \
meson \
libavahi-client-dev \
libc-ares-dev \
libsystemd-dev \
libdbus-1-dev \
libcap-dev \
Expand All @@ -53,7 +52,6 @@ jobs:
run: |
meson setup \
-Davahi=enabled \
-Dcares=enabled \
-Dcurl=enabled \
-Dlua=enabled \
-Dmariadb=enabled \
Expand Down
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ You need:

Optional dependencies:

- `c-ares <https://c-ares.org/>`__
- `libcurl <https://curl.haxx.se/>`__
- `libmariadb <https://mariadb.org/>`__
- `libpq <https://www.postgresql.org/>`__
Expand Down
99 changes: 0 additions & 99 deletions demo/cares/RunCares.cxx

This file was deleted.

12 changes: 0 additions & 12 deletions demo/cares/meson.build

This file was deleted.

82 changes: 0 additions & 82 deletions demo/co/RunCoLookup.cxx

This file was deleted.

11 changes: 0 additions & 11 deletions demo/co/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,6 @@ if pg_dep.found()
)
endif

if event_net_cares_dep.found()
executable(
'RunCoLookup',
'RunCoLookup.cxx',
include_directories: inc,
dependencies: [
event_net_cares_dep,
],
)
endif

if event_uring_dep.found()
executable(
'RunCoReadTextFile',
Expand Down
1 change: 0 additions & 1 deletion demo/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
subdir('avahi')
subdir('cares')
subdir('co')
subdir('curl')
subdir('io/linux')
Expand Down
2 changes: 0 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ inc = include_directories('src', 'fake', '.')

libcommon_require_avahi = get_option('avahi')
libcommon_require_cap = get_option('cap')
libcommon_require_cares = get_option('cares')
libcommon_require_curl = get_option('curl')
libcommon_require_lua = get_option('lua')
libcommon_require_mariadb = get_option('mariadb')
Expand Down Expand Up @@ -148,7 +147,6 @@ subdir('src/net/log')
if not get_option('fuzzer')
subdir('src/event')
subdir('src/event/net')
subdir('src/event/net/cares')
subdir('src/event/net/control')
subdir('src/event/net/djb')
subdir('src/event/net/log')
Expand Down
1 change: 0 additions & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
option('avahi', type: 'feature', description: 'Avahi support (using libavahi-client)')
option('cares', type: 'feature', description: 'c-ares support')
option('curl', type: 'feature', description: 'CURL support')
option('lua', type: 'feature', description: 'Lua support (using luajit)')
option('json', type: 'feature', description: 'JSON support (using nlohman_json)')
Expand Down
Loading

0 comments on commit 4dce778

Please sign in to comment.