Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 333935
b: refs/heads/master
c: d6e6683
h: refs/heads/master
i:
  333933: e0dc4e2
  333931: 4155212
  333927: 3aac182
  333919: 9baba68
v: v3
  • Loading branch information
Namhyung Kim authored and Arnaldo Carvalho de Melo committed Oct 2, 2012
1 parent 7e47fa3 commit 9de35a9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f9f526ecdc09a851f4f5567ebcf9bc553778f6c2
refs/heads/master: d6e66832a710c0e6d1376e8d39ee108636a177e7
8 changes: 3 additions & 5 deletions trunk/tools/perf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -743,11 +743,9 @@ ifeq ($(NO_PERF_REGS),0)
BASIC_CFLAGS += -DHAVE_PERF_REGS
endif

ifdef NO_STRLCPY
BASIC_CFLAGS += -DNO_STRLCPY
else
ifneq ($(call try-cc,$(SOURCE_STRLCPY),),y)
BASIC_CFLAGS += -DNO_STRLCPY
ifndef NO_STRLCPY
ifeq ($(call try-cc,$(SOURCE_STRLCPY),),y)
BASIC_CFLAGS += -DHAVE_STRLCPY
endif
endif

Expand Down
2 changes: 1 addition & 1 deletion trunk/tools/perf/util/cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ extern char *perf_path(const char *fmt, ...) __attribute__((format (printf, 1, 2
extern char *perf_pathdup(const char *fmt, ...)
__attribute__((format (printf, 1, 2)));

#ifdef NO_STRLCPY
#ifndef HAVE_STRLCPY
extern size_t strlcpy(char *dest, const char *src, size_t size);
#endif

Expand Down
2 changes: 1 addition & 1 deletion trunk/tools/perf/util/path.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static const char *get_perf_dir(void)
return ".";
}

#ifdef NO_STRLCPY
#ifndef HAVE_STRLCPY
size_t strlcpy(char *dest, const char *src, size_t size)
{
size_t ret = strlen(src);
Expand Down

0 comments on commit 9de35a9

Please sign in to comment.