forked from macports/macports-ports
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tcpflow: fix build with gcc; tcpflow-devel: update to 20240919
- Loading branch information
1 parent
d53055d
commit fccf0d3
Showing
3 changed files
with
57 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- configure.ac | ||
+++ configure.ac 2024-12-18 18:09:12.000000000 +0800 | ||
@@ -75,17 +75,6 @@ | ||
esac | ||
|
||
if test x"${mingw}" == "xno" ; then | ||
- # Bring additional directories where things might be found into our | ||
- # search path. I don't know why autoconf doesn't do this by default | ||
- for spfx in /usr/local /opt/local /sw /usr/local/ssl /usr/boost/include /usr/X11R6 ; do | ||
- AC_MSG_NOTICE([checking ${spfx}/include]) | ||
- if test -d ${spfx}/include; then | ||
- CPPFLAGS="-I${spfx}/include $CPPFLAGS" | ||
- LDFLAGS="-L${spfx}/lib $LDFLAGS" | ||
- AC_MSG_NOTICE([ *** ADDING ${spfx}/include to CPPFLAGS *** ]) | ||
- AC_MSG_NOTICE([ *** ADDING ${spfx}/lib to LDFLAGS *** ]) | ||
- fi | ||
- done | ||
AC_MSG_NOTICE([ CPPFLAGS = ${CPPFLAGS} ]) | ||
AC_MSG_NOTICE([ LDFLAGS = ${LDFLAGS} ]) | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From b1479db14b1604e00d35c2d39566c54e8b1785d0 Mon Sep 17 00:00:00 2001 | ||
From: Sam James <[email protected]> | ||
Date: Sat, 15 Apr 2023 12:36:51 +0100 | ||
Subject: [PATCH] Fix build with GCC 13 (#252) | ||
|
||
GCC 13 (as usual for new compiler releases) shuffles around some internal includes and so etc is no longer transitively included. | ||
|
||
See https://gnu.org/software/gcc/gcc-13/porting_to.html. | ||
Bug: https://bugs.gentoo.org/895282 | ||
--- | ||
src/netviz/plot_view.h | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/src/netviz/plot_view.h b/src/netviz/plot_view.h | ||
index 21be05cf..ba8b49e7 100644 | ||
--- src/netviz/plot_view.h | ||
+++ src/netviz/plot_view.h | ||
@@ -23,6 +23,7 @@ | ||
#include <cairo/cairo-pdf.h> | ||
#endif | ||
|
||
+#include <cstdint> | ||
#include <vector> | ||
#include <string> | ||
#include <math.h> |