Changes between Initial Version and Version 1 of Ticket #38665
- Timestamp:
- Apr 4, 2013, 7:30:19 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #38665
- Property Owner changed from macports-tickets@… to cal@…
-
Ticket #38665 – Description
initial v1 1 1 Dsniff fails to compile on Lion. I think the problem is somewhere in DB library 2 2 3 3 {{{ 4 4 port install dsniff 5 5 ---> Computing dependencies for dsniff … … 11 11 http://guide.macports.org/#project.tickets 12 12 Error: Processing of port dsniff failed 13 13 }}} 14 14 15 15 When I run make manually, I get errors linked to the DB library: 16 16 17 17 {{{ 18 18 /record.c:130:30: error: use of undeclared identifier 'R_NOOVERWRITE' 19 19 if (db->put(db, key, &data, R_NOOVERWRITE) == 0) … … 24 24 ./record.c:143:34: error: use of undeclared identifier 'R_NEXT' 25 25 while (db->seq(db, &key, &data, R_NEXT) == 0) { 26 26 }}} 27 27 28 28 and also some linked to NFS: 29 29 30 30 {{{ 31 31 In file included from ./filesnarf.c:28: 32 32 ./nfs_prot.h:6:2: error: unterminated conditional directive … … 35 35 ./filesnarf.c:38:12: error: use of undeclared identifier 'NFS3_FHSIZE' 36 36 u_char fh[NFS3_FHSIZE]; 37 }}}