Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
ab668b37f1dff603e378fa1add915a662be08723...ef7ab4e2a3b947b57f7895cb1a83ba7f7036b70b
Commits (2)
Add new hex object
· f821a540
Rob Swindell
authored
Jun 04, 2021
f821a540
Web server needs encode lib (for hex_decode)
· ef7ab4e2
Rob Swindell
authored
Jun 04, 2021
ef7ab4e2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
src/encode/objects.mk
src/encode/objects.mk
+1
-0
src/sbbs3/GNUmakefile
src/sbbs3/GNUmakefile
+1
-1
No files found.
src/encode/objects.mk
View file @
ef7ab4e2
...
...
@@ -11,6 +11,7 @@ OBJS = \
$(OBJODIR)$(DIRSEP)
uucode
$(OFILE)
\
$(OBJODIR)$(DIRSEP)
yenc
$(OFILE)
\
$(OBJODIR)$(DIRSEP)
lzh
$(OFILE)
\
$(OBJODIR)$(DIRSEP)
hex
$(OFILE)
\
$(OBJODIR)$(DIRSEP)
base64
$(OFILE)
src/sbbs3/GNUmakefile
View file @
ef7ab4e2
...
...
@@ -138,7 +138,7 @@ $(MAILSRVR): $(MAIL_OBJS)
# Web Server Link Rule
$(WEBSRVR)
:
$(WEB_OBJS)
@
echo
Linking
$@
$(QUIET)$(MKSHLIB)
$(LDFLAGS)
$(WEB_OBJS)
$(SHLIBOPTS)
-o
$@
$(QUIET)$(MKSHLIB)
$(LDFLAGS)
$(WEB_OBJS)
$(SHLIBOPTS)
-o
$@
$(ENCODE_LIBS)
# Services Link Rule
$(SERVICES)
:
$(SERVICE_OBJS)
...
...