Overview
| Comment: | Updated to use individual m4 files from upstream repo, and many other cleanups |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5e72879d0da2536258c52d3e099c77c3 |
| User & Date: | rkeene on 2014-11-24 18:21:05.534 |
| Other Links: | manifest | tags |
Context
|
2014-11-24
| ||
| 18:22 | Removed extraneous check check-in: f92dcf40fe user: rkeene tags: trunk | |
| 18:21 | Updated to use individual m4 files from upstream repo, and many other cleanups check-in: 5e72879d0d user: rkeene tags: trunk | |
| 18:11 | Updated to not randomly have libconfig.h passed through the C preprocessor check-in: 269106f456 user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob
from [168a13de83]
to [1dd559b6be].
1 | 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 | - - - - - - + + + + - - + - + - - - - - - - - - - - - - - - - - - | .*.swp |
Modified Makefile.in
from [8809f1c079]
to [804405b696].
| ︙ | |||
51 52 53 54 55 56 57 | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | - - - - - - | %.o: $(srcdir)/%.c $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ "$(filter %.c, $^)" test-lc$(EXEEXT): $(LIBS) $(srcdir)/test-lc.c $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $(filter %.c, $^) $(LDFLAGS) -Wl,-R -Wl,. -L. -lconfig |
| ︙ | |||
80 81 82 83 84 85 86 87 | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | + + + + + + + + + | $(INSTALL) -m 644 lc_process.3 "$(mandir)/man3/lc_process.3" $(INSTALL) -m 644 lc_cleanup.3 "$(mandir)/man3/lc_cleanup.3" $(INSTALL) -m 644 libconfig.3 "$(mandir)/man3/libconfig.3" $(INSTALL) -m 644 libconfig.h "$(includedir)/libconfig.h" -( cd "$(libdir)" && rm -f libconfig.$(SHOBJEXT).$(PKGVERSMAJOR) && $(LN_S) libconfig.$(SHOBJEXT).$(PKGVERS) libconfig.$(SHOBJEXT).$(PKGVERSMAJOR) ) -( cd "$(libdir)" && rm -f libconfig.$(SHOBJEXT) && $(LN_S) libconfig.$(SHOBJEXT).$(PKGVERS) libconfig.$(SHOBJEXT) ) clean: rm -f *.o $(BINS) $(LIBS) *~ test-lc$(EXEEXT) *.dll.a *.dll.def *.dll distclean: clean rm -f Makefile config.h config.status config.log lc_geterrno.3 lc_process.3 lc_cleanup.3 lc_process_file.3 lc_register_var.3 lc_geterrstr.3 lc_register_callback.3 libconfig.3 mrproper: distclean rm -f aclocal.m4 config.guess config.sub install-sh configure .PHONY: all clean distclean install |
Renamed and modified
aclocal.m4
[12931a90b0]
to aclocal/libconfig.m4
[d46c22e181].
| ︙ | |||
29 30 31 32 33 34 35 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | fi FOUND=1 break fi done ]) |
| ︙ |
Added aclocal/optarg.m4 version [acf41c4916].
Added aclocal/shobj.m4 version [455eb6a4ce].
Added aclocal/versionscript.m4 version [68146d5f5a].
Modified build/prep.sh
from [3f4d67e154]
to [be7bb3d1c2].
1 2 | 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 | + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + |
#! /bin/sh
# Download latest copy of autoconf macros
(
mkdir aclocal >/dev/null 2>/dev/null
cd aclocal || exit 1
for file in optarg.m4 shobj.m4 versionscript.m4; do
rm -f "${file}"
wget -O "${file}.new" "http://rkeene.org/devel/autoconf/${file}" || continue
mv "${file}.new" "${file}"
done
)
for file in config.guess config.sub install-sh; do
rm -f "${file}"
done
aclocal -I aclocal
|
Deleted config.guess version [41d5d5ee2e].
Deleted config.sub version [79c8d62205].
Deleted install-sh version [9d4de14ab9].