* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tdom/files/
@ 2016-10-02 20:09 Amy Winston
0 siblings, 0 replies; 3+ messages in thread
From: Amy Winston @ 2016-10-02 20:09 UTC (permalink / raw
To: gentoo-commits
commit: 4aaec36f0eb3afd0ce61d696016967d964a59db2
Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Sep 30 15:11:58 2016 +0000
Commit: Amy Winston <amynka <AT> gentoo <DOT> org>
CommitDate: Sun Oct 2 19:58:33 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aaec36f
dev-tcltk/tdom: remove unused patches
dev-tcltk/tdom/files/tdom-0.8.2-expat.patch | 83 ----------------------------
dev-tcltk/tdom/files/tdom-0.8.2-soname.patch | 26 ---------
2 files changed, 109 deletions(-)
diff --git a/dev-tcltk/tdom/files/tdom-0.8.2-expat.patch b/dev-tcltk/tdom/files/tdom-0.8.2-expat.patch
deleted file mode 100644
index cdcbb10..00000000
--- a/dev-tcltk/tdom/files/tdom-0.8.2-expat.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-Source: http://download.opensuse.org/repositories/openSUSE:/11.0/standard/src/tdom-0.8.2-50.1.src.rpm
-Index: Makefile.in
-================================================================================
---- configure.in
-+++ configure.in
-@@ -72,6 +72,7 @@
- #--------------------------------------------------------------------
-
- TDOM_PATH_AOLSERVER
-+TDOM_PATH_EXPAT
-
- #-----------------------------------------------------------------------
- # __CHANGE__
-@@ -83,10 +84,7 @@
- # and PKG_TCL_SOURCES.
- #-----------------------------------------------------------------------
-
--TEA_ADD_SOURCES([expat/xmlrole.c \
-- expat/xmltok.c \
-- expat/xmlparse.c \
-- generic/xmlsimple.c \
-+TEA_ADD_SOURCES([generic/xmlsimple.c \
- generic/utf8conv.c \
- generic/dom.c \
- generic/domalloc.c \
-@@ -100,7 +98,7 @@
- generic/tclexpat.c \
- generic/tdomStubInit.c])
- TEA_ADD_HEADERS([generic/tdom.h])
--TEA_ADD_INCLUDES([-I${srcdir}/generic -I${srcdir}/expat ${AOL_INCLUDES}])
-+TEA_ADD_INCLUDES([-I${srcdir}/generic ${AOL_INCLUDES}])
- TEA_ADD_LIBS([${AOL_LIBS}])
- TEA_ADD_CFLAGS([])
- TEA_ADD_STUB_SOURCES([generic/tdomStubLib.c])
---- tdom.m4
-+++ tdom.m4
-@@ -215,6 +215,46 @@
- fi
- ])
-
-+
-+AC_DEFUN(TDOM_PATH_EXPAT, [
-+ AC_MSG_CHECKING([for expat])
-+ AC_ARG_WITH(expat,
-+ AC_HELP_STRING([--with-expat],
-+ [directory with expat installation]), , [with_expat=no])
-+
-+ AC_CACHE_VAL(ac_cv_c_expat,[
-+ case $with_expat in
-+ no) ;;
-+ yes)
-+ for f in /usr/local /usr; do
-+ if test -f "$f/include/expat.h" ; then
-+ ac_cv_c_expat=`(cd $f; pwd)`
-+ break
-+ fi
-+ done
-+ ;;
-+ *)
-+ if test -f "$with_expat/include/expat.h"; then
-+ ac_cv_c_expat=`(cd $with_expat; pwd)`
-+ else
-+ AC_MSG_ERROR([${with_expat} directory doesn't contain expat.h])
-+ fi
-+ esac
-+ ])
-+ if test x"${ac_cv_c_expat}" = x ; then
-+ AC_MSG_RESULT([using local copy])
-+ TEA_ADD_SOURCES([expat/xmlrole.c \
-+ expat/xmltok.c \
-+ expat/xmlparse.c])
-+ TEA_ADD_INCLUDES([-I${srcdir}/expat])
-+ else
-+ AC_MSG_RESULT([${ac_cv_c_expat}])
-+ TEA_ADD_INCLUDES(${ac_cv_c_expat}/include)
-+ TEA_ADD_LIBS([-lexpat])
-+ fi
-+])
-+
-+
- #------------------------------------------------------------------------
- # TDOM_PATH_CONFIG --
- #
diff --git a/dev-tcltk/tdom/files/tdom-0.8.2-soname.patch b/dev-tcltk/tdom/files/tdom-0.8.2-soname.patch
deleted file mode 100644
index 3f0bc7e..00000000
--- a/dev-tcltk/tdom/files/tdom-0.8.2-soname.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/Makefile.in b/Makefile.in
-index d995328..5c17e11 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -108,7 +108,7 @@ CFLAGS_DEFAULT = @CFLAGS_DEFAULT@
- CFLAGS_WARNING = @CFLAGS_WARNING@
- CLEANFILES = @CLEANFILES@
- EXEEXT = @EXEEXT@
--LDFLAGS_DEFAULT = @LDFLAGS_DEFAULT@
-+LDFLAGS_DEFAULT = @LDFLAGS_DEFAULT@ -Wl,-soname,libdom$(PACKAGE_VERSION).so
- MAKE_LIB = @MAKE_LIB@
- MAKE_SHARED_LIB = @MAKE_SHARED_LIB@
- MAKE_STATIC_LIB = @MAKE_STATIC_LIB@
-diff --git a/extensions/tnc/Makefile.in b/extensions/tnc/Makefile.in
-index f8a332c..01e0ef0 100644
---- a/extensions/tnc/Makefile.in
-+++ b/extensions/tnc/Makefile.in
-@@ -98,7 +98,7 @@ CFLAGS_DEFAULT = @CFLAGS_DEFAULT@
- CFLAGS_WARNING = @CFLAGS_WARNING@
- CLEANFILES = @CLEANFILES@
- EXEEXT = @EXEEXT@
--LDFLAGS_DEFAULT = @LDFLAGS_DEFAULT@
-+LDFLAGS_DEFAULT = @LDFLAGS_DEFAULT@ -Wl,-soname,libtnc$(PACKAGE_VERSION).so
- MAKE_LIB = @MAKE_LIB@
- MAKE_SHARED_LIB = @MAKE_SHARED_LIB@
- MAKE_STATIC_LIB = @MAKE_STATIC_LIB@
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tdom/files/
@ 2021-12-31 22:22 Alfredo Tupone
0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2021-12-31 22:22 UTC (permalink / raw
To: gentoo-commits
commit: 5cf9ff984bb9cc862a77bd1f7530407c9302a57f
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 31 22:22:44 2021 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Dec 31 22:22:44 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cf9ff98
dev-tcltk/tdom: fix build with thread
Closes: https://bugs.gentoo.org/830359
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch b/dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch
index b24c9821f0d4..1170eb16bb5b 100644
--- a/dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch
+++ b/dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch
@@ -9,3 +9,14 @@
typedef struct TdomStubs {
int magic;
+--- a/generic/schema.c 2021-12-31 23:19:47.869682736 +0100
++++ b/generic/schema.c 2021-12-31 23:20:14.474255669 +0100
+@@ -419,7 +419,7 @@
+ }
+ #else
+ SchemaData *
+-tdomGetSchemadata (void)
++tdomGetSchemadata (Tcl_Interp *)
+ {
+ return GETASI;
+ }
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tdom/files/
@ 2022-07-12 18:39 Alfredo Tupone
0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2022-07-12 18:39 UTC (permalink / raw
To: gentoo-commits
commit: 7118576290a95373d93e42c8af5152e5ab8b0d84
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 12 18:38:52 2022 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Jul 12 18:38:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71185762
dev-tcltk/tdom: omitted parameter
Closes: https://bugs.gentoo.org/832179
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch b/dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch
index 1170eb16bb5b..a0a691fdce60 100644
--- a/dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch
+++ b/dev-tcltk/tdom/files/tdom-0.9.2-nothreads.patch
@@ -16,7 +16,7 @@
#else
SchemaData *
-tdomGetSchemadata (void)
-+tdomGetSchemadata (Tcl_Interp *)
++tdomGetSchemadata (Tcl_Interp *interp)
{
return GETASI;
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-07-12 18:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-12 18:39 [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tdom/files/ Alfredo Tupone
-- strict thread matches above, loose matches on Subject: below --
2021-12-31 22:22 Alfredo Tupone
2016-10-02 20:09 Amy Winston
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox