Skip to content

Commit

Permalink
remove xercesc depends
Browse files Browse the repository at this point in the history
  • Loading branch information
ctapmex committed Aug 24, 2024
1 parent 05b72a6 commit 2467ae3
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ freebsd_test_task:
freebsd_instance:
image_family: freebsd-14-0
name: cirrus/FreeBSD
install_script: pkg install -y cmake git pkgconf bash wx32-gtk3 libssh openssl libnfs neon libarchive samba416 pcre uchardet xerces-c3
install_script: pkg install -y cmake git pkgconf bash wx32-gtk3 libssh openssl libnfs neon libarchive samba416 pcre uchardet libxml2
script: mkdir build && cd build && cmake .. && make -j $(getconf _NPROCESSORS_ONLN) && ./install/far2l --help

macos_test_task:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
run: >
sudo apt-get update;
sudo apt-get -y install
libuchardet-dev libxerces-c-dev libwxgtk3.0-gtk3-dev
libuchardet-dev libxml2-dev libwxgtk3.0-gtk3-dev
libx11-dev libxi-dev
libssl-dev libsmbclient-dev libnfs-dev libneon27-dev libssh-dev
libarchive-dev libpcre3-dev
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
run: >
sudo apt-get update;
sudo apt-get -y install
libuchardet-dev libxerces-c-dev libwxgtk3.0-gtk3-dev
libuchardet-dev libxml2-dev libwxgtk3.0-gtk3-dev
libx11-dev libxi-dev
libssl-dev libsmbclient-dev libnfs-dev libneon27-dev libssh-dev
libarchive-dev libpcre3-dev
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
run: >
sudo apt-get update;
sudo apt-get -y install
libuchardet-dev libxerces-c-dev libwxgtk3.2-dev
libuchardet-dev libxml2-dev libwxgtk3.2-dev
libx11-dev libxi-dev
libssl-dev libsmbclient-dev libnfs-dev libneon27-dev libssh-dev
libarchive-dev libpcre3-dev
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
# libx11, openssl is already installed
run: >
brew install
uchardet xerces-c wxwidgets
uchardet libxml2 wxwidgets
libxi
samba libnfs neon libssh
libarchive pcre
Expand Down
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ matrix:
- g++-5
- cmake
- libwxgtk3.0-dev
- libxerces-c-dev
- libxml2-dev
- libuchardet-dev
- libssh-dev
- libsmbclient-dev
Expand All @@ -40,7 +40,7 @@ matrix:
- g++-6
- cmake
- libwxgtk3.0-dev
- libxerces-c-dev
- libxml2-dev
- libuchardet-dev
- libssh-dev
- libsmbclient-dev
Expand All @@ -64,7 +64,7 @@ matrix:
- clang-3.6
- cmake
- libwxgtk3.0-dev
- libxerces-c-dev
- libxml2-dev
- libuchardet-dev
- libssh-dev
- libsmbclient-dev
Expand All @@ -88,7 +88,7 @@ matrix:
- clang-3.7
- cmake
- libwxgtk3.0-dev
- libxerces-c-dev
- libxml2-dev
- libuchardet-dev
- libssh-dev
- libsmbclient-dev
Expand Down
2 changes: 1 addition & 1 deletion Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ brew "pkg-config"
brew "uchardet"
brew "wget"
brew "wxwidgets"
brew "xerces-c"
brew "libxml2"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ See also [Community packages & binaries](#community_bins)
* `libwxgtk3.0-gtk3-dev` (or `libwxgtk3.2-dev` in newer distributions, or `libwxgtk3.0-dev` in older ones, _optional_ - needed for **GUI backend**, not needed with `-DUSEWX=no`)
* `libx11-dev` (_optional_ - needed for **X11 extension** that provides better UX for TTY backend wherever X11 is available)
* `libxi-dev` (_optional_ - needed for **X11/Xi extension** that provides best UX for TTY backend wherever X11 Xi extension is available)
* `libxerces-c-dev` (_optional_ - needed for **Colorer plugin**, not needed with `-DCOLORER=no`)
* `libxml2-dev` (_optional_ - needed for **Colorer plugin**, not needed with `-DCOLORER=no`)
* `libuchardet-dev` (_optional_ - needed for **auto charset detection**, not needed with `-DUSEUCD=no`)
* `libssh-dev` (_optional_ - needed for **NetRocks/SFTP**)
* `libssl-dev` (_optional_ - needed for **NetRocks/FTPS**)
Expand Down
2 changes: 1 addition & 1 deletion dependencies-minimal.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
libwxgtk3.0-gtk3-dev
libuchardet-dev
libxerces-c-dev
libxml2-dev
2 changes: 1 addition & 1 deletion dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ libx11-dev
libxi-dev

libuchardet-dev
libxerces-c-dev
libxml2-dev

libarchive-dev
libssh-dev
Expand Down

0 comments on commit 2467ae3

Please sign in to comment.