summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-embedded/gpsim-lcd/files/gpsim-lcd-0.1.1-gcc33.patch')
-rw-r--r--dev-embedded/gpsim-lcd/files/gpsim-lcd-0.1.1-gcc33.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-embedded/gpsim-lcd/files/gpsim-lcd-0.1.1-gcc33.patch b/dev-embedded/gpsim-lcd/files/gpsim-lcd-0.1.1-gcc33.patch
new file mode 100644
index 000000000000..8de3e24c77e6
--- /dev/null
+++ b/dev-embedded/gpsim-lcd/files/gpsim-lcd-0.1.1-gcc33.patch
@@ -0,0 +1,30 @@
+diff -ur lcd-0.1.1.old/lcd.cc lcd-0.1.1/lcd.cc
+--- lcd-0.1.1.old/lcd.cc 2000-08-27 14:19:12.000000000 -0700
++++ lcd-0.1.1/lcd.cc 2003-10-20 22:18:24.000000000 -0700
+@@ -86,7 +86,7 @@
+ // tracing, stimulus interface, etc.). The LcdPort class extends
+ // IOPORT by redirecting changes to the LCD state machine.
+
+-Lcd_Port::Lcd_Port (unsigned int _num_iopins=8) : IOPORT(_num_iopins)
++Lcd_Port::Lcd_Port (unsigned int _num_iopins) : IOPORT(_num_iopins)
+ {
+
+ }
+@@ -114,7 +114,7 @@
+ }
+
+
+-DataPort::DataPort (unsigned int _num_iopins=8) : Lcd_Port(_num_iopins)
++DataPort::DataPort (unsigned int _num_iopins) : Lcd_Port(_num_iopins)
+ {
+
+ }
+@@ -146,7 +146,7 @@
+
+ //-----------------------------------------------------
+
+-ControlPort::ControlPort (unsigned int _num_iopins=8) : Lcd_Port(_num_iopins)
++ControlPort::ControlPort (unsigned int _num_iopins) : Lcd_Port(_num_iopins)
+ {
+ break_delta = 100000;
+ }