Skip to content
Snippets Groups Projects
Commit 1cd8a546 authored by Michael Banck's avatar Michael Banck
Browse files

* d/patches/fix_function_definition.patch: New patch, fixes build errors due

    to mismatching funtion definitions in header files (closes: #1066984).
parent 60f505ec
No related branches found
No related tags found
No related merge requests found
gabedit (2.5.1+ds-2) UNRELEASED; urgency=medium
[ Daniel Leidert ]
* d/copyright: Revert the removal of the DFSG-compatible spglib sources.
The package is still built against libsymspg-dev.
* d/watch: Don't repack the sources.
[ Michael Banck ]
* d/patches/fix_function_definition.patch: New patch, fixes build errors due
to mismatching funtion definitions in header files (closes: #1066984).
-- Daniel Leidert <dleidert@debian.org> Thu, 14 Oct 2021 18:04:33 +0200
gabedit (2.5.1+ds-1) unstable; urgency=medium
......
Index: gabedit/src/Files/FolderChooser.h
===================================================================
--- gabedit.orig/src/Files/FolderChooser.h
+++ gabedit/src/Files/FolderChooser.h
@@ -2,6 +2,6 @@
#ifndef __GABEDIT_FOLDERCHOOSER_H__
#define __GABEDIT_FOLDERCHOOSER_H__
-GtkWidget* selctionOfDir(gpointer data, gchar* title, GabEditTypeWin typewin) ;
+GtkWidget* selectionOfDir(gpointer data, gchar* title, GabEditTypeWin typewin) ;
#endif /* __GABEDIT_FOLDERCHOOSER_H__ */
--- ./src/MPQC/MPQCFunctionals.h.orig 2025-03-16 16:16:45.826694649 +0100
+++ ./src/MPQC/MPQCFunctionals.h 2025-03-16 16:17:04.462539889 +0100
@@ -2,10 +2,10 @@
#ifndef __GABEDIT_MPQCFUNCTIONALS_H__
#define __GABEDIT_MPQCFUNCTIONALS_H__
-void initMPQCFunctionals();
-void freeMPQCFunctionals();
-void initMPQCStdFunctionals();
-void freeMPQCStdFunctionals();
+void initMPQCFunctionalsMPQC();
+void freeMPQCFunctionalsMPQC();
+void initMPQCStdFunctionalsMPQC();
+void freeMPQCStdFunctionalsMPQC();
void mpqcSumDensityFunctionalWindow();
#endif /* __GABEDIT_MPQCFUNCTIONALS_H__ */
sort_object_files_in_makefile.patch
system-spglib.patch
fix_function_definition.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment