geo/pgpointcloud: remove patches forgotten in 1.2.2

This commit is contained in:
landry 2022-06-27 04:49:52 +00:00
parent a6d71342c2
commit ceededf47e
2 changed files with 0 additions and 46 deletions

View File

@ -1,16 +0,0 @@
fix for -fno-common
https://github.com/pgpointcloud/pointcloud/pull/273
Index: lib/cunit/cu_tester.c
--- lib/cunit/cu_tester.c.orig
+++ lib/cunit/cu_tester.c
@@ -12,6 +12,9 @@
#include "CUnit/Basic.h"
#include "cu_tester.h"
+/* Contains the most recent error message generated by rterror. */
+static char cu_error_msg[MAX_CUNIT_MSG_LENGTH+1];
+
/* ADD YOUR SUITE HERE (1 of 2) */
extern CU_SuiteInfo schema_suite;
extern CU_SuiteInfo patch_suite;

View File

@ -1,30 +0,0 @@
fix for -fno-common
https://github.com/pgpointcloud/pointcloud/pull/273
Index: lib/cunit/cu_tester.h
--- lib/cunit/cu_tester.h.orig
+++ lib/cunit/cu_tester.h
@@ -7,6 +7,9 @@
*
***********************************************************************/
+#ifndef _CU_TESTER_H
+#define _CU_TESTER_H
+
#include "pc_api_internal.h"
#define PC_TEST(test_func) { #test_func, test_func }
@@ -14,11 +17,10 @@
#define CU_ASSERT_SUCCESS(rv) CU_ASSERT( (rv) == PC_SUCCESS )
#define CU_ASSERT_FAILURE(rv) CU_ASSERT( (rv) == PC_FAILURE )
-/* Contains the most recent error message generated by rterror. */
-char cu_error_msg[MAX_CUNIT_MSG_LENGTH+1];
-
/* Read a file (XML) into a cstring */
char* file_to_str(const char *fname);
/* Resets cu_error_msg back to blank. */
void cu_error_msg_reset(void);
+
+#endif