]> git.pld-linux.org Git - packages/SimGear.git/blob - SimGear-shared.patch
- updated
[packages/SimGear.git] / SimGear-shared.patch
1 diff -urN aaa/SimGear-0.3.3/configure.ac SimGear-0.3.3/configure.ac
2 --- aaa/SimGear-0.3.3/configure.ac      2003-06-03 20:48:49.000000000 +0200
3 +++ SimGear-0.3.3/configure.ac  2003-08-02 13:50:56.000000000 +0200
4 @@ -34,7 +34,7 @@
5  AC_PROG_CC
6  AC_PROG_CPP
7  AC_PROG_CXX
8 -AC_PROG_RANLIB
9 +AC_PROG_LIBTOOL
10  AC_PROG_INSTALL
11  AC_PROG_LN_S
12  
13 diff -urN aaa/SimGear-0.3.3/simgear/bucket/Makefile.am SimGear-0.3.3/simgear/bucket/Makefile.am
14 --- aaa/SimGear-0.3.3/simgear/bucket/Makefile.am        2003-05-20 20:30:09.000000000 +0200
15 +++ SimGear-0.3.3/simgear/bucket/Makefile.am    2003-08-02 13:44:28.000000000 +0200
16 @@ -1,10 +1,10 @@
17  includedir = @includedir@/bucket
18  
19 -lib_LIBRARIES = libsgbucket.a
20 +lib_LTLIBRARIES = libsgbucket.la
21  
22  include_HEADERS = newbucket.hxx
23  
24 -libsgbucket_a_SOURCES = newbucket.cxx
25 +libsgbucket_la_SOURCES = newbucket.cxx
26  
27  # noinst_PROGRAMS = testbucket
28  
29 diff -urN aaa/SimGear-0.3.3/simgear/debug/Makefile.am SimGear-0.3.3/simgear/debug/Makefile.am
30 --- aaa/SimGear-0.3.3/simgear/debug/Makefile.am 2003-05-20 20:30:10.000000000 +0200
31 +++ SimGear-0.3.3/simgear/debug/Makefile.am     2003-08-02 13:43:13.000000000 +0200
32 @@ -2,10 +2,10 @@
33  
34  EXTRA_DIST = logtest.cxx
35  
36 -lib_LIBRARIES = libsgdebug.a
37 +lib_LTLIBRARIES = libsgdebug.la
38  
39  include_HEADERS = debug_types.h logstream.hxx
40  
41 -libsgdebug_a_SOURCES = logstream.cxx
42 +libsgdebug_la_SOURCES = logstream.cxx
43  
44  INCLUDES = -I$(top_srcdir)
45 diff -urN aaa/SimGear-0.3.3/simgear/ephemeris/Makefile.am SimGear-0.3.3/simgear/ephemeris/Makefile.am
46 --- aaa/SimGear-0.3.3/simgear/ephemeris/Makefile.am     2003-05-20 20:30:10.000000000 +0200
47 +++ SimGear-0.3.3/simgear/ephemeris/Makefile.am 2003-08-02 13:44:42.000000000 +0200
48 @@ -1,6 +1,6 @@
49  includedir = @includedir@/ephemeris
50  
51 -lib_LIBRARIES = libsgephem.a
52 +lib_LTLIBRARIES = libsgephem.la
53  
54  include_HEADERS = \
55         celestialBody.hxx \
56 @@ -16,7 +16,7 @@
57         uranus.hxx \
58         venus.hxx
59  
60 -libsgephem_a_SOURCES = \
61 +libsgephem_la_SOURCES = \
62         celestialBody.cxx \
63         ephemeris.cxx \
64         jupiter.cxx \
65 diff -urN aaa/SimGear-0.3.3/simgear/io/Makefile.am SimGear-0.3.3/simgear/io/Makefile.am
66 --- aaa/SimGear-0.3.3/simgear/io/Makefile.am    2003-05-20 20:30:11.000000000 +0200
67 +++ SimGear-0.3.3/simgear/io/Makefile.am        2003-08-02 15:02:48.000000000 +0200
68 @@ -1,6 +1,6 @@
69  includedir = @includedir@/io
70  
71 -lib_LIBRARIES = libsgio.a
72 +lib_LTLIBRARIES = libsgio.la
73  
74  include_HEADERS = \
75         iochannel.hxx \
76 @@ -11,7 +11,7 @@
77         sg_socket.hxx \
78         sg_socket_udp.hxx
79  
80 -libsgio_a_SOURCES = \
81 +libsgio_la_SOURCES = \
82         iochannel.cxx \
83         lowlevel.cxx \
84         sg_binobj.cxx \
85 @@ -27,44 +27,54 @@
86  tcp_server_SOURCES = tcp_server.cxx
87  
88  tcp_server_LDADD = \
89 -       $(top_builddir)/simgear/io/libsgio.a \
90 -       $(top_builddir)/simgear/debug/libsgdebug.a \
91 -       $(top_builddir)/simgear/bucket/libsgbucket.a \
92 -       $(top_builddir)/simgear/misc/libsgmisc.a \
93 -       $(top_builddir)/simgear/xml/libsgxml.a \
94 +       $(top_builddir)/simgear/io/libsgio.la \
95 +       $(top_builddir)/simgear/debug/libsgdebug.la \
96 +       $(top_builddir)/simgear/bucket/libsgbucket.la \
97 +       $(top_builddir)/simgear/misc/libsgmisc.la \
98 +       $(top_builddir)/simgear/xml/libsgxml.la \
99 +       $(top_builddir)/simgear/serial/libsgserial.la \
100         -lplibnet -lplibul -lz
101  
102  tcp_client_SOURCES = tcp_client.cxx
103  
104  tcp_client_LDADD = \
105 -       $(top_builddir)/simgear/io/libsgio.a \
106 -       $(top_builddir)/simgear/debug/libsgdebug.a \
107 -       $(top_builddir)/simgear/bucket/libsgbucket.a \
108 -       $(top_builddir)/simgear/misc/libsgmisc.a \
109 -        $(top_builddir)/simgear/xml/libsgxml.a \
110 +       $(top_builddir)/simgear/io/libsgio.la \
111 +       $(top_builddir)/simgear/debug/libsgdebug.la \
112 +       $(top_builddir)/simgear/bucket/libsgbucket.la \
113 +       $(top_builddir)/simgear/misc/libsgmisc.la \
114 +        $(top_builddir)/simgear/xml/libsgxml.la \
115 +       $(top_builddir)/simgear/serial/libsgserial.la \
116         -lplibnet -lplibul -lz
117  
118  socktest_SOURCES = socktest.cxx
119  
120  socktest_LDADD = \
121 -       $(top_builddir)/simgear/bucket/libsgbucket.a \
122 -        $(top_builddir)/simgear/io/libsgio.a \
123 -       $(top_builddir)/simgear/debug/libsgdebug.a \
124 -       $(top_builddir)/simgear/misc/libsgmisc.a \
125 -       $(top_builddir)/simgear/xml/libsgxml.a \
126 +       $(top_builddir)/simgear/bucket/libsgbucket.la \
127 +        $(top_builddir)/simgear/io/libsgio.la \
128 +       $(top_builddir)/simgear/debug/libsgdebug.la \
129 +       $(top_builddir)/simgear/misc/libsgmisc.la \
130 +       $(top_builddir)/simgear/xml/libsgxml.la \
131 +       $(top_builddir)/simgear/serial/libsgserial.la \
132         -lplibnet -lplibul -lz
133  
134  lowtest_SOURCES = lowtest.cxx
135  
136  lowtest_LDADD = \
137 -       $(top_builddir)/simgear/io/libsgio.a
138 +       $(top_builddir)/simgear/io/libsgio.la \
139 +       $(top_builddir)/simgear/bucket/libsgbucket.la \
140 +       $(top_builddir)/simgear/serial/libsgserial.la \
141 +       $(top_builddir)/simgear/debug/libsgdebug.la \
142 +       $(top_builddir)/simgear/misc/libsgmisc.la \
143 +       $(top_builddir)/simgear/xml/libsgxml.la \
144 +       -lplibnet -lplibul -lz
145  
146  decode_binobj_SOURCES = decode_binobj.cxx
147  
148  decode_binobj_LDADD = \
149 -       $(top_builddir)/simgear/io/libsgio.a \
150 -        $(top_builddir)/simgear/bucket/libsgbucket.a \
151 -        $(top_builddir)/simgear/misc/libsgmisc.a \
152 -        $(top_builddir)/simgear/debug/libsgdebug.a \
153 -       $(top_builddir)/simgear/xml/libsgxml.a \
154 -       -lz
155 +       $(top_builddir)/simgear/io/libsgio.la \
156 +        $(top_builddir)/simgear/bucket/libsgbucket.la \
157 +        $(top_builddir)/simgear/misc/libsgmisc.la \
158 +        $(top_builddir)/simgear/debug/libsgdebug.la \
159 +       $(top_builddir)/simgear/xml/libsgxml.la \
160 +       $(top_builddir)/simgear/serial/libsgserial.la \
161 +       -lz -lplibnet
162 diff -urN aaa/SimGear-0.3.3/simgear/magvar/Makefile.am SimGear-0.3.3/simgear/magvar/Makefile.am
163 --- aaa/SimGear-0.3.3/simgear/magvar/Makefile.am        2003-05-20 20:30:12.000000000 +0200
164 +++ SimGear-0.3.3/simgear/magvar/Makefile.am    2003-08-02 13:45:56.000000000 +0200
165 @@ -1,10 +1,10 @@
166  includedir = @includedir@/magvar
167  
168 -lib_LIBRARIES = libsgmagvar.a
169 +lib_LTLIBRARIES = libsgmagvar.la
170  
171  include_HEADERS = magvar.hxx
172  
173 -libsgmagvar_a_SOURCES = \
174 +libsgmagvar_la_SOURCES = \
175         coremag.hxx coremag.cxx \
176         magvar.cxx
177  
178 @@ -12,6 +12,6 @@
179  
180  testmagvar_SOURCES = testmagvar.cxx
181  
182 -testmagvar_LDADD = $(top_builddir)/simgear/magvar/libsgmagvar.a
183 +testmagvar_LDADD = $(top_builddir)/simgear/magvar/libsgmagvar.la
184  
185  INCLUDES = -I$(top_srcdir)
186 diff -urN aaa/SimGear-0.3.3/simgear/Makefile.am SimGear-0.3.3/simgear/Makefile.am
187 --- aaa/SimGear-0.3.3/simgear/Makefile.am       2003-05-30 17:16:25.000000000 +0200
188 +++ SimGear-0.3.3/simgear/Makefile.am   2003-08-02 13:42:11.000000000 +0200
189 @@ -19,6 +19,7 @@
190         misc \
191         bucket \
192         ephemeris \
193 +       serial \
194         io \
195         magvar \
196         math \
197 @@ -27,7 +28,6 @@
198         route \
199         scene \
200         screen \
201 -       serial \
202         sound \
203         $(SGTHREAD_DIR) \
204         timing \
205 diff -urN aaa/SimGear-0.3.3/simgear/math/Makefile.am SimGear-0.3.3/simgear/math/Makefile.am
206 --- aaa/SimGear-0.3.3/simgear/math/Makefile.am  2003-05-20 20:30:12.000000000 +0200
207 +++ SimGear-0.3.3/simgear/math/Makefile.am      2003-08-02 13:46:09.000000000 +0200
208 @@ -1,6 +1,6 @@
209  includedir = @includedir@/math
210  
211 -lib_LIBRARIES = libsgmath.a
212 +lib_LTLIBRARIES = libsgmath.la
213  
214  include_HEADERS = \
215         interpolater.hxx \
216 @@ -16,7 +16,7 @@
217  
218  EXTRA_DIST = linintp2.h linintp2.inl sphrintp.h sphrintp.inl
219  
220 -libsgmath_a_SOURCES = \
221 +libsgmath_la_SOURCES = \
222         interpolater.cxx \
223         leastsqs.cxx \
224         polar3d.cxx \
225 diff -urN aaa/SimGear-0.3.3/simgear/metar/Makefile.am SimGear-0.3.3/simgear/metar/Makefile.am
226 --- aaa/SimGear-0.3.3/simgear/metar/Makefile.am 2003-05-20 20:30:14.000000000 +0200
227 +++ SimGear-0.3.3/simgear/metar/Makefile.am     2003-08-02 13:46:21.000000000 +0200
228 @@ -1,10 +1,10 @@
229  includedir = @includedir@/metar
230  
231 -lib_LIBRARIES = libsgmetar.a
232 +lib_LTLIBRARIES = libsgmetar.la
233  
234  include_HEADERS = MetarReport.h MetarStation.h 
235  
236 -libsgmetar_a_SOURCES = \
237 +libsgmetar_la_SOURCES = \
238         Antoi.cpp Charcmp.cpp Dcdmetar.cpp Dcdmtrmk.cpp Drvmetar.c \
239         Fracpart.cpp Local.h Metar.h \
240         MetarReport.cpp \
241 diff -urN aaa/SimGear-0.3.3/simgear/misc/Makefile.am SimGear-0.3.3/simgear/misc/Makefile.am
242 --- aaa/SimGear-0.3.3/simgear/misc/Makefile.am  2003-05-20 20:30:15.000000000 +0200
243 +++ SimGear-0.3.3/simgear/misc/Makefile.am      2003-08-02 13:53:31.000000000 +0200
244 @@ -1,6 +1,6 @@
245  includedir = @includedir@/misc
246  
247 -lib_LIBRARIES = libsgmisc.a
248 +lib_LTLIBRARIES = libsgmisc.la
249  
250  include_HEADERS = \
251          commands.hxx \
252 @@ -13,7 +13,7 @@
253         texcoord.hxx \
254         zfstream.hxx
255  
256 -libsgmisc_a_SOURCES = \
257 +libsgmisc_la_SOURCES = \
258          commands.cxx \
259          exception.cxx \
260         sg_path.cxx \
261 @@ -27,8 +27,9 @@
262  
263  tabbed_value_test_SOURCES = tabbed_values_test.cxx
264  tabbed_value_test_LDADD = \
265 -       $(top_builddir)/simgear/misc/libsgmisc.a \
266 -       $(top_builddir)/simgear/xml/libsgxml.a \
267 -       $(top_builddir)/simgear/debug/libsgdebug.a
268 +       $(top_builddir)/simgear/misc/libsgmisc.la \
269 +       $(top_builddir)/simgear/xml/libsgxml.la \
270 +       $(top_builddir)/simgear/debug/libsgdebug.la \
271 +       -lz
272  
273  INCLUDES = -I$(top_srcdir)
274 diff -urN aaa/SimGear-0.3.3/simgear/props/Makefile.am SimGear-0.3.3/simgear/props/Makefile.am
275 --- aaa/SimGear-0.3.3/simgear/props/Makefile.am 2003-05-20 20:30:24.000000000 +0200
276 +++ SimGear-0.3.3/simgear/props/Makefile.am     2003-08-02 15:11:08.000000000 +0200
277 @@ -1,13 +1,13 @@
278  includedir = @includedir@/props
279  
280 -lib_LIBRARIES = libsgprops.a
281 +lib_LTLIBRARIES = libsgprops.la
282  
283  include_HEADERS = \
284         condition.hxx \
285         props.hxx \
286         props_io.hxx
287  
288 -libsgprops_a_SOURCES = \
289 +libsgprops_la_SOURCES = \
290         condition.cxx \
291         props.cxx \
292          props_io.cxx
293 @@ -16,9 +16,10 @@
294  
295  props_test_SOURCES = props_test.cxx
296  props_test_LDADD = \
297 -       $(top_builddir)/simgear/props/libsgprops.a \
298 -       $(top_builddir)/simgear/xml/libsgxml.a \
299 -       $(top_builddir)/simgear/misc/libsgmisc.a \
300 -       $(top_builddir)/simgear/debug/libsgdebug.a
301 +       $(top_builddir)/simgear/props/libsgprops.la \
302 +       $(top_builddir)/simgear/xml/libsgxml.la \
303 +       $(top_builddir)/simgear/misc/libsgmisc.la \
304 +       $(top_builddir)/simgear/debug/libsgdebug.la \
305 +       -lz
306  
307  INCLUDES = -I$(top_srcdir)
308 diff -urN aaa/SimGear-0.3.3/simgear/route/Makefile.am SimGear-0.3.3/simgear/route/Makefile.am
309 --- aaa/SimGear-0.3.3/simgear/route/Makefile.am 2003-05-20 20:30:16.000000000 +0200
310 +++ SimGear-0.3.3/simgear/route/Makefile.am     2003-08-02 15:18:24.000000000 +0200
311 @@ -1,10 +1,10 @@
312  includedir = @includedir@/route
313  
314 -lib_LIBRARIES = libsgroute.a
315 +lib_LTLIBRARIES = libsgroute.la
316  
317  include_HEADERS = route.hxx waypoint.hxx
318  
319 -libsgroute_a_SOURCES = \
320 +libsgroute_la_SOURCES = \
321         route.cxx \
322         waypoint.cxx
323  
324 @@ -15,16 +15,20 @@
325  waytest_SOURCES = waytest.cxx
326  
327  waytest_LDADD = \
328 -       $(top_builddir)/simgear/route/libsgroute.a \
329 -       $(top_builddir)/simgear/math/libsgmath.a \
330 -       $(top_builddir)/simgear/debug/libsgdebug.a \
331 -       $(top_builddir)/simgear/misc/libsgmisc.a \
332 -       $(top_builddir)/simgear/xml/libsgxml.a \
333 +       $(top_builddir)/simgear/route/libsgroute.la \
334 +       $(top_builddir)/simgear/math/libsgmath.la \
335 +       $(top_builddir)/simgear/debug/libsgdebug.la \
336 +       $(top_builddir)/simgear/misc/libsgmisc.la \
337 +       $(top_builddir)/simgear/xml/libsgxml.la \
338         -lz
339  
340  routetest_SOURCES = routetest.cxx
341  
342  routetest_LDADD = \
343 -       $(top_builddir)/simgear/route/libsgroute.a \
344 -       $(top_builddir)/simgear/math/libsgmath.a \
345 -       $(top_builddir)/simgear/debug/libsgdebug.a
346 +       $(top_builddir)/simgear/route/libsgroute.la \
347 +       $(top_builddir)/simgear/math/libsgmath.la \
348 +       $(top_builddir)/simgear/debug/libsgdebug.la \
349 +       $(top_builddir)/simgear/misc/libsgmisc.la \
350 +       $(top_builddir)/simgear/xml/libsgxml.la \
351 +       -lz
352 +       
353 diff -urN aaa/SimGear-0.3.3/simgear/scene/material/Makefile.am SimGear-0.3.3/simgear/scene/material/Makefile.am
354 --- aaa/SimGear-0.3.3/simgear/scene/material/Makefile.am        2003-05-20 20:30:26.000000000 +0200
355 +++ SimGear-0.3.3/simgear/scene/material/Makefile.am    2003-08-02 13:47:17.000000000 +0200
356 @@ -1,6 +1,6 @@
357  includedir = @includedir@/scene/material
358  
359 -lib_LIBRARIES = libsgmaterial.a
360 +lib_LTLIBRARIES = libsgmaterial.la
361  
362  noinst_HEADERS =
363  
364 @@ -9,7 +9,7 @@
365         matlib.hxx \
366         matmodel.hxx
367  
368 -libsgmaterial_a_SOURCES = \
369 +libsgmaterial_la_SOURCES = \
370         mat.cxx \
371         matlib.cxx \
372         matmodel.cxx
373 diff -urN aaa/SimGear-0.3.3/simgear/scene/model/Makefile.am SimGear-0.3.3/simgear/scene/model/Makefile.am
374 --- aaa/SimGear-0.3.3/simgear/scene/model/Makefile.am   2003-05-20 20:30:25.000000000 +0200
375 +++ SimGear-0.3.3/simgear/scene/model/Makefile.am       2003-08-02 13:47:28.000000000 +0200
376 @@ -1,6 +1,6 @@
377  includedir = @includedir@/scene/model
378  
379 -lib_LIBRARIES = libsgmodel.a
380 +lib_LTLIBRARIES = libsgmodel.la
381  
382  noinst_HEADERS =
383  
384 @@ -11,7 +11,7 @@
385         modellib.hxx \
386         placement.hxx
387  
388 -libsgmodel_a_SOURCES = \
389 +libsgmodel_la_SOURCES = \
390         animation.cxx \
391         location.cxx \
392         model.cxx \
393 diff -urN aaa/SimGear-0.3.3/simgear/scene/sky/Makefile.am SimGear-0.3.3/simgear/scene/sky/Makefile.am
394 --- aaa/SimGear-0.3.3/simgear/scene/sky/Makefile.am     2003-05-30 17:16:26.000000000 +0200
395 +++ SimGear-0.3.3/simgear/scene/sky/Makefile.am 2003-08-02 13:47:41.000000000 +0200
396 @@ -2,7 +2,7 @@
397  
398  # SUBDIRS = clouds3d
399  
400 -lib_LIBRARIES = libsgsky.a
401 +lib_LTLIBRARIES = libsgsky.la
402  
403  include_HEADERS = \
404         cloud.hxx \
405 @@ -13,7 +13,7 @@
406         sphere.hxx \
407         stars.hxx
408  
409 -libsgsky_a_SOURCES = \
410 +libsgsky_la_SOURCES = \
411         cloud.cxx \
412         dome.cxx \
413         moon.cxx \
414 diff -urN aaa/SimGear-0.3.3/simgear/scene/tgdb/Makefile.am SimGear-0.3.3/simgear/scene/tgdb/Makefile.am
415 --- aaa/SimGear-0.3.3/simgear/scene/tgdb/Makefile.am    2003-05-30 21:33:02.000000000 +0200
416 +++ SimGear-0.3.3/simgear/scene/tgdb/Makefile.am        2003-08-02 13:47:54.000000000 +0200
417 @@ -1,6 +1,6 @@
418  includedir = @includedir@/scene/tgdb
419  
420 -lib_LIBRARIES = libsgtgdb.a
421 +lib_LTLIBRARIES = libsgtgdb.la
422  
423  noinst_HEADERS =
424  
425 @@ -11,7 +11,7 @@
426         pt_lights.hxx \
427         userdata.hxx
428  
429 -libsgtgdb_a_SOURCES = \
430 +libsgtgdb_la_SOURCES = \
431         apt_signs.cxx \
432         leaf.cxx \
433         obj.cxx \
434 diff -urN aaa/SimGear-0.3.3/simgear/screen/Makefile.am SimGear-0.3.3/simgear/screen/Makefile.am
435 --- aaa/SimGear-0.3.3/simgear/screen/Makefile.am        2003-05-20 20:30:17.000000000 +0200
436 +++ SimGear-0.3.3/simgear/screen/Makefile.am    2003-08-02 13:48:09.000000000 +0200
437 @@ -1,6 +1,6 @@
438  includedir = @includedir@/screen
439  
440 -lib_LIBRARIES = libsgscreen.a
441 +lib_LTLIBRARIES = libsgscreen.la
442  
443  EXTRA_DIST = jpgfactory.cxx jpgfactory.hxx
444  
445 @@ -21,7 +21,7 @@
446         screen-dump.hxx \
447         tr.h
448  
449 -libsgscreen_a_SOURCES = \
450 +libsgscreen_la_SOURCES = \
451         texture.cxx \
452         GLBitmaps.cxx GLBitmaps.h \
453         $(IMAGE_SERVER_SRCS) \
454 diff -urN aaa/SimGear-0.3.3/simgear/serial/Makefile.am SimGear-0.3.3/simgear/serial/Makefile.am
455 --- aaa/SimGear-0.3.3/simgear/serial/Makefile.am        2003-05-20 20:30:17.000000000 +0200
456 +++ SimGear-0.3.3/simgear/serial/Makefile.am    2003-08-02 13:48:22.000000000 +0200
457 @@ -1,17 +1,17 @@
458  includedir = @includedir@/serial
459  
460 -lib_LIBRARIES = libsgserial.a
461 +lib_LTLIBRARIES = libsgserial.la
462  
463  include_HEADERS = serial.hxx
464  
465 -libsgserial_a_SOURCES = serial.cxx
466 +libsgserial_la_SOURCES = serial.cxx
467  
468  noinst_PROGRAMS = testserial
469  
470  testserial_SOURCES = testserial.cxx
471  
472  testserial_LDADD = \
473 -       $(top_builddir)/simgear/serial/libsgserial.a \
474 -       $(top_builddir)/simgear/debug/libsgdebug.a
475 +       $(top_builddir)/simgear/serial/libsgserial.la \
476 +       $(top_builddir)/simgear/debug/libsgdebug.la
477  
478  INCLUDES = -I$(top_srcdir)
479 diff -urN aaa/SimGear-0.3.3/simgear/sound/Makefile.am SimGear-0.3.3/simgear/sound/Makefile.am
480 --- aaa/SimGear-0.3.3/simgear/sound/Makefile.am 2003-05-20 20:30:25.000000000 +0200
481 +++ SimGear-0.3.3/simgear/sound/Makefile.am     2003-08-02 13:48:32.000000000 +0200
482 @@ -1,11 +1,11 @@
483  includedir = @includedir@/sound
484  
485 -lib_LIBRARIES = libsgsound.a
486 +lib_LTLIBRARIES = libsgsound.la
487  
488  noinst_HEADERS =
489  
490  include_HEADERS = sound.hxx soundmgr.hxx
491  
492 -libsgsound_a_SOURCES = sound.cxx soundmgr.cxx
493 +libsgsound_la_SOURCES = sound.cxx soundmgr.cxx
494  
495  INCLUDES = -I$(top_srcdir)
496 diff -urN aaa/SimGear-0.3.3/simgear/threads/Makefile.am SimGear-0.3.3/simgear/threads/Makefile.am
497 --- aaa/SimGear-0.3.3/simgear/threads/Makefile.am       2003-05-20 20:30:21.000000000 +0200
498 +++ SimGear-0.3.3/simgear/threads/Makefile.am   2003-08-02 13:48:41.000000000 +0200
499 @@ -1,13 +1,13 @@
500  includedir = @includedir@/threads
501  
502 -lib_LIBRARIES = libsgthreads.a
503 +lib_LTLIBRARIES = libsgthreads.la
504  
505  include_HEADERS = \
506         SGGuard.hxx \
507         SGQueue.hxx \
508         SGThread.hxx
509  
510 -libsgthreads_a_SOURCES = \
511 +libsgthreads_la_SOURCES = \
512         SGThread.cxx
513  
514  INCLUDES = -I$(top_srcdir)
515 diff -urN aaa/SimGear-0.3.3/simgear/timing/Makefile.am SimGear-0.3.3/simgear/timing/Makefile.am
516 --- aaa/SimGear-0.3.3/simgear/timing/Makefile.am        2003-05-20 20:30:21.000000000 +0200
517 +++ SimGear-0.3.3/simgear/timing/Makefile.am    2003-08-02 13:48:50.000000000 +0200
518 @@ -1,6 +1,6 @@
519  includedir = @includedir@/timing
520  
521 -lib_LIBRARIES = libsgtiming.a
522 +lib_LTLIBRARIES = libsgtiming.la
523  
524  include_HEADERS = \
525         geocoord.h \
526 @@ -9,7 +9,7 @@
527         timestamp.hxx \
528         timezone.h
529  
530 -libsgtiming_a_SOURCES = \
531 +libsgtiming_la_SOURCES = \
532         geocoord.cxx \
533         lowleveltime.cxx \
534         sg_time.cxx \
535 diff -urN aaa/SimGear-0.3.3/simgear/xgl/Makefile.am SimGear-0.3.3/simgear/xgl/Makefile.am
536 --- aaa/SimGear-0.3.3/simgear/xgl/Makefile.am   2003-05-20 20:30:22.000000000 +0200
537 +++ SimGear-0.3.3/simgear/xgl/Makefile.am       2003-08-02 13:48:58.000000000 +0200
538 @@ -1,9 +1,9 @@
539  includedir = @includedir@/xgl
540  
541 -lib_LIBRARIES = libsgxgl.a
542 +lib_LTLIBRARIES = libsgxgl.la
543  
544  include_HEADERS = xgl.h
545  
546 -libsgxgl_a_SOURCES = xgl.c xglUtils.c
547 +libsgxgl_la_SOURCES = xgl.c xglUtils.c
548  
549  INCLUDES = -I$(top_srcdir)
550 diff -urN aaa/SimGear-0.3.3/simgear/xml/Makefile.am SimGear-0.3.3/simgear/xml/Makefile.am
551 --- aaa/SimGear-0.3.3/simgear/xml/Makefile.am   2003-05-20 20:30:22.000000000 +0200
552 +++ SimGear-0.3.3/simgear/xml/Makefile.am       2003-08-02 13:42:56.000000000 +0200
553 @@ -1,6 +1,6 @@
554  includedir = @includedir@/xml
555  
556 -lib_LIBRARIES = libsgxml.a
557 +lib_LTLIBRARIES = libsgxml.la
558  
559  include_HEADERS = \
560         easyxml.hxx
561 @@ -8,7 +8,7 @@
562  noinst_HEADERS = \
563         xmltok_impl.c xmltok_ns.c
564  
565 -libsgxml_a_SOURCES = \
566 +libsgxml_la_SOURCES = \
567          asciitab.h \
568         easyxml.cxx \
569         hashtable.h hashtable.c \
This page took 0.076453 seconds and 3 git commands to generate.