mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-02 11:09:29 +00:00
- Remove unneeded patches
Approved by: crees (mentor)
This commit is contained in:
parent
cba5f2ea11
commit
c9078cdad0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=309418
@ -1,11 +0,0 @@
|
||||
--- configure.orig 2012-04-02 17:30:16.831741118 +0200
|
||||
+++ configure 2012-04-02 17:30:36.938737358 +0200
|
||||
@@ -11132,7 +11132,7 @@
|
||||
_ACEOF
|
||||
|
||||
version_info="1:0:1"
|
||||
-release_info="-release ver-pre-svn-09"
|
||||
+release_info=""
|
||||
|
||||
|
||||
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
|
@ -1,11 +0,0 @@
|
||||
--- configure.orig 2011-01-29 17:09:23.359100066 +0100
|
||||
+++ configure 2011-01-29 17:16:54.001616145 +0100
|
||||
@@ -3922,7 +3922,7 @@
|
||||
_ACEOF
|
||||
|
||||
version_info="1:1:1"
|
||||
-release_info="-release ver-pre-svn-09"
|
||||
+release_info=""
|
||||
|
||||
|
||||
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
|
@ -1,11 +0,0 @@
|
||||
--- src/lib/include/evas_common.h.orig 2010-12-06 01:26:44.000000000 -0800
|
||||
+++ src/lib/include/evas_common.h 2010-12-06 01:27:46.000000000 -0800
|
||||
@@ -192,7 +192,7 @@
|
||||
|
||||
#ifdef HAVE_ALLOCA_H
|
||||
# include <alloca.h>
|
||||
-#elif defined __GNUC__
|
||||
+#elif defined __GNUC__ && !defined __FreeBSD__
|
||||
# define alloca __builtin_alloca
|
||||
#elif defined _AIX
|
||||
# define alloca __alloca
|
@ -1,11 +0,0 @@
|
||||
--- src/lib/embryo_str.c.orig 2010-12-11 21:54:43.000000000 -0800
|
||||
+++ src/lib/embryo_str.c 2010-12-11 21:55:03.000000000 -0800
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
#ifdef HAVE_ALLOCA_H
|
||||
# include <alloca.h>
|
||||
-#elif defined __GNUC__
|
||||
+#elif defined __GNUC__ && !defined __FreeBSD__
|
||||
# define alloca __builtin_alloca
|
||||
#elif defined _AIX
|
||||
# define alloca __alloca
|
@ -1,16 +0,0 @@
|
||||
--- src/modules/xine/emotion_xine_vo_out.c.orig
|
||||
+++ src/modules/xine/emotion_xine_vo_out.c
|
||||
@@ -119,8 +119,13 @@ _emotion_class_init(xine_t *xine, void *
|
||||
cl = (Emotion_Class *) malloc(sizeof(Emotion_Class));
|
||||
if (!cl) return NULL;
|
||||
cl->driver_class.open_plugin = _emotion_open;
|
||||
+#if XINE_MAJOR_VERSION < 1 || (XINE_MAJOR_VERSION == 1 && XINE_MINOR_VERSION < 2)
|
||||
cl->driver_class.get_identifier = _emotion_class_identifier_get;
|
||||
cl->driver_class.get_description = _emotion_class_description_get;
|
||||
+#else
|
||||
+ cl->driver_class.identifier = _emotion_class_identifier_get(NULL);
|
||||
+ cl->driver_class.description = _emotion_class_description_get(NULL);
|
||||
+#endif
|
||||
cl->driver_class.dispose = _emotion_class_dispose;
|
||||
cl->config = xine->config;
|
||||
cl->xine = xine;
|
@ -1,11 +0,0 @@
|
||||
--- configure.orig 2010-12-06 00:17:02.000000000 -0800
|
||||
+++ configure 2010-12-06 00:17:45.000000000 -0800
|
||||
@@ -13066,7 +13066,7 @@
|
||||
_ACEOF
|
||||
|
||||
version_info="8:0:8"
|
||||
-release_info="-release ver-pre-svn-09"
|
||||
+release_info=""
|
||||
|
||||
|
||||
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
|
@ -1,11 +0,0 @@
|
||||
--- configure.orig 2010-12-05 21:26:21.000000000 -0800
|
||||
+++ configure 2010-12-05 21:26:28.000000000 -0800
|
||||
@@ -12501,7 +12501,7 @@
|
||||
|
||||
|
||||
|
||||
-MODULE_ARCH="$host_os-$host_cpu-ver-pre-svn-08"
|
||||
+MODULE_ARCH="$host_os-$host_cpu"
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
@ -1,10 +0,0 @@
|
||||
--- src/modules/mixer/pa.c.orig 2012-04-01 23:52:05.418578586 +0200
|
||||
+++ src/modules/mixer/pa.c 2012-04-01 23:52:28.819577346 +0200
|
||||
@@ -350,7 +350,6 @@
|
||||
INF("connected to %s", ecore_con_server_name_get(ev->server));
|
||||
|
||||
conn->fd = dup(ecore_con_server_fd_get(ev->server));
|
||||
- setsockopt(conn->fd, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
|
||||
setsockopt(conn->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
|
||||
fcntl(conn->fd, F_SETFL, O_NONBLOCK | FD_CLOEXEC);
|
||||
conn->fdh = ecore_main_fd_handler_add(conn->fd, ECORE_FD_WRITE, (Ecore_Fd_Cb)fdh_func, conn, NULL, NULL);
|
Loading…
x
Reference in New Issue
Block a user