mirror of
https://github.com/haad/proxychains.git
synced 2026-09-12 19:50:06 +05:00
Some fixes
This commit is contained in:
parent
bc653b680b
commit
80dc652d55
18
.github/workflows/buildci.yml
vendored
18
.github/workflows/buildci.yml
vendored
@ -22,10 +22,13 @@ jobs:
|
||||
run: ./proxychains4 -v
|
||||
|
||||
- name: Run tests
|
||||
run: ./src/proxychains -f dist/proxychains.conf curl -o /dev/null -v https://sme.sk
|
||||
run: ./src/proxychains -f dist/proxychains.conf on
|
||||
|
||||
- name: Run tests
|
||||
run: ./src/proxychains -f dist/proxychains.conf ping -c 1 sme.sk
|
||||
# - name: Run tests
|
||||
# run: ./src/proxychains -f dist/proxychains.conf curl -o /dev/null -v https://sme.sk
|
||||
|
||||
# - name: Run tests
|
||||
# run: ./src/proxychains -f dist/proxychains.conf ping -c 1 sme.sk
|
||||
build-macos:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
@ -41,9 +44,12 @@ jobs:
|
||||
run: ./proxychains4 -v
|
||||
|
||||
- name: Run tests
|
||||
run: ./src/proxychains -f dist/proxychains.conf curl -o /dev/null -v https://sme.sk
|
||||
run: ./src/proxychains -f dist/proxychains.conf on
|
||||
|
||||
- name: Run tests
|
||||
run: ./src/proxychains -f dist/proxychains.conf ping -t 1 sme.sk
|
||||
# - name: Run tests
|
||||
# run: ./src/proxychains -f dist/proxychains.conf curl -o /dev/null -v https://sme.sk
|
||||
|
||||
# - name: Run tests
|
||||
# run: ./src/proxychains -f dist/proxychains.conf ping -t 1 sme.sk
|
||||
|
||||
|
||||
|
||||
5
Makefile
5
Makefile
@ -44,12 +44,13 @@ CFLAGS_MAIN=-DLIB_DIR=\"$(libdir)\" -DINSTALL_PREFIX=\"$(prefix)\" -DDLL_NAME=\"
|
||||
|
||||
UNAME_S := $(shell uname -s)
|
||||
ifeq ($(UNAME_S),Linux)
|
||||
LDSO_SUFFIX = so
|
||||
LDSO_PATHNAME = libproxychains.$(LDSO_SUFFIX)
|
||||
LDSO_SUFFIX = so.4
|
||||
endif
|
||||
ifeq ($(UNAME_S),Darwin)
|
||||
LDSO_PATHNAME = libproxychains4.$(LDSO_SUFFIX)
|
||||
LDSO_SUFFIX = dylib
|
||||
endif
|
||||
LDSO_PATHNAME = libproxychains4.$(LDSO_SUFFIX)
|
||||
|
||||
|
||||
all: $(ALL_LIBS) $(ALL_TOOLS)
|
||||
|
||||
@ -49,6 +49,6 @@ char *get_config_path(char* default_path, char* pbuf, size_t bufsize) {
|
||||
return path;
|
||||
|
||||
err:
|
||||
perror("couldnt find configuration file");
|
||||
perror("couldn't find configuration file");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user