Changeset 3652
- Timestamp:
- Oct 30, 2007, 7:16:07 PM (15 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/Makefile.am
r3621 r3652 5 5 6 6 libtransmission_a_SOURCES = \ 7 basename.c \8 7 bencode.c \ 9 8 clients.c \ 10 9 completion.c \ 11 10 crypto.c \ 12 dirname.c \13 11 fastresume.c \ 14 12 fdlimit.c \ -
trunk/libtransmission/trcompat.h
r3650 r3652 29 29 30 30 #ifndef HAVE_STRLCPY 31 size_t 32 strlcpy(char *dst, const char *src, size_t siz); 31 size_t strlcpy(char *dst, const char *src, size_t siz); 33 32 #endif 34 33 35 34 #ifndef HAVE_STRLCAT 36 size_t 37 strlcat(char *dst, const char *src, size_t siz); 35 size_t strlcat(char *dst, const char *src, size_t siz); 38 36 #endif 39 37 … … 43 41 #endif 44 42 45 #if defined(HAVE_DIRNAME) || defined(HAVE_BASENAME)46 #include <libgen.h>47 #endif48 #ifndef HAVE_DIRNAME49 char* dirname( char *path);50 #endif51 #ifndef HAVE_BASENAME52 char* basename( char *path );53 #endif54 55 43 #endif /* TRCOMPAT_H */
Note: See TracChangeset
for help on using the changeset viewer.