]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Fix header files for gcc 10.1.0 whcih now defaults to -fno-common requiring extern...
authorJohn Melton G0ORX <john.d.melton@googlemail.com>
Wed, 15 Jul 2020 16:51:01 +0000 (17:51 +0100)
committerJohn Melton G0ORX <john.d.melton@googlemail.com>
Wed, 15 Jul 2020 16:51:01 +0000 (17:51 +0100)
band.h
midi.h
midi2.c
mode.h
new_menu.h
vfo.c
vfo.h

diff --git a/band.h b/band.h
index 4163ce5b940fa2e082d859aea128fd2b1c036f37..b312440eb2a3d52af42dee0a60274fcd34135c9e 100644 (file)
--- a/band.h
+++ b/band.h
@@ -87,8 +87,8 @@ typedef struct _CHANNEL CHANNEL;
 
 
 
-int band;
-gboolean displayHF;
+extern int band;
+extern gboolean displayHF;
 
 #define UK_CHANNEL_ENTRIES 11
 #define OTHER_CHANNEL_ENTRIES 5
diff --git a/midi.h b/midi.h
index 55ed5335aec5ab31cd70c62698806c7f91373929..bfe6230682c038d19724e7f356762e2ba4cb9f9b 100644 (file)
--- a/midi.h
+++ b/midi.h
@@ -199,10 +199,10 @@ struct desc {
    struct desc       *next;       // Next defined action for a controller/key with that note value (NULL for end of list)
 };
 
-struct {
+struct cmdtable{
    struct desc *desc[128];    // description for Note On/Off and ControllerChange
    struct desc *pitch;        // description for PitchChanges
-} MidiCommandsTable;
+};
 
 //
 // Layer-1 entry point, called once for all the MIDI devices
diff --git a/midi2.c b/midi2.c
index 78cfaff985c8407e17566c0f82ee86659c0e111a..768372118d51dbddd9ee3a77f2d0c92595ff3f56 100644 (file)
--- a/midi2.c
+++ b/midi2.c
@@ -7,12 +7,15 @@
  * MIDI events into MIDI actions in the SDR console.
  */
 
+#include <gtk/gtk.h>
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
 #include <time.h>
 #include "midi.h"
 
+struct cmdtable MidiCommandsTable;
+
 void NewMidiEvent(enum MIDIevent event, int channel, int note, int val) {
 
     struct desc *desc;
@@ -21,7 +24,7 @@ void NewMidiEvent(enum MIDIevent event, int channel, int note, int val) {
     static struct timespec tp, last_wheel_tp={0,0};
     long delta;
 
-//fprintf(stderr,"MIDI:EVENT=%d CHAN=%d NOTE=%d VAL=%d\n",event,channel,note,val);
+//g_print("%s:EVENT=%d CHAN=%d NOTE=%d VAL=%d\n",__FUNCTION__,event,channel,note,val);
     if (event == MIDI_PITCH) {
        desc=MidiCommandsTable.pitch;
     } else {
diff --git a/mode.h b/mode.h
index e566eee5638f23f99e801e8f94dfb617fe53c945..41ce9fec7dfad9045bc6013e675149f4c0ce5d43 100644 (file)
--- a/mode.h
+++ b/mode.h
@@ -34,6 +34,6 @@
 #define modeDRM 11
 #define MODES 12
 
-char *mode_string[MODES];
+extern char *mode_string[MODES];
 
 #endif
index 78699d2c612a4dcfdd5f4660f57d6a81040e186a..977c564e34596dfa96b6689ab0e3adfb0fab509b 100644 (file)
@@ -1,4 +1,4 @@
-GtkWidget *sub_menu;
+extern GtkWidget *sub_menu;
 
 extern void new_menu();
 
diff --git a/vfo.c b/vfo.c
index 78fcd529a630e1220deb0ae602f57a503948317b..7bd21794fe5c9ea5323e28ef36333cf95ef6bcce 100644 (file)
--- a/vfo.c
+++ b/vfo.c
@@ -70,6 +70,8 @@ char *step_labels[]={"1Hz","10Hz","25Hz","50Hz","100Hz","250Hz","500Hz","1kHz","
 static GtkWidget* menu=NULL;
 static GtkWidget* band_menu=NULL;
 
+struct _vfo vfo[MAX_VFOS];
+struct _mode_settings mode_settings[MODES];
 
 static void vfo_save_bandstack() {
   BANDSTACK *bandstack=bandstack_get_bandstack(vfo[0].band);
diff --git a/vfo.h b/vfo.h
index 4204c3a34a90fe67275609812852f978c11f5170..55e0562087e306cd905cb4ffc21b2626f87f12ca 100644 (file)
--- a/vfo.h
+++ b/vfo.h
@@ -44,7 +44,9 @@ struct _vfo {
   long long lo;
   long long offset;
 
-} vfo[MAX_VFOS];
+};
+
+extern struct _vfo vfo[MAX_VFOS];
 
 //
 // Store filter and NR settings on a per-mode basis
@@ -57,8 +59,9 @@ struct _mode_settings {
   int nr2;
   int anf;
   int snb;
-} mode_settings[MODES];
+};
 
+extern struct _mode_settings mode_settings[];
 
 typedef struct _set_frequency {
   int vfo;