summaryrefslogtreecommitdiff
blob: f000eb7347d5b4ae49147eb18b501871f5270cc7 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
diff -ru xfreecell.orig/card.cpp xfreecell/card.cpp
--- xfreecell.orig/card.cpp	1999-03-27 05:36:28.000000000 -0800
+++ xfreecell/card.cpp	2004-02-25 02:17:24.000000000 -0800
@@ -119,7 +119,7 @@
     int oldy = y();
     int newx = dest_x;
     int newy = dest_y;
-    int steps = max(abs(oldx - newx), abs(oldy - newy)) / Option::speedup();
+    int steps = std::max(abs(oldx - newx), abs(oldy - newy)) / Option::speedup();
     float curx = (float) oldx;
     float cury = (float) oldy;
 
diff -ru xfreecell.orig/freecell.cpp xfreecell/freecell.cpp
--- xfreecell.orig/freecell.cpp	1999-07-27 07:15:27.000000000 -0700
+++ xfreecell/freecell.cpp	2004-02-25 02:18:13.000000000 -0800
@@ -64,7 +64,7 @@
 static GameNumberManager* gnManager; 
 static const int PathLength = 256;
 static char msNumbersPath[PathLength] = "\0";;
-static const char defaultMSNumbersPath[] = "/usr/local/lib/xfreecell/MSNumbers";
+static const char defaultMSNumbersPath[] = "/usr/share/games/xfreecell/MSNumbers";
 
 // ##### Functions declarations #####
 static void adjustSubwindow(NSWindow*);
@@ -603,7 +603,7 @@
 void readMSNumbersPath()
 {
   char* home = getenv("HOME");
-  string saveFile;
+  std::string saveFile;
 
   if (home == NULL) {
     fprintf(stderr, "Cannot get $HOME. Assuming I am at home directory now.\n");
diff -ru xfreecell.orig/gnmanager.cpp xfreecell/gnmanager.cpp
--- xfreecell.orig/gnmanager.cpp	1999-07-27 07:18:05.000000000 -0700
+++ xfreecell/gnmanager.cpp	2004-02-25 02:17:24.000000000 -0800
@@ -16,7 +16,7 @@
 GameNumberManager::GameNumberManager()
 {
   char* home = getenv("HOME");
-  string directory;
+  std::string directory;
 
   if (home == NULL) {
     fprintf(stderr, "Cannot get $HOME. Assuming I am at home directory now.\n");
@@ -143,7 +143,7 @@
   readFile(msLostGameFile, &msLostGames);
 }
 
-void GameNumberManager::readFile(const string& file, hash_set<int>* hs)
+void GameNumberManager::readFile(const std::string& file, hash_set<int>* hs)
 {
   FILE* fp = fopen(file.c_str(), "r");
   char line[lineLength];
@@ -169,7 +169,7 @@
   writeFile(msLostGameFile, &msLostGames);
 }
 
-void GameNumberManager::writeFile(const string& file, hash_set<int>* hs)
+void GameNumberManager::writeFile(const std::string& file, hash_set<int>* hs)
 {
   FILE* fp = fopen(file.c_str(), "w+");
 
diff -ru xfreecell.orig/gnmanager.h xfreecell/gnmanager.h
--- xfreecell.orig/gnmanager.h	1999-03-29 05:07:19.000000000 -0800
+++ xfreecell/gnmanager.h	2004-02-25 02:17:24.000000000 -0800
@@ -2,7 +2,13 @@
 #define GNManager_H
 
 #include <string>
+
+#if __GNUG__ < 3
 #include <hash_set>
+#else
+#include <ext/hash_set>
+using __gnu_cxx::hash_set;
+#endif
 
 class GameNumberManager {
 public:
@@ -20,15 +26,15 @@
   bool alreadyLost(int);
 
   void readFiles();
-  void readFile(const string&, hash_set<int>*);
-  void writeFile(const string&, hash_set<int>*);
+  void readFile(const std::string&, hash_set<int>*);
+  void writeFile(const std::string&, hash_set<int>*);
 
-  string lostGameFile, wonGameFile;
+  std::string lostGameFile, wonGameFile;
   
   hash_set<int> wonGames;
   hash_set<int> lostGames;
 
-  string msLostGameFile, msWonGameFile;
+  std::string msLostGameFile, msWonGameFile;
 
   hash_set<int> msWonGames;
   hash_set<int> msLostGames;
diff -ru xfreecell.orig/makefile xfreecell/makefile
--- xfreecell.orig/makefile	1999-04-03 05:42:49.000000000 -0800
+++ xfreecell/makefile	2004-02-25 02:17:48.000000000 -0800
@@ -1,16 +1,15 @@
 OBJECTS=card.o freecell.o option.o stack.o subwindows.o undo.o util.o gnmanager.o random.o
-CC=g++
-CFLAGS=-g -Wall -DSHAPE -DBOGUSRANDOM
+CFLAGS=$(CXXFLAGS) -DSHAPE -DBOGUSRANDOM
 LIBS=-lm -L. -lns -L/usr/X11R6/lib -lXext -lX11
 STATICDIR=xfreecell-static
 DOCS=README CHANGES mshuffle.txt xfreecell.6
 LIBDIR=/usr/local/lib/xfreecell
 
 all: $(OBJECTS) lib
-	$(CC) -o xfreecell $(CFLAGS) $(OBJECTS) $(LIBS)
+	$(CXX) -o xfreecell $(LDFLAGS) $(OBJECTS) $(LIBS)
 
 static: $(OBJECTS) lib
-	$(CC) -o xfreecell -static $(CFLAGS) $(OBJECTS) $(LIBS)
+	$(CXX) -o xfreecell -static $(CFLAGS) $(OBJECTS) $(LIBS)
 
 static-release: static
 	mkdir $(STATICDIR)
@@ -21,17 +20,17 @@
 	rm -rf $(STATICDIR)
 
 %.o: %.cpp
-	$(CC) -c $(CFLAGS) $<
+	$(CXX) -c $(CFLAGS) $<
 
 clean:
 	rm -f *~ *.o a.out xfreecell libns.a
-	make -C widget clean
+	$(MAKE) -C widget clean
 
 lib:
-	make -C widget lib
+	$(MAKE) -C widget lib
 
 install: all
-	install xfreecell $(DESTDIR)/usr/local/bin
-	install xfreecell.6 $(DESTDIR)/usr/local/man/man6
+	install xfreecell $(DESTDIR)/usr/bin
+	install xfreecell.6 $(DESTDIR)/usr/share/man/man6
 #	install -d $(LIBDIR)
-#	install ms-compatible/MSNumbers $(DESTDIR)/usr/local/lib/xfreecell
\ No newline at end of file
+#	install ms-compatible/MSNumbers $(DESTDIR)/usr/share/xfreecell
diff -ru xfreecell.orig/option.h xfreecell/option.h
--- xfreecell.orig/option.h	1999-03-27 11:39:17.000000000 -0800
+++ xfreecell/option.h	2004-02-25 02:17:24.000000000 -0800
@@ -22,7 +22,7 @@
   void readPrefs();
   void writePrefs();
 
-  string saveFile;
+  std::string saveFile;
 
   static int _speedup;
   static bool _queryWindow;
diff -ru xfreecell.orig/stack.h xfreecell/stack.h
--- xfreecell.orig/stack.h	1999-03-02 10:20:02.000000000 -0800
+++ xfreecell/stack.h	2004-02-25 02:17:24.000000000 -0800
@@ -28,7 +28,7 @@
   int _next_x, _next_y;
 
 private:
-  vector<Card*> _cards;
+  std::vector<Card*> _cards;
 };
 
 class PlayStack : public Stack {
diff -ru xfreecell.orig/subwindows.h xfreecell/subwindows.h
--- xfreecell.orig/subwindows.h	1999-03-15 15:09:49.000000000 -0800
+++ xfreecell/subwindows.h	2004-02-25 02:17:24.000000000 -0800
@@ -76,7 +76,7 @@
   int _undos;
   int _totalScore;
 
-  string saveFile;
+  std::string saveFile;
 
   bool exitPressed;
 
diff -ru xfreecell.orig/undo.cpp xfreecell/undo.cpp
--- xfreecell.orig/undo.cpp	1999-03-25 07:48:40.000000000 -0800
+++ xfreecell/undo.cpp	2004-02-25 02:17:24.000000000 -0800
@@ -22,7 +22,7 @@
   c->moveToStack(from, false, false);
 }
 
-stack<Move> moves;
+std::stack<Move> moves;
 
 void undoClearMoves()
 {
diff -ru xfreecell.orig/widget/container.cpp xfreecell/widget/container.cpp
--- xfreecell.orig/widget/container.cpp	1999-03-03 09:34:52.000000000 -0800
+++ xfreecell/widget/container.cpp	2004-02-25 02:17:24.000000000 -0800
@@ -61,18 +61,18 @@
 
 void NSContainer::remove(NSComponent* nsc)
 {
-  vector<NSComponent*>::iterator iter;
+  std::vector<NSComponent*>::iterator iter;
   for (iter = nscVec.begin(); iter != nscVec.end(); iter++) 
     if (*iter == nsc) nscVec.erase(iter);
 }
 
 void NSContainer::hremove(NSComponent* nsc)
 {
-  vector<NSComponent*>::iterator iter;
+  std::vector<NSComponent*>::iterator iter;
   for (iter = nscVec.begin(); iter != nscVec.end(); iter++) {
     if (*iter == nsc) {
       int w = (*iter)->width() + _neighborGap;
-      vector<NSComponent*>::iterator iter2 = iter + 1;
+      std::vector<NSComponent*>::iterator iter2 = iter + 1;
       if (nscVec.size() == 0) {
 	_width = 0; _height = 0;
       } else {
@@ -87,11 +87,11 @@
 
 void NSContainer::vremove(NSComponent* nsc)
 {
-  vector<NSComponent*>::iterator iter;
+  std::vector<NSComponent*>::iterator iter;
   for (iter = nscVec.begin(); iter != nscVec.end(); iter++) {
     if (*iter == nsc) {
       int h = (*iter)->height() + _neighborGap;
-      vector<NSComponent*>::iterator iter2 = iter + 1;
+      std::vector<NSComponent*>::iterator iter2 = iter + 1;
       if (nscVec.size() == 0) {
 	_width = 0; _height = 0;
       } else {
diff -ru xfreecell.orig/widget/makefile xfreecell/widget/makefile
--- xfreecell.orig/widget/makefile	1999-03-17 21:54:57.000000000 -0800
+++ xfreecell/widget/makefile	2004-02-25 02:17:59.000000000 -0800
@@ -1,15 +1,13 @@
 OBJECTS=window.o plate.o string.o button.o label.o textfield.o container.o frame.o util.o scrollbar.o font.o main.o
-#C=/usr/local/gcc-2.8.1/bin/g++
-CC=g++
-CFLAGS=-g -Wall
+CFLAGS=$(CXXFLAGS) -Wall
 LIBS=-L/usr/X11R6/lib -lX11
 LIBNAME=libns.a
 
 all: test.o $(OBJECTS)
-	$(CC) $(CFLAGS) test.o $(OBJECTS) $(LIBS)
+	$(CXX) $(CFLAGS) test.o $(OBJECTS) $(LIBS)
 
 %.o: %.cpp
-	$(CC) $(CFLAGS) -c $<
+	$(CXX) $(CFLAGS) -c $<
 
 clean:
 	rm -f *.o *~ a.out .nfs* dummy
diff -ru xfreecell.orig/widget/textfield.cpp xfreecell/widget/textfield.cpp
--- xfreecell.orig/widget/textfield.cpp	1999-03-03 09:34:52.000000000 -0800
+++ xfreecell/widget/textfield.cpp	2004-02-25 02:17:24.000000000 -0800
@@ -1,3 +1,4 @@
+#include <cctype>
 #include "widget.h"
 
 GC NSTextField::gc;
diff -ru xfreecell.orig/widget/widget.h xfreecell/widget/widget.h
--- xfreecell.orig/widget/widget.h	1999-03-15 08:29:32.000000000 -0800
+++ xfreecell/widget/widget.h	2004-02-25 02:17:24.000000000 -0800
@@ -114,7 +114,7 @@
     Elt(NSWindow* nw, Window w) { nswindow = nw; window = w; }
   };
 
-  static vector<Elt> eltVector;
+  static std::vector<Elt> eltVector;
   static void eraseWindow(Window);
   static void registerWindow(NSWindow*, Window);
 };
@@ -171,7 +171,7 @@
   void fontWindowHeight(unsigned int);
   void resizable(bool arg) { _resizable = arg; }
 
-  string _label;
+  std::string _label;
 private:
   static const int fontGap = 4;
   static XFontStruct* fontStruct;
@@ -272,7 +272,7 @@
   static unsigned int charWidth, charHeight;
 
   unsigned int maxCharNum;
-  string _str;
+  std::string _str;
   unsigned int cursorPos;
   unsigned int strStart;
   bool cursorOnTF;
@@ -327,7 +327,7 @@
   unsigned int _vGap, _hGap, _neighborGap;
   Window _parentWindow;
 
-  vector<NSComponent*> nscVec;
+  std::vector<NSComponent*> nscVec;
 };
 
 // ##### NSHContainer #####
diff -ru xfreecell.orig/widget/window.cpp xfreecell/widget/window.cpp
--- xfreecell.orig/widget/window.cpp	1999-03-03 09:34:52.000000000 -0800
+++ xfreecell/widget/window.cpp	2004-02-25 02:17:24.000000000 -0800
@@ -2,7 +2,7 @@
 
 bool NSWindow::windowInitialized = false;
 Window NSWindow::_root;
-vector<NSWindow::Elt> NSWindow::eltVector;
+std::vector<NSWindow::Elt> NSWindow::eltVector;
 
 NSWindow::NSWindow(bool create, Window w, int x, int y, unsigned int width, unsigned int height, 
 		   unsigned int borderWidth, unsigned long border, unsigned long bg)
@@ -86,8 +86,8 @@
 
 void NSWindow::registerWindow(NSWindow* nsw, Window w)
 {
-  vector<Elt>::iterator begin = eltVector.begin();
-  vector<Elt>::iterator end = eltVector.end();
+  std::vector<Elt>::iterator begin = eltVector.begin();
+  std::vector<Elt>::iterator end = eltVector.end();
   Elt elt(nsw, w);
 
   if (eltVector.size() == 0 || w > eltVector.back().window) {
@@ -95,7 +95,7 @@
     return;
   }
 
-  for (vector<Elt>::iterator iter = begin; iter != end; iter++)
+  for (std::vector<Elt>::iterator iter = begin; iter != end; iter++)
     if ((*iter).window > w)
       eltVector.insert(iter, elt);
   
@@ -104,9 +104,9 @@
 
 void NSWindow::eraseWindow(Window w)
 {
-  vector<Elt>::iterator begin = eltVector.begin();
-  vector<Elt>::iterator end = eltVector.end();
-  vector<Elt>::iterator iter;
+  std::vector<Elt>::iterator begin = eltVector.begin();
+  std::vector<Elt>::iterator end = eltVector.end();
+  std::vector<Elt>::iterator iter;
 
   for (iter = begin; iter != end; iter++) {
     if ((*iter).window == w) eltVector.erase(iter);