Modify ↓
Ticket #64 (closed task: fixed)
Compilation de svn-commits
| Reported by: | timy_01 | Owned by: | thaeron |
|---|---|---|---|
| Priority: | minor | Milestone: | Version 1.7 |
| Component: | modules | Version: | 1.6.1 |
| Keywords: | Cc: |
Description
Dans la makefile du trunk il manque les lignes permettant de compiler svn-commit
+$(MAKE) svn-commits
# +$(MAKE) bind_python
#+$(MAKE) decrypt_ip bruteforce
strip-cross:
cross-strip --strip-all *.dll
# cross-strip --strip-all *.exe
strip-win:
strip --strip-all *.dll
# strip --strip-all *.exe
svn-commits.o: svn-commits.c ../NewSyndrome-module.h ssl.h
$(CC) $(flag) -DINTERNATIONAL -c -Wall svn-commits.c
svn-commits: svn-commits.o ssl.o
$(CC) $(link_flag) -lssl -lcrypto -g -o svn-commits$(ext_mod) svn-commits.o ssl.o $(sock_flag)
Attachments
Change History
comment:2 Changed 4 years ago by thaeron
- Status changed from new to closed
- Resolution set to fixed
C'est fait : http://cryptofractal.ath.cx/projects/newsyndrome/changeset/136
Au passage j'ai viré tous les -Wall en doublon du makefile
Note: See
TracTickets for help on using
tickets.
![(please configure the [header_logo] section in trac.ini)](http://cryptofractalx.ath.cx/imgs/ns-logo-complet.png)
Avec $(CFLAGS) et $(LDFLAGS) c'est mieux
svn-commits.o: svn-commits.c ../NewSyndrome-module.h ssl.h $(CC) $(CFLAGS) -DINTERNATIONAL -c -Wall svn-commits.c svn-commits: svn-commits.o ssl.o $(CC) $(LDFLAGS) -lssl -lcrypto -g -o svn-commits$(ext_mod) svn-commits.o ssl.o $(sock_flag)