mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
Upgrade to 1.41.
This commit is contained in:
parent
f55ac3a431
commit
21352c8843
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=406122
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= xfe
|
||||
PORTVERSION= 1.40.1
|
||||
PORTVERSION= 1.41
|
||||
CATEGORIES= x11-fm
|
||||
MASTER_SITES= SF
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (xfe-1.40.1.tar.gz) = ec3d9495bb329c6199f6265dbfb514ffd3bdb8801e36ccc4e8fac6cea15bcc71
|
||||
SIZE (xfe-1.40.1.tar.gz) = 2627754
|
||||
SHA256 (xfe-1.41.tar.gz) = d31ac9fdfa9223e54920ee8aabe20b43fa08ee4b6a5ee11a2d3c210506a3603f
|
||||
SIZE (xfe-1.41.tar.gz) = 2752508
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- configure.orig 2015-10-21 16:59:07.344253000 +0200
|
||||
+++ configure 2015-10-21 16:59:18.245643000 +0200
|
||||
@@ -14940,7 +14940,7 @@
|
||||
LIBS="$LIBS $freetype_libs"
|
||||
CPPFLAGS="$freetype_cflags $CPPFLAGS"
|
||||
fi
|
||||
- ac_fn_cxx_check_header_mongrel "$LINENO" "config/ftheader.h" "ac_cv_header_config_ftheader_h" "$ac_includes_default"
|
||||
+ ac_fn_cxx_check_header_mongrel "$LINENO" "freetype/config/ftheader.h" "ac_cv_header_config_ftheader_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_config_ftheader_h" = xyes; then :
|
||||
|
||||
else
|
11
x11-fm/xfe/files/patch-src_FilePanel.cpp
Normal file
11
x11-fm/xfe/files/patch-src_FilePanel.cpp
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/FilePanel.cpp.orig 2016-01-14 08:35:03 UTC
|
||||
+++ src/FilePanel.cpp
|
||||
@@ -124,7 +124,7 @@ FXDEFMAP(FilePanel) FilePanelMap[] =
|
||||
FXMAPFUNC(SEL_COMMAND, FilePanel::ID_RUN_SCRIPT, FilePanel::onCmdRunScript),
|
||||
FXMAPFUNC(SEL_UPDATE, FilePanel::ID_RUN_SCRIPT, FilePanel::onUpdRunScript),
|
||||
FXMAPFUNC(SEL_COMMAND, FilePanel::ID_GO_SCRIPTDIR, FilePanel::onCmdGoScriptDir),
|
||||
- FXMAPFUNC(SEL_COMMAND, FilePanel::ID_DIR_USAGE, FilePanel::onCmdDirUsage),
|
||||
+ //FXMAPFUNC(SEL_COMMAND, FilePanel::ID_DIR_USAGE, FilePanel::onCmdDirUsage),
|
||||
FXMAPFUNC(SEL_RIGHTBUTTONRELEASE, FilePanel::ID_FILELIST, FilePanel::onCmdPopupMenu),
|
||||
FXMAPFUNC(SEL_COMMAND, FilePanel::ID_POPUP_MENU, FilePanel::onCmdPopupMenu),
|
||||
FXMAPFUNC(SEL_DOUBLECLICKED, FilePanel::ID_FILELIST, FilePanel::onCmdItemDoubleClicked),
|
@ -1,39 +0,0 @@
|
||||
--- src/xfeutils.cpp.orig 2015-09-07 15:32:21 UTC
|
||||
+++ src/xfeutils.cpp
|
||||
@@ -563,36 +563,6 @@ int lstatmt(const char* filename, struct
|
||||
#endif
|
||||
|
||||
|
||||
-// Safe strcpy function (Public domain, by C.B. Falconer)
|
||||
-// The destination string is always null terminated
|
||||
-// Size sz must be equal to strlen(src)+1
|
||||
-size_t strlcpy(char* dst, const char* src, size_t sz)
|
||||
-{
|
||||
- const char *start = src;
|
||||
-
|
||||
- if (src && sz--)
|
||||
- {
|
||||
- while ((*dst++ = *src))
|
||||
- if (sz--)
|
||||
- src++;
|
||||
- else
|
||||
- {
|
||||
- *(--dst) = '\0';
|
||||
- break;
|
||||
- }
|
||||
- }
|
||||
- if (src)
|
||||
- {
|
||||
- while (*src++)
|
||||
- continue;
|
||||
- return src - start - 1;
|
||||
- }
|
||||
- else if (sz)
|
||||
- *dst = '\0';
|
||||
- return 0;
|
||||
-}
|
||||
-
|
||||
-
|
||||
// Safe strcat function (Public domain, by C.B. Falconer)
|
||||
// The destination string is always null terminated
|
||||
size_t strlcat(char* dst, const char* src, size_t sz)
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user