summaryrefslogtreecommitdiff
path: root/graphics/GMT/patches/patch-ay
blob: 8f10ff3f0938a85d2f0326e9e998ce69b7452229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$NetBSD: patch-ay,v 1.6 2006/11/14 13:16:00 wennmach Exp $

Change method to determine endianness and adapt to pkgsrc directory structure.

--- src/dbase/grdraster.c.orig	2006-11-13 15:56:13.000000000 +0100
+++ src/dbase/grdraster.c	2006-11-13 15:59:44.000000000 +0100
@@ -50,7 +50,7 @@
 {
 	BOOLEAN xyz_out = FALSE;
 
-#if WORDS_BIGENDIAN == 0
+#if BYTE_ORDER == LITTLE_ENDIAN
 	char my_endian = 'L';	/* This machine is Little endian */
 #else
 	char my_endian = 'B';	/* This machine is Big endian */
@@ -646,7 +646,7 @@
 
 	/* Find and open the file grdraster.info */
 
-	if (!(GMT_getdatapath("grdraster.info", dir) || GMT_getsharepath("dbase", "grdraster", ".info", dir))) {
+	if (!(GMT_getdatapath("grdraster.info", dir) || GMT_getsharepath("gmt/dbase", "grdraster", ".info", dir))) {
 		fprintf(stderr, "%s: ERROR cannot find file grdraster.info", GMT_program);
 		return (0);
 	}