-
Notifications
You must be signed in to change notification settings - Fork 272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Misc build related fixes #206
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ devhelp_la_CFLAGS = \ | |
|
||
devhelp_la_LIBADD = \ | ||
$(DEVHELP_LIBS) \ | ||
$(COMMONLIBS) \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
$(top_builddir)/devhelp/devhelp/libdevhelp-2.la | ||
|
||
include $(top_srcdir)/build/cppcheck.mk |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
* \brief it is the graphical user interface of the geany miniscript plugin | ||
*/ | ||
#include "config.h" | ||
#include "geany.h" | ||
#include "geanyplugin.h" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ideally should use |
||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change fixes +#include "geanyfunctions.h" would also work but geanyplugin.h is recommended anyway There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I do not get that error if I build from current master. |
||
#include <glib/gstdio.h> | ||
#include <glib/gprintf.h> | ||
|
@@ -43,15 +43,6 @@ | |
#include <locale.h> | ||
#endif | ||
|
||
/* geany headers */ | ||
#include "support.h" | ||
#include "plugindata.h" | ||
#include "editor.h" | ||
#include "document.h" | ||
#include "prefs.h" | ||
#include "utils.h" | ||
#include "ui_utils.h" | ||
|
||
/* user header */ | ||
#include "gms_debug.h" | ||
#include "gms.h" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,20 +23,12 @@ | |
# include "config.h" | ||
#endif | ||
|
||
#include "geany.h" | ||
#include "support.h" | ||
#include "geanyplugin.h" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
#ifdef HAVE_LOCALE_H | ||
# include <locale.h> | ||
#endif | ||
|
||
#include "ui_utils.h" | ||
|
||
#include "document.h" | ||
#include "keybindings.h" | ||
#include "plugindata.h" | ||
#include "geanyfunctions.h" | ||
|
||
#include <glib.h> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change fixes CC shiftcolumn.lo There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This seems to have been fixed separately in f2ab510. |
||
#include <glib/gprintf.h> | ||
#include <gdk/gdkkeysyms.h> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As an alternative one could replace the inappropriate use of utils_str_equal with g_strcmp/0 but i dont like to potentially change the behavior now