Modify

Ticket #64 (closed task: fixed)

Opened 4 years ago

Last modified 4 years ago

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:1 Changed 4 years ago by timy_01

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)

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

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.