Skip to content

Commit 5762dec

Browse files
committed
rename "nip4.h" as "package.h"
to make sync with vipsdisp simpler other similar fixups to minimise package name in sources
1 parent 2ae4c31 commit 5762dec

134 files changed

Lines changed: 146 additions & 154 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ config_h = configuration_data()
4949
set_defines = [
5050
['APPLICATION_ID', application_id],
5151
['PACKAGE', meson.project_name()],
52+
['PACKAGE_UPPER', meson.project_name().to_upper()],
5253
['VERSION', meson.project_version()],
5354
]
5455

src/action.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
2828
*/
2929

30-
#include "nip4.h"
30+
#include "package.h"
3131

3232
/* Index with binop or uop.
3333
*

src/app.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define DEBUG
2626
*/
2727

28-
#include "nip4.h"
28+
#include "package.h"
2929

3030
struct _App {
3131
GtkApplication parent;

src/builtin.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
2828
*/
2929

30-
#include "nip4.h"
30+
#include "package.h"
3131

3232
#include <gsl/gsl_sf_gamma.h>
3333
#include <gsl/gsl_errno.h>

src/class.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
2929
*/
3030

31-
#include "nip4.h"
31+
#include "package.h"
3232

3333
/*
3434
#define DEBUG_MEMBER

src/classmodel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
2828
*/
2929

30-
#include "nip4.h"
30+
#include "package.h"
3131

3232
/*
3333
#define DEBUG

src/colour.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#define DEBUG
3232
*/
3333

34-
#include "nip4.h"
34+
#include "package.h"
3535

3636
/* Set of allowed colour_space strings. Do a case-insensitive match.
3737
*/

src/colourview.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#define DEBUG
3232
*/
3333

34-
#include "nip4.h"
34+
#include "package.h"
3535

3636
G_DEFINE_TYPE(Colourview, colourview, GRAPHICVIEW_TYPE)
3737

src/column.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#define DEBUG
3232
*/
3333

34-
#include "nip4.h"
34+
#include "package.h"
3535

3636
G_DEFINE_TYPE(Column, column, FILEMODEL_TYPE)
3737

src/columnview.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#define DEBUG
3232
*/
3333

34-
#include "nip4.h"
34+
#include "package.h"
3535

3636
G_DEFINE_TYPE(Columnview, columnview, VIEW_TYPE)
3737

0 commit comments

Comments
 (0)