]> git.pld-linux.org Git - packages/SimGear.git/blob - SimGear-shared.patch
bbed2a6c32cd1a637880a4546fc310a4799aa2c8
[packages/SimGear.git] / SimGear-shared.patch
1 diff -urN aaa/SimGear-0.3.4/configure.ac SimGear-0.3.4/configure.ac
2 --- aaa/SimGear-0.3.4/configure.ac      2003-10-22 21:21:24.000000000 +0200
3 +++ SimGear-0.3.4/configure.ac  2003-11-10 22:18:37.000000000 +0100
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.4/simgear/bucket/Makefile.am SimGear-0.3.4/simgear/bucket/Makefile.am
14 --- aaa/SimGear-0.3.4/simgear/bucket/Makefile.am        2002-09-07 04:58:19.000000000 +0200
15 +++ SimGear-0.3.4/simgear/bucket/Makefile.am    2003-11-10 22:18:37.000000000 +0100
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.4/simgear/debug/Makefile.am SimGear-0.3.4/simgear/debug/Makefile.am
30 --- aaa/SimGear-0.3.4/simgear/debug/Makefile.am 2002-09-07 04:58:19.000000000 +0200
31 +++ SimGear-0.3.4/simgear/debug/Makefile.am     2003-11-10 22:18:37.000000000 +0100
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.4/simgear/ephemeris/Makefile.am SimGear-0.3.4/simgear/ephemeris/Makefile.am
46 --- aaa/SimGear-0.3.4/simgear/ephemeris/Makefile.am     2003-08-29 19:36:27.000000000 +0200
47 +++ SimGear-0.3.4/simgear/ephemeris/Makefile.am 2003-11-10 22:18:37.000000000 +0100
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.4/simgear/io/Makefile.am SimGear-0.3.4/simgear/io/Makefile.am
66 --- aaa/SimGear-0.3.4/simgear/io/Makefile.am    2003-08-29 19:36:28.000000000 +0200
67 +++ SimGear-0.3.4/simgear/io/Makefile.am        2003-11-11 00:48:35.000000000 +0100
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,10 +27,11 @@
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/io/libsgio.la \
94 +       $(top_builddir)/simgear/debug/libsgdebug.la \
95 +       $(top_builddir)/simgear/bucket/libsgbucket.la \
96 +       $(top_builddir)/simgear/misc/libsgmisc.la \
97 +       $(top_builddir)/simgear/serial/libsgserial.la \
98         -lplibnet -lplibul -lz \
99         $(network_LIBS) \
100         $(base_LIBS)
101 @@ -38,10 +39,11 @@
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/io/libsgio.la \
110 +       $(top_builddir)/simgear/debug/libsgdebug.la \
111 +       $(top_builddir)/simgear/bucket/libsgbucket.la \
112 +       $(top_builddir)/simgear/misc/libsgmisc.la \
113 +       $(top_builddir)/simgear/serial/libsgserial.la \
114         -lplibnet -lplibul -lz \
115         $(network_LIBS) \
116         $(base_LIBS)
117 @@ -49,10 +51,11 @@
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/bucket/libsgbucket.la \
126 +       $(top_builddir)/simgear/io/libsgio.la \
127 +       $(top_builddir)/simgear/debug/libsgdebug.la \
128 +       $(top_builddir)/simgear/misc/libsgmisc.la \
129 +       $(top_builddir)/simgear/serial/libsgserial.la \
130         -lplibnet -lplibul -lz \
131         $(network_LIBS) \
132         $(base_LIBS)
133 @@ -60,13 +63,19 @@
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 +       -lplibnet -lplibul -lz
144  
145  decode_binobj_SOURCES = decode_binobj.cxx
146  
147  decode_binobj_LDADD = \
148 -       $(top_builddir)/simgear/io/libsgio.a \
149 -       $(top_builddir)/simgear/bucket/libsgbucket.a \
150 -       $(top_builddir)/simgear/misc/libsgmisc.a \
151 -       $(top_builddir)/simgear/debug/libsgdebug.a \
152 -       $(base_LIBS) -lz
153 +       $(top_builddir)/simgear/io/libsgio.la \
154 +       $(top_builddir)/simgear/bucket/libsgbucket.la \
155 +       $(top_builddir)/simgear/misc/libsgmisc.la \
156 +       $(top_builddir)/simgear/debug/libsgdebug.la \
157 +       $(top_builddir)/simgear/serial/libsgserial.la \
158 +       $(base_LIBS) -lz -lplibnet -lplibul
159 diff -urN aaa/SimGear-0.3.4/simgear/magvar/Makefile.am SimGear-0.3.4/simgear/magvar/Makefile.am
160 --- aaa/SimGear-0.3.4/simgear/magvar/Makefile.am        2003-08-29 19:36:28.000000000 +0200
161 +++ SimGear-0.3.4/simgear/magvar/Makefile.am    2003-11-10 22:24:20.000000000 +0100
162 @@ -1,10 +1,10 @@
163  includedir = @includedir@/magvar
164  
165 -lib_LIBRARIES = libsgmagvar.a
166 +lib_LTLIBRARIES = libsgmagvar.la
167  
168  include_HEADERS = magvar.hxx
169  
170 -libsgmagvar_a_SOURCES = \
171 +libsgmagvar_la_SOURCES = \
172         coremag.hxx coremag.cxx \
173         magvar.cxx
174  
175 @@ -13,7 +13,7 @@
176  testmagvar_SOURCES = testmagvar.cxx
177  
178  testmagvar_LDADD = \
179 -       $(top_builddir)/simgear/magvar/libsgmagvar.a \
180 +       $(top_builddir)/simgear/magvar/libsgmagvar.la \
181         $(base_LIBS)
182  
183  INCLUDES = -I$(top_srcdir)
184 diff -urN aaa/SimGear-0.3.4/simgear/Makefile.am SimGear-0.3.4/simgear/Makefile.am
185 --- aaa/SimGear-0.3.4/simgear/Makefile.am       2003-10-15 22:10:58.000000000 +0200
186 +++ SimGear-0.3.4/simgear/Makefile.am   2003-11-10 23:04:40.000000000 +0100
187 @@ -16,10 +16,12 @@
188         $(compatibility_DIR) \
189         xml \
190         debug \
191 -       misc \
192         structure \
193 +       timing \
194 +       misc \
195         bucket \
196         ephemeris \
197 +       serial \
198         io \
199         magvar \
200         math \
201 @@ -28,10 +30,8 @@
202         route \
203         scene \
204         screen \
205 -       serial \
206         sound \
207         $(SGTHREAD_DIR) \
208 -       timing \
209         xgl
210  
211  DIST_SUBDIRS = $(SUBDIRS) compatibility metar threads
212 diff -urN aaa/SimGear-0.3.4/simgear/math/Makefile.am SimGear-0.3.4/simgear/math/Makefile.am
213 --- aaa/SimGear-0.3.4/simgear/math/Makefile.am  2003-06-30 16:54:19.000000000 +0200
214 +++ SimGear-0.3.4/simgear/math/Makefile.am      2003-11-10 22:18:37.000000000 +0100
215 @@ -1,6 +1,6 @@
216  includedir = @includedir@/math
217  
218 -lib_LIBRARIES = libsgmath.a
219 +lib_LTLIBRARIES = libsgmath.la
220  
221  include_HEADERS = \
222         interpolater.hxx \
223 @@ -17,7 +17,7 @@
224  
225  EXTRA_DIST = linintp2.h linintp2.inl sphrintp.h sphrintp.inl
226  
227 -libsgmath_a_SOURCES = \
228 +libsgmath_la_SOURCES = \
229         interpolater.cxx \
230         leastsqs.cxx \
231         polar3d.cxx \
232 diff -urN aaa/SimGear-0.3.4/simgear/metar/Makefile.am SimGear-0.3.4/simgear/metar/Makefile.am
233 --- aaa/SimGear-0.3.4/simgear/metar/Makefile.am 2002-09-07 04:58:19.000000000 +0200
234 +++ SimGear-0.3.4/simgear/metar/Makefile.am     2003-11-10 22:18:37.000000000 +0100
235 @@ -1,10 +1,10 @@
236  includedir = @includedir@/metar
237  
238 -lib_LIBRARIES = libsgmetar.a
239 +lib_LTLIBRARIES = libsgmetar.la
240  
241  include_HEADERS = MetarReport.h MetarStation.h 
242  
243 -libsgmetar_a_SOURCES = \
244 +libsgmetar_la_SOURCES = \
245         Antoi.cpp Charcmp.cpp Dcdmetar.cpp Dcdmtrmk.cpp Drvmetar.c \
246         Fracpart.cpp Local.h Metar.h \
247         MetarReport.cpp \
248 diff -urN aaa/SimGear-0.3.4/simgear/misc/Makefile.am SimGear-0.3.4/simgear/misc/Makefile.am
249 --- aaa/SimGear-0.3.4/simgear/misc/Makefile.am  2003-09-24 19:53:47.000000000 +0200
250 +++ SimGear-0.3.4/simgear/misc/Makefile.am      2003-11-10 23:05:31.000000000 +0100
251 @@ -1,6 +1,6 @@
252  includedir = @includedir@/misc
253  
254 -lib_LIBRARIES = libsgmisc.a
255 +lib_LTLIBRARIES = libsgmisc.la
256  
257  include_HEADERS = \
258         sg_path.hxx \
259 @@ -11,7 +11,7 @@
260         texcoord.hxx \
261         zfstream.hxx
262  
263 -libsgmisc_a_SOURCES = \
264 +libsgmisc_la_SOURCES = \
265         sg_path.cxx \
266         sgstream.cxx \
267         strutils.cxx \
268 @@ -23,8 +23,11 @@
269  
270  tabbed_value_test_SOURCES = tabbed_values_test.cxx
271  tabbed_value_test_LDADD = \
272 -       $(top_builddir)/simgear/misc/libsgmisc.a \
273 -       $(top_builddir)/simgear/xml/libsgxml.a \
274 -       $(top_builddir)/simgear/debug/libsgdebug.a
275 +       $(top_builddir)/simgear/misc/libsgmisc.la \
276 +       $(top_builddir)/simgear/xml/libsgxml.la \
277 +       $(top_builddir)/simgear/debug/libsgdebug.la \
278 +       $(top_builddir)/simgear/structure/libsgstructure.la \
279 +       $(top_builddir)/simgear/timing/libsgtiming.la \
280 +       -lz
281  
282  INCLUDES = -I$(top_srcdir)
283 diff -urN aaa/SimGear-0.3.4/simgear/props/Makefile.am SimGear-0.3.4/simgear/props/Makefile.am
284 --- aaa/SimGear-0.3.4/simgear/props/Makefile.am 2003-09-30 17:36:51.000000000 +0200
285 +++ SimGear-0.3.4/simgear/props/Makefile.am     2003-11-10 23:16:49.000000000 +0100
286 @@ -1,13 +1,13 @@
287  includedir = @includedir@/props
288  
289 -lib_LIBRARIES = libsgprops.a
290 +lib_LTLIBRARIES = libsgprops.la
291  
292  include_HEADERS = \
293         condition.hxx \
294         props.hxx \
295         props_io.hxx
296  
297 -libsgprops_a_SOURCES = \
298 +libsgprops_la_SOURCES = \
299         condition.cxx \
300         props.cxx \
301         props_io.cxx
302 @@ -16,10 +16,12 @@
303  
304  props_test_SOURCES = props_test.cxx
305  props_test_LDADD = \
306 -       $(top_builddir)/simgear/props/libsgprops.a \
307 -       $(top_builddir)/simgear/xml/libsgxml.a \
308 -       $(top_builddir)/simgear/misc/libsgmisc.a \
309 -       $(top_builddir)/simgear/debug/libsgdebug.a \
310 -       $(top_builddir)/simgear/structure/libsgstructure.a
311 +       $(top_builddir)/simgear/props/libsgprops.la \
312 +       $(top_builddir)/simgear/xml/libsgxml.la \
313 +       $(top_builddir)/simgear/misc/libsgmisc.la \
314 +       $(top_builddir)/simgear/debug/libsgdebug.la \
315 +       $(top_builddir)/simgear/structure/libsgstructure.la \
316 +       $(top_builddir)/simgear/timing/libsgtiming.la \
317 +       -lz
318  
319  INCLUDES = -I$(top_srcdir)
320 diff -urN aaa/SimGear-0.3.4/simgear/route/Makefile.am SimGear-0.3.4/simgear/route/Makefile.am
321 --- aaa/SimGear-0.3.4/simgear/route/Makefile.am 2003-08-29 19:36:29.000000000 +0200
322 +++ SimGear-0.3.4/simgear/route/Makefile.am     2003-11-10 22:28:48.000000000 +0100
323 @@ -1,10 +1,10 @@
324  includedir = @includedir@/route
325  
326 -lib_LIBRARIES = libsgroute.a
327 +lib_LTLIBRARIES = libsgroute.la
328  
329  include_HEADERS = route.hxx waypoint.hxx
330  
331 -libsgroute_a_SOURCES = \
332 +libsgroute_la_SOURCES = \
333         route.cxx \
334         waypoint.cxx
335  
336 @@ -15,17 +15,19 @@
337  waytest_SOURCES = waytest.cxx
338  
339  waytest_LDADD = \
340 -       $(top_builddir)/simgear/route/libsgroute.a \
341 -       $(top_builddir)/simgear/math/libsgmath.a \
342 -       $(top_builddir)/simgear/debug/libsgdebug.a \
343 -       $(top_builddir)/simgear/misc/libsgmisc.a \
344 +       $(top_builddir)/simgear/route/libsgroute.la \
345 +       $(top_builddir)/simgear/math/libsgmath.la \
346 +       $(top_builddir)/simgear/debug/libsgdebug.la \
347 +       $(top_builddir)/simgear/misc/libsgmisc.la \
348         $(base_LIBS) \
349         -lz
350  
351  routetest_SOURCES = routetest.cxx
352  
353  routetest_LDADD = \
354 -       $(top_builddir)/simgear/route/libsgroute.a \
355 -       $(top_builddir)/simgear/math/libsgmath.a \
356 -       $(top_builddir)/simgear/debug/libsgdebug.a \
357 +       $(top_builddir)/simgear/route/libsgroute.la \
358 +       $(top_builddir)/simgear/math/libsgmath.la \
359 +       $(top_builddir)/simgear/debug/libsgdebug.la \
360 +       $(top_builddir)/simgear/misc/libsgmisc.la \
361 +       -lz
362         $(base_LIBS)
363 diff -urN aaa/SimGear-0.3.4/simgear/scene/material/Makefile.am SimGear-0.3.4/simgear/scene/material/Makefile.am
364 --- aaa/SimGear-0.3.4/simgear/scene/material/Makefile.am        2003-05-16 15:21:20.000000000 +0200
365 +++ SimGear-0.3.4/simgear/scene/material/Makefile.am    2003-11-10 22:18:37.000000000 +0100
366 @@ -1,6 +1,6 @@
367  includedir = @includedir@/scene/material
368  
369 -lib_LIBRARIES = libsgmaterial.a
370 +lib_LTLIBRARIES = libsgmaterial.la
371  
372  noinst_HEADERS =
373  
374 @@ -9,7 +9,7 @@
375         matlib.hxx \
376         matmodel.hxx
377  
378 -libsgmaterial_a_SOURCES = \
379 +libsgmaterial_la_SOURCES = \
380         mat.cxx \
381         matlib.cxx \
382         matmodel.cxx
383 diff -urN aaa/SimGear-0.3.4/simgear/scene/model/Makefile.am SimGear-0.3.4/simgear/scene/model/Makefile.am
384 --- aaa/SimGear-0.3.4/simgear/scene/model/Makefile.am   2003-05-16 15:21:20.000000000 +0200
385 +++ SimGear-0.3.4/simgear/scene/model/Makefile.am       2003-11-10 22:18:37.000000000 +0100
386 @@ -1,6 +1,6 @@
387  includedir = @includedir@/scene/model
388  
389 -lib_LIBRARIES = libsgmodel.a
390 +lib_LTLIBRARIES = libsgmodel.la
391  
392  noinst_HEADERS =
393  
394 @@ -11,7 +11,7 @@
395         modellib.hxx \
396         placement.hxx
397  
398 -libsgmodel_a_SOURCES = \
399 +libsgmodel_la_SOURCES = \
400         animation.cxx \
401         location.cxx \
402         model.cxx \
403 diff -urN aaa/SimGear-0.3.4/simgear/scene/sky/clouds3d/Makefile.am SimGear-0.3.4/simgear/scene/sky/clouds3d/Makefile.am
404 --- aaa/SimGear-0.3.4/simgear/scene/sky/clouds3d/Makefile.am    2003-08-11 23:17:02.000000000 +0200
405 +++ SimGear-0.3.4/simgear/scene/sky/clouds3d/Makefile.am        2003-11-10 22:51:38.000000000 +0100
406 @@ -9,13 +9,13 @@
407    EXTGL_SOURCE = 
408  endif
409  
410 -lib_LIBRARIES = libsgclouds3d.a
411 +lib_LTLIBRARIES = libsgclouds3d.la
412  
413  include_HEADERS = \
414         SkySceneLoader.hpp \
415         SkyUtil.hpp
416  
417 -libsgclouds3d_a_SOURCES = \
418 +libsgclouds3d_la_SOURCES = \
419          $(EXTGL_SOURCE) \
420         vec3fv.cpp vec3fv.hpp vec3f.hpp vec4f.hpp vec2f.hpp \
421         mat16fv.cpp mat16fv.hpp \
422 diff -urN aaa/SimGear-0.3.4/simgear/scene/sky/Makefile.am SimGear-0.3.4/simgear/scene/sky/Makefile.am
423 --- aaa/SimGear-0.3.4/simgear/scene/sky/Makefile.am     2003-08-04 19:45:34.000000000 +0200
424 +++ SimGear-0.3.4/simgear/scene/sky/Makefile.am 2003-11-10 22:18:37.000000000 +0100
425 @@ -2,7 +2,7 @@
426  
427  SUBDIRS = clouds3d
428  
429 -lib_LIBRARIES = libsgsky.a
430 +lib_LTLIBRARIES = libsgsky.la
431  
432  include_HEADERS = \
433         cloud.hxx \
434 @@ -13,7 +13,7 @@
435         sphere.hxx \
436         stars.hxx
437  
438 -libsgsky_a_SOURCES = \
439 +libsgsky_la_SOURCES = \
440         cloud.cxx \
441         dome.cxx \
442         moon.cxx \
443 diff -urN aaa/SimGear-0.3.4/simgear/scene/tgdb/Makefile.am SimGear-0.3.4/simgear/scene/tgdb/Makefile.am
444 --- aaa/SimGear-0.3.4/simgear/scene/tgdb/Makefile.am    2003-05-29 17:09:01.000000000 +0200
445 +++ SimGear-0.3.4/simgear/scene/tgdb/Makefile.am        2003-11-10 22:18:37.000000000 +0100
446 @@ -1,6 +1,6 @@
447  includedir = @includedir@/scene/tgdb
448  
449 -lib_LIBRARIES = libsgtgdb.a
450 +lib_LTLIBRARIES = libsgtgdb.la
451  
452  noinst_HEADERS =
453  
454 @@ -11,7 +11,7 @@
455         pt_lights.hxx \
456         userdata.hxx
457  
458 -libsgtgdb_a_SOURCES = \
459 +libsgtgdb_la_SOURCES = \
460         apt_signs.cxx \
461         leaf.cxx \
462         obj.cxx \
463 diff -urN aaa/SimGear-0.3.4/simgear/screen/Makefile.am SimGear-0.3.4/simgear/screen/Makefile.am
464 --- aaa/SimGear-0.3.4/simgear/screen/Makefile.am        2003-08-29 19:36:30.000000000 +0200
465 +++ SimGear-0.3.4/simgear/screen/Makefile.am    2003-11-10 22:18:37.000000000 +0100
466 @@ -1,6 +1,6 @@
467  includedir = @includedir@/screen
468  
469 -lib_LIBRARIES = libsgscreen.a
470 +lib_LTLIBRARIES = libsgscreen.la
471  
472  EXTRA_DIST = jpgfactory.cxx jpgfactory.hxx
473  
474 @@ -22,7 +22,7 @@
475         extensions.hxx \
476         tr.h
477  
478 -libsgscreen_a_SOURCES = \
479 +libsgscreen_la_SOURCES = \
480         texture.cxx \
481         GLBitmaps.cxx GLBitmaps.h \
482         $(IMAGE_SERVER_SRCS) \
483 diff -urN aaa/SimGear-0.3.4/simgear/serial/Makefile.am SimGear-0.3.4/simgear/serial/Makefile.am
484 --- aaa/SimGear-0.3.4/simgear/serial/Makefile.am        2002-09-07 04:58:19.000000000 +0200
485 +++ SimGear-0.3.4/simgear/serial/Makefile.am    2003-11-10 22:18:38.000000000 +0100
486 @@ -1,17 +1,17 @@
487  includedir = @includedir@/serial
488  
489 -lib_LIBRARIES = libsgserial.a
490 +lib_LTLIBRARIES = libsgserial.la
491  
492  include_HEADERS = serial.hxx
493  
494 -libsgserial_a_SOURCES = serial.cxx
495 +libsgserial_la_SOURCES = serial.cxx
496  
497  noinst_PROGRAMS = testserial
498  
499  testserial_SOURCES = testserial.cxx
500  
501  testserial_LDADD = \
502 -       $(top_builddir)/simgear/serial/libsgserial.a \
503 -       $(top_builddir)/simgear/debug/libsgdebug.a
504 +       $(top_builddir)/simgear/serial/libsgserial.la \
505 +       $(top_builddir)/simgear/debug/libsgdebug.la
506  
507  INCLUDES = -I$(top_srcdir)
508 diff -urN aaa/SimGear-0.3.4/simgear/sound/Makefile.am SimGear-0.3.4/simgear/sound/Makefile.am
509 --- aaa/SimGear-0.3.4/simgear/sound/Makefile.am 2003-05-09 19:29:07.000000000 +0200
510 +++ SimGear-0.3.4/simgear/sound/Makefile.am     2003-11-10 22:18:38.000000000 +0100
511 @@ -1,11 +1,11 @@
512  includedir = @includedir@/sound
513  
514 -lib_LIBRARIES = libsgsound.a
515 +lib_LTLIBRARIES = libsgsound.la
516  
517  noinst_HEADERS =
518  
519  include_HEADERS = sound.hxx soundmgr.hxx
520  
521 -libsgsound_a_SOURCES = sound.cxx soundmgr.cxx
522 +libsgsound_la_SOURCES = sound.cxx soundmgr.cxx
523  
524  INCLUDES = -I$(top_srcdir)
525 diff -urN aaa/SimGear-0.3.4/simgear/structure/Makefile.am SimGear-0.3.4/simgear/structure/Makefile.am
526 --- aaa/SimGear-0.3.4/simgear/structure/Makefile.am     2003-09-24 19:19:23.000000000 +0200
527 +++ SimGear-0.3.4/simgear/structure/Makefile.am 2003-11-10 22:51:14.000000000 +0100
528 @@ -1,6 +1,6 @@
529  includedir = @includedir@/structure
530  
531 -lib_LIBRARIES = libsgstructure.a
532 +lib_LTLIBRARIES = libsgstructure.la
533  
534  include_HEADERS = \
535         callback.hxx \
536 @@ -9,7 +9,7 @@
537         event_mgr.hxx \
538         subsystem_mgr.hxx
539  
540 -libsgstructure_a_SOURCES = \
541 +libsgstructure_la_SOURCES = \
542         commands.cxx \
543         exception.cxx \
544         event_mgr.cxx\
545 diff -urN aaa/SimGear-0.3.4/simgear/threads/Makefile.am SimGear-0.3.4/simgear/threads/Makefile.am
546 --- aaa/SimGear-0.3.4/simgear/threads/Makefile.am       2002-09-07 04:58:20.000000000 +0200
547 +++ SimGear-0.3.4/simgear/threads/Makefile.am   2003-11-10 22:18:38.000000000 +0100
548 @@ -1,13 +1,13 @@
549  includedir = @includedir@/threads
550  
551 -lib_LIBRARIES = libsgthreads.a
552 +lib_LTLIBRARIES = libsgthreads.la
553  
554  include_HEADERS = \
555         SGGuard.hxx \
556         SGQueue.hxx \
557         SGThread.hxx
558  
559 -libsgthreads_a_SOURCES = \
560 +libsgthreads_la_SOURCES = \
561         SGThread.cxx
562  
563  INCLUDES = -I$(top_srcdir)
564 diff -urN aaa/SimGear-0.3.4/simgear/timing/Makefile.am SimGear-0.3.4/simgear/timing/Makefile.am
565 --- aaa/SimGear-0.3.4/simgear/timing/Makefile.am        2002-09-07 04:58:19.000000000 +0200
566 +++ SimGear-0.3.4/simgear/timing/Makefile.am    2003-11-10 22:18:38.000000000 +0100
567 @@ -1,6 +1,6 @@
568  includedir = @includedir@/timing
569  
570 -lib_LIBRARIES = libsgtiming.a
571 +lib_LTLIBRARIES = libsgtiming.la
572  
573  include_HEADERS = \
574         geocoord.h \
575 @@ -9,7 +9,7 @@
576         timestamp.hxx \
577         timezone.h
578  
579 -libsgtiming_a_SOURCES = \
580 +libsgtiming_la_SOURCES = \
581         geocoord.cxx \
582         lowleveltime.cxx \
583         sg_time.cxx \
584 diff -urN aaa/SimGear-0.3.4/simgear/xgl/Makefile.am SimGear-0.3.4/simgear/xgl/Makefile.am
585 --- aaa/SimGear-0.3.4/simgear/xgl/Makefile.am   2002-09-07 04:58:19.000000000 +0200
586 +++ SimGear-0.3.4/simgear/xgl/Makefile.am       2003-11-10 22:18:38.000000000 +0100
587 @@ -1,9 +1,9 @@
588  includedir = @includedir@/xgl
589  
590 -lib_LIBRARIES = libsgxgl.a
591 +lib_LTLIBRARIES = libsgxgl.la
592  
593  include_HEADERS = xgl.h
594  
595 -libsgxgl_a_SOURCES = xgl.c xglUtils.c
596 +libsgxgl_la_SOURCES = xgl.c xglUtils.c
597  
598  INCLUDES = -I$(top_srcdir)
599 diff -urN aaa/SimGear-0.3.4/simgear/xml/Makefile.am SimGear-0.3.4/simgear/xml/Makefile.am
600 --- aaa/SimGear-0.3.4/simgear/xml/Makefile.am   2003-08-29 19:36:30.000000000 +0200
601 +++ SimGear-0.3.4/simgear/xml/Makefile.am       2003-11-10 22:29:29.000000000 +0100
602 @@ -1,6 +1,6 @@
603  includedir = @includedir@/xml
604  
605 -lib_LIBRARIES = libsgxml.a
606 +lib_LTLIBRARIES = libsgxml.la
607  
608  include_HEADERS = \
609         easyxml.hxx
610 @@ -8,7 +8,7 @@
611  noinst_HEADERS = \
612         xmltok_impl.c xmltok_ns.c
613  
614 -libsgxml_a_SOURCES = \
615 +libsgxml_la_SOURCES = \
616         asciitab.h \
617         easyxml.cxx \
618         hashtable.h hashtable.c \
This page took 0.132239 seconds and 2 git commands to generate.