Skip to content

Commit b483a59

Browse files
authored
Merge pull request #116 from wipedlifepotato/sonya
sonya comment
2 parents e3fc5e8 + 3457122 commit b483a59

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

.github/workflows/build-and-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
build/regaddralias
5656
build/x25519
5757
build/verifyhost
58-
build/autoconf
58+
build/autoconf_i2pd
5959
6060
build-macos:
6161
name: Build macOS with UPnP ON
@@ -106,7 +106,7 @@ jobs:
106106
build/regaddralias
107107
build/x25519
108108
build/verifyhost
109-
build/autoconf
109+
build/autoconf_i2pd
110110
111111
build-macos-legacy:
112112
name: Build macOS Legacy with UPnP ON
@@ -157,7 +157,7 @@ jobs:
157157
build/regaddralias
158158
build/x25519
159159
build/verifyhost
160-
build/autoconf
160+
build/autoconf_i2pd
161161
162162
build-freebsd:
163163
name: Build FreeBSD with UPnP ON
@@ -203,7 +203,7 @@ jobs:
203203
build/regaddralias
204204
build/x25519
205205
build/verifyhost
206-
build/autoconf
206+
build/autoconf_i2pd
207207
208208
build-windows-ucrt:
209209
name: Build Windows UCRT x64
@@ -251,7 +251,7 @@ jobs:
251251
./regaddralias.exe
252252
./x25519.exe
253253
./verifyhost.exe
254-
./autoconf.exe
254+
./autoconf_i2pd.exe
255255
256256
build-windows-arm:
257257
name: Build Windows ARM64
@@ -299,7 +299,7 @@ jobs:
299299
./regaddralias.exe
300300
./x25519.exe
301301
./verifyhost.exe
302-
./autoconf.exe
302+
./autoconf_i2pd.exe
303303
304304
release:
305305
name: Create Continuous Release

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ offlinekeys
2020
regaddr_3ld
2121
verifyhost
2222
x25519
23+
autoconf_i2pd
2324
*.exe
2425

2526
# private key files

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ set(TOOLS
407407
regaddralias
408408
x25519
409409
verifyhost
410-
autoconf
410+
autoconf_i2pd
411411
)
412412

413413
foreach(tool IN LISTS TOOLS)

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ endif
4949
# -------------------------
5050
# Targets
5151
# -------------------------
52-
all: $(I2PD_LIB) vain keygen keyinfo famtool routerinfo regaddr regaddr_3ld i2pbase64 offlinekeys b33address regaddralias x25519 verifyhost autoconf
52+
all: $(I2PD_LIB) vain keygen keyinfo famtool routerinfo regaddr regaddr_3ld i2pbase64 offlinekeys b33address regaddralias x25519 verifyhost autoconf_i2pd
5353

5454
vain: vain.o $(I2PD_LIB)
5555
$(CXX) -o vain $(LDFLAGS) vain.o $(LDLIBS)
5656

57-
autoconf: autoconf.o $(I2PD_LIB)
58-
$(CXX) -o autoconf $(DEFINES) $(LDFLAGS) autoconf.o $(LDLIBS)
57+
autoconf_i2pd: autoconf_i2pd.o $(I2PD_LIB)
58+
$(CXX) -o autoconf_i2pd $(DEFINES) $(LDFLAGS) autoconf_i2pd.o $(LDLIBS)
5959

6060
routerinfo: routerinfo.o $(I2PD_LIB)
6161
$(CXX) -o routerinfo $(LDFLAGS) routerinfo.o $(LDLIBS)
@@ -117,14 +117,14 @@ clean-obj:
117117
rm -f $(wildcard *.o)
118118

119119
stripall:
120-
strip b33address famtool i2pbase64 keygen keyinfo offlinekeys regaddr regaddr_3ld regaddralias routerinfo x25519 verifyhost vain autoconf
120+
strip b33address famtool i2pbase64 keygen keyinfo offlinekeys regaddr regaddr_3ld regaddralias routerinfo x25519 verifyhost vain autoconf_i2pd
121121

122122
builddir:
123123
mkdir -p build
124-
mv b33address famtool i2pbase64 keygen keyinfo offlinekeys regaddr regaddr_3ld regaddralias routerinfo x25519 verifyhost vain autoconf build/ || true
124+
mv b33address famtool i2pbase64 keygen keyinfo offlinekeys regaddr regaddr_3ld regaddralias routerinfo x25519 verifyhost vain autoconf_i2pd build/ || true
125125

126126
clean-bin:
127-
rm -f b33address famtool i2pbase64 keygen keyinfo offlinekeys regaddr regaddr_3ld regaddralias routerinfo x25519 verifyhost vain autoconf
127+
rm -f b33address famtool i2pbase64 keygen keyinfo offlinekeys regaddr regaddr_3ld regaddralias routerinfo x25519 verifyhost vain autoconf_i2pd
128128

129129
clean: clean-i2pd clean-obj clean-bin
130130

File renamed without changes.

0 commit comments

Comments
 (0)