]> git.pld-linux.org Git - packages/SimGear.git/blame - SimGear-shared.patch
- /sbin/ldconfig must be runed in %post, %postun in main package (not in devel),
[packages/SimGear.git] / SimGear-shared.patch
CommitLineData
8a000a2b
SZ
1diff -Naur SimGear-0.0.14/configure.in SimGear-0.0.14-p/configure.in
2--- SimGear-0.0.14/configure.in Wed Dec 13 20:18:29 2000
3+++ SimGear-0.0.14-p/configure.in Sat Apr 21 23:46:12 2001
4@@ -29,7 +29,7 @@
5 AC_PROG_MAKE_SET
6 AC_PROG_CC
7 AC_PROG_CXX
8-AC_PROG_RANLIB
9+AM_PROG_LIBTOOL
10 AC_PROG_INSTALL
11 AC_PROG_LN_S
12
13diff -Naur SimGear-0.0.14/simgear/bucket/Makefile.am SimGear-0.0.14-p/simgear/bucket/Makefile.am
14--- SimGear-0.0.14/simgear/bucket/Makefile.am Wed Sep 20 23:20:17 2000
15+++ SimGear-0.0.14-p/simgear/bucket/Makefile.am Sat Apr 21 23:46:12 2001
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
29diff -Naur SimGear-0.0.14/simgear/debug/Makefile.am SimGear-0.0.14-p/simgear/debug/Makefile.am
30--- SimGear-0.0.14/simgear/debug/Makefile.am Wed Sep 20 23:11:22 2000
31+++ SimGear-0.0.14-p/simgear/debug/Makefile.am Sat Apr 21 23:46:12 2001
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)
45diff -Naur SimGear-0.0.14/simgear/ephemeris/Makefile.am SimGear-0.0.14-p/simgear/ephemeris/Makefile.am
46--- SimGear-0.0.14/simgear/ephemeris/Makefile.am Tue Oct 10 19:16:21 2000
47+++ SimGear-0.0.14-p/simgear/ephemeris/Makefile.am Sat Apr 21 23:46:12 2001
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 \
65diff -Naur SimGear-0.0.14/simgear/io/Makefile.am SimGear-0.0.14-p/simgear/io/Makefile.am
66--- SimGear-0.0.14/simgear/io/Makefile.am Mon Oct 2 23:43:01 2000
67+++ SimGear-0.0.14-p/simgear/io/Makefile.am Sat Apr 21 23:47:02 2001
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@@ -8,7 +8,7 @@
77 sg_serial.hxx \
78 sg_socket.hxx
79
80-libsgio_a_SOURCES = \
81+libsgio_la_SOURCES = \
82 iochannel.cxx \
83 sg_file.cxx \
84 sg_serial.cxx \
85@@ -21,5 +21,6 @@
86 socktest_SOURCES = socktest.cxx
87
88 socktest_LDADD = \
89- $(top_builddir)/simgear/io/libsgio.a \
90- $(top_builddir)/simgear/debug/libsgdebug.a
91\ No newline at end of file
92+ $(top_builddir)/simgear/io/libsgio.la \
93+ $(top_builddir)/simgear/debug/libsgdebug.la \
94+ $(top_builddir)/simgear/serial/libsgserial.la
95diff -Naur SimGear-0.0.14/simgear/magvar/Makefile.am SimGear-0.0.14-p/simgear/magvar/Makefile.am
96--- SimGear-0.0.14/simgear/magvar/Makefile.am Wed Sep 20 23:20:23 2000
97+++ SimGear-0.0.14-p/simgear/magvar/Makefile.am Sat Apr 21 23:47:06 2001
98@@ -1,10 +1,10 @@
99 includedir = @includedir@/magvar
100
101-lib_LIBRARIES = libsgmagvar.a
102+lib_LTLIBRARIES = libsgmagvar.la
103
104 include_HEADERS = magvar.hxx
105
106-libsgmagvar_a_SOURCES = \
107+libsgmagvar_la_SOURCES = \
108 coremag.hxx coremag.cxx \
109 magvar.cxx
110
111@@ -12,6 +12,6 @@
112
113 testmagvar_SOURCES = testmagvar.cxx
114
115-testmagvar_LDADD = $(top_builddir)/simgear/magvar/libsgmagvar.a
116+testmagvar_LDADD = $(top_builddir)/simgear/magvar/libsgmagvar.la
117
118 INCLUDES += -I$(top_srcdir)
119diff -Naur SimGear-0.0.14/simgear/math/Makefile.am SimGear-0.0.14-p/simgear/math/Makefile.am
120--- SimGear-0.0.14/simgear/math/Makefile.am Mon Dec 4 16:04:49 2000
121+++ SimGear-0.0.14-p/simgear/math/Makefile.am Sat Apr 21 23:46:12 2001
122@@ -6,7 +6,7 @@
123 ZLIB_INCL = -I$(top_srcdir)/src/zlib
124 endif
125
126-lib_LIBRARIES = libsgmath.a
127+lib_LTLIBRARIES = libsgmath.la
128
129 include_HEADERS = \
130 fg_memory.h \
131@@ -22,7 +22,7 @@
132
133 EXTRA_DIST = linintp2.h linintp2.inl sphrintp.h sphrintp.inl
134
135-libsgmath_a_SOURCES = \
136+libsgmath_la_SOURCES = \
137 interpolater.cxx \
138 leastsqs.cxx \
139 polar3d.cxx \
140diff -Naur SimGear-0.0.14/simgear/metar/Makefile.am SimGear-0.0.14-p/simgear/metar/Makefile.am
141--- SimGear-0.0.14/simgear/metar/Makefile.am Wed Sep 20 23:12:22 2000
142+++ SimGear-0.0.14-p/simgear/metar/Makefile.am Sat Apr 21 23:46:12 2001
143@@ -1,8 +1,8 @@
144 includedir = @includedir@/metar
145
146-lib_LIBRARIES = libsgmetar.a
147+lib_LTLIBRARIES = libsgmetar.la
148
149-libsgmetar_a_SOURCES = \
150+libsgmetar_la_SOURCES = \
151 Antoi.cpp Charcmp.cpp Dcdmetar.cpp Dcdmtrmk.cpp Drvmetar.c \
152 Fracpart.cpp Local.h Metar.h \
153 MetarReport.cpp MetarReport.h \
154diff -Naur SimGear-0.0.14/simgear/misc/Makefile.am SimGear-0.0.14-p/simgear/misc/Makefile.am
155--- SimGear-0.0.14/simgear/misc/Makefile.am Wed Sep 20 23:12:30 2000
156+++ SimGear-0.0.14-p/simgear/misc/Makefile.am Sat Apr 21 23:46:12 2001
157@@ -6,7 +6,7 @@
158 ZLIB_INCL = -I$(top_srcdir)/src/zlib
159 endif
160
161-lib_LIBRARIES = libsgmisc.a
162+lib_LTLIBRARIES = libsgmisc.la
163
164 include_HEADERS = \
165 fgpath.hxx \
166@@ -17,7 +17,7 @@
167 texcoord.hxx \
168 zfstream.hxx
169
170-libsgmisc_a_SOURCES = \
171+libsgmisc_la_SOURCES = \
172 fgpath.cxx \
173 fgstream.cxx \
174 props.cxx \
175diff -Naur SimGear-0.0.14/simgear/route/Makefile.am SimGear-0.0.14-p/simgear/route/Makefile.am
176--- SimGear-0.0.14/simgear/route/Makefile.am Mon Oct 23 20:05:24 2000
177+++ SimGear-0.0.14-p/simgear/route/Makefile.am Sat Apr 21 23:47:28 2001
178@@ -1,10 +1,10 @@
179 includedir = @includedir@/route
180
181-lib_LIBRARIES = libsgroute.a
182+lib_LTLIBRARIES = libsgroute.la
183
184 include_HEADERS = route.hxx waypoint.hxx
185
186-libsgroute_a_SOURCES = \
187+libsgroute_la_SOURCES = \
188 route.cxx \
189 waypoint.cxx
190
191@@ -15,13 +15,17 @@
192 waytest_SOURCES = waytest.cxx
193
194 waytest_LDADD = \
195- $(top_builddir)/simgear/route/libsgroute.a \
196- $(top_builddir)/simgear/math/libsgmath.a \
197- $(top_builddir)/simgear/debug/libsgdebug.a
198+ $(top_builddir)/simgear/route/libsgroute.la \
199+ $(top_builddir)/simgear/math/libsgmath.la \
200+ $(top_builddir)/simgear/debug/libsgdebug.la \
201+ $(top_builddir)/simgear/misc/libsgmisc.la -lz \
202+ $(top_builddir)/simgear/xml/libsgxml.la
203
204 routetest_SOURCES = routetest.cxx
205
206 routetest_LDADD = \
207- $(top_builddir)/simgear/route/libsgroute.a \
208- $(top_builddir)/simgear/math/libsgmath.a \
209- $(top_builddir)/simgear/debug/libsgdebug.a
210\ No newline at end of file
211+ $(top_builddir)/simgear/route/libsgroute.la \
212+ $(top_builddir)/simgear/math/libsgmath.la \
213+ $(top_builddir)/simgear/debug/libsgdebug.la \
214+ $(top_builddir)/simgear/misc/libsgmisc.la -lz \
215+ $(top_builddir)/simgear/xml/libsgxml.la
216diff -Naur SimGear-0.0.14/simgear/screen/Makefile.am SimGear-0.0.14-p/simgear/screen/Makefile.am
217--- SimGear-0.0.14/simgear/screen/Makefile.am Wed Sep 20 23:12:39 2000
218+++ SimGear-0.0.14-p/simgear/screen/Makefile.am Sat Apr 21 23:46:12 2001
219@@ -1,10 +1,10 @@
220 includedir = @includedir@/screen
221
222-lib_LIBRARIES = libsgscreen.a
223+lib_LTLIBRARIES = libsgscreen.la
224
225 include_HEADERS = screen-dump.hxx
226
227-libsgscreen_a_SOURCES = \
228+libsgscreen_la_SOURCES = \
229 GLBitmaps.cxx GLBitmaps.h \
230 screen-dump.cxx \
231 win32-printer.h
232diff -Naur SimGear-0.0.14/simgear/serial/Makefile.am SimGear-0.0.14-p/simgear/serial/Makefile.am
233--- SimGear-0.0.14/simgear/serial/Makefile.am Wed Sep 20 23:20:31 2000
234+++ SimGear-0.0.14-p/simgear/serial/Makefile.am Sat Apr 21 23:47:35 2001
235@@ -2,16 +2,16 @@
236
237 noinst_PROGRAMS = testserial
238
239-lib_LIBRARIES = libsgserial.a
240+lib_LTLIBRARIES = libsgserial.la
241
242 include_HEADERS = serial.hxx
243
244-libsgserial_a_SOURCES = serial.cxx
245+libsgserial_la_SOURCES = serial.cxx
246
247 testserial_SOURCES = testserial.cxx
248
249 testserial_LDADD = \
250- $(top_builddir)/simgear/serial/libsgserial.a \
251- $(top_builddir)/simgear/debug/libsgdebug.a
252+ $(top_builddir)/simgear/serial/libsgserial.la \
253+ $(top_builddir)/simgear/debug/libsgdebug.la
254
255 INCLUDES += -I$(top_srcdir)
256diff -Naur SimGear-0.0.14/simgear/sky/Makefile.am SimGear-0.0.14-p/simgear/sky/Makefile.am
257--- SimGear-0.0.14/simgear/sky/Makefile.am Wed Sep 20 23:12:56 2000
258+++ SimGear-0.0.14-p/simgear/sky/Makefile.am Sat Apr 21 23:46:12 2001
259@@ -1,6 +1,6 @@
260 includedir = @includedir@/sky
261
262-lib_LIBRARIES = libsgsky.a
263+lib_LTLIBRARIES = libsgsky.la
264
265 include_HEADERS = \
266 cloud.hxx \
267@@ -11,7 +11,7 @@
268 sphere.hxx \
269 stars.hxx
270
271-libsgsky_a_SOURCES = \
272+libsgsky_la_SOURCES = \
273 cloud.cxx \
274 dome.cxx \
275 moon.cxx \
276diff -Naur SimGear-0.0.14/simgear/timing/Makefile.am SimGear-0.0.14-p/simgear/timing/Makefile.am
277--- SimGear-0.0.14/simgear/timing/Makefile.am Thu Nov 30 18:10:16 2000
278+++ SimGear-0.0.14-p/simgear/timing/Makefile.am Sat Apr 21 23:46:12 2001
279@@ -1,6 +1,6 @@
280 includedir = @includedir@/timing
281
282-lib_LIBRARIES = libsgtiming.a
283+lib_LTLIBRARIES = libsgtiming.la
284
285 include_HEADERS = \
286 geocoord.h \
287@@ -9,7 +9,7 @@
288 timestamp.hxx \
289 timezone.h
290
291-libsgtiming_a_SOURCES = \
292+libsgtiming_la_SOURCES = \
293 geocoord.cxx \
294 lowleveltime.cxx \
295 sg_time.cxx \
296diff -Naur SimGear-0.0.14/simgear/xgl/Makefile.am SimGear-0.0.14-p/simgear/xgl/Makefile.am
297--- SimGear-0.0.14/simgear/xgl/Makefile.am Wed Sep 20 23:13:01 2000
298+++ SimGear-0.0.14-p/simgear/xgl/Makefile.am Sat Apr 21 23:46:12 2001
299@@ -1,9 +1,9 @@
300 includedir = @includedir@/xgl
301
302-lib_LIBRARIES = libsgxgl.a
303+lib_LTLIBRARIES = libsgxgl.la
304
305 include_HEADERS = xgl.h
306
307-libsgxgl_a_SOURCES = xgl.c xglUtils.c
308+libsgxgl_la_SOURCES = xgl.c xglUtils.c
309
310 INCLUDES += -I$(top_srcdir)
311diff -Naur SimGear-0.0.14/simgear/xml/Makefile.am SimGear-0.0.14-p/simgear/xml/Makefile.am
312--- SimGear-0.0.14/simgear/xml/Makefile.am Wed Sep 20 23:13:09 2000
313+++ SimGear-0.0.14-p/simgear/xml/Makefile.am Sat Apr 21 23:46:12 2001
314@@ -4,7 +4,7 @@
315 XLIB_INCL = -I$(top_srcdir)/src/zlib
316 endif
317
318-lib_LIBRARIES = libsgxml.a
319+lib_LTLIBRARIES = libsgxml.la
320
321 include_HEADERS = \
322 easyxml.hxx
323@@ -12,7 +12,7 @@
324 noinst_HEADERS = \
325 xmltok_impl.c xmltok_ns.c
326
327-libsgxml_a_SOURCES = \
328+libsgxml_la_SOURCES = \
329 asciitab.h \
330 easyxml.cxx \
331 hashtable.h hashtable.c \
332diff -Naur SimGear-0.0.14/simgear/zlib/Makefile.am SimGear-0.0.14-p/simgear/zlib/Makefile.am
333--- SimGear-0.0.14/simgear/zlib/Makefile.am Sat Feb 19 03:22:56 2000
334+++ SimGear-0.0.14-p/simgear/zlib/Makefile.am Sat Apr 21 23:46:12 2001
335@@ -3,11 +3,11 @@
336 EXTRA_DIST = ChangeLog INDEX Make_vms.com Makefile.riscos README \
337 algorithm.txt descrip.mms example.c maketree.c minigzip.c zlib.3
338
339-lib_LIBRARIES = libz.a
340+lib_LTLIBRARIES = libz.la
341
342 include_HEADERS = zlib.h zconf.h
343
344-libz_a_SOURCES = \
345+libz_la_SOURCES = \
346 adler32.c \
347 compress.c \
348 crc32.c \
349--- SimGear-0.0.14/simgear/Makefile.am Tue Sep 19 18:19:43 2000
350+++ SimGear-0.0.14-p/simgear/Makefile.am Sun Apr 22 00:16:15 2001
351@@ -28,17 +28,17 @@
352 bucket \
353 debug \
354 ephemeris \
355+ $(SERIAL_DIRS) \
356 io \
357 magvar \
358 math \
359 $(METAR_DIRS) \
360 misc \
361+ xml \
362 route \
363 screen \
364- $(SERIAL_DIRS) \
365 sky \
366 timing \
367 xgl \
368- xml \
369 $(ZLIB_DIRS)
370
This page took 0.11821 seconds and 4 git commands to generate.