mirror of https://github.com/GNOME/gimp.git
app, tools: rename app/version.[ch] to app/gimp-version.[ch].
Since commit 9fdf35550b
, I removed the GIMP_APP_GLUE_COMPILATION check
because we need to have the whole versioning info from the new debug
widget. It just makes sense to go further and just make this a proper
internal API to get version information.
This commit is contained in:
parent
dd5be53836
commit
1b4efd2d5a
|
@ -60,14 +60,14 @@ libapp_sources = \
|
|||
tests.h \
|
||||
unique.c \
|
||||
unique.h \
|
||||
version.c \
|
||||
version.h \
|
||||
gimp-debug.c \
|
||||
gimp-debug.h \
|
||||
gimp-intl.h \
|
||||
gimp-log.c \
|
||||
gimp-log.h \
|
||||
gimp-priorities.h \
|
||||
gimp-intl.h
|
||||
gimp-version.c \
|
||||
gimp-version.h
|
||||
|
||||
libapp_generated_sources = \
|
||||
git-version.h
|
||||
|
|
|
@ -32,10 +32,10 @@
|
|||
#include "libgimpbase/gimpbase.h"
|
||||
|
||||
#include "about.h"
|
||||
#include "version.h"
|
||||
#include "git-version.h"
|
||||
|
||||
#include "gimp-intl.h"
|
||||
#include "gimp-version.h"
|
||||
|
||||
|
||||
static gchar *
|
|
@ -19,7 +19,6 @@
|
|||
#define __VERSION_H__
|
||||
|
||||
|
||||
|
||||
void gimp_version_show (gboolean be_verbose);
|
||||
gchar * gimp_version (gboolean be_verbose,
|
||||
gboolean localized);
|
|
@ -63,7 +63,6 @@
|
|||
#include "sanity.h"
|
||||
#include "signals.h"
|
||||
#include "unique.h"
|
||||
#include "version.h"
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
/* To get PROCESS_DEP_* defined we need _WIN32_WINNT at 0x0601. We still
|
||||
|
@ -79,6 +78,7 @@
|
|||
|
||||
#include "gimp-log.h"
|
||||
#include "gimp-intl.h"
|
||||
#include "gimp-version.h"
|
||||
|
||||
|
||||
static gboolean gimp_option_fatal_warnings (const gchar *option_name,
|
||||
|
|
|
@ -42,9 +42,8 @@
|
|||
|
||||
#include "gimpcriticaldialog.h"
|
||||
|
||||
#include "version.h"
|
||||
|
||||
#include "gimp-intl.h"
|
||||
#include "gimp-version.h"
|
||||
|
||||
typedef struct _GimpCriticalDialog GimpCriticalDialog;
|
||||
|
||||
|
|
|
@ -33,8 +33,8 @@ EXTRA_PROGRAMS = \
|
|||
gimpdebug_2_0_SOURCES = gimpdebug.c \
|
||||
../app/widgets/gimpcriticaldialog.h \
|
||||
../app/widgets/gimpcriticaldialog.c \
|
||||
../app/version.h \
|
||||
../app/version.c
|
||||
../app/gimp-version.h \
|
||||
../app/gimp-version.c
|
||||
|
||||
gimpdebug_2_0_CPPFLAGS = \
|
||||
-DCC_VERSION=\""$(CC_VERSION)"\" \
|
||||
|
|
Loading…
Reference in New Issue