mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 04:00:41 -04:00
- Prevent use of pdflatex when it's installed. - Replace patch-csync2-compare with USES=shebangfix. - Add a patch to fix use of strlcpy (pass size of destination instead of source). - Add a patch to let the compiler know csync_fatal does not return. This fixes a warning about an uninitialised variable. - Use predefined PKG_PREFIX in pkg-install and create directories from pkg-plist. PR: 207765 Approved by: alexey@renatasystems.org (maintainer)
11 lines
378 B
C
11 lines
378 B
C
--- csync2.h.orig 2013-05-02 12:58:14 UTC
|
|
+++ csync2.h
|
|
@@ -80,7 +80,7 @@ extern int csync_perm(const char *filena
|
|
|
|
extern void csync_printtime();
|
|
extern void csync_printtotaltime();
|
|
-extern void csync_fatal(const char *fmt, ...);
|
|
+extern void csync_fatal(const char *fmt, ...) __dead2;
|
|
extern void csync_debug(int lv, const char *fmt, ...);
|
|
|
|
#define csync_debug_ping(N) \
|