Overview
| Comment: | libconfig 0.2.2 Fixed missing install commands for new man pages (oops) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk | 0.2.2 |
| Files: | files | file ages | folders |
| SHA1: |
b3554bc362a286839e14cdbffdab955a |
| User & Date: | rkeene on 2006-12-17 19:57:12.000 |
| Other Links: | manifest | tags |
Context
|
2007-01-15
| ||
| 23:45 | libconfig 0.2.3 Patched Makefile's install target to handle destinations with spaces in the name correctly. Patch by T. Hayfield of GMAIL.COM check-in: dbd6b11bf6 user: rkeene tags: 0.2.3, trunk | |
|
2006-12-17
| ||
| 19:57 | libconfig 0.2.2 Fixed missing install commands for new man pages (oops) check-in: b3554bc362 user: rkeene tags: 0.2.2, trunk | |
| 19:40 | libconfig 0.2.1 Updated typos in man pages, made "SEE ALSO" more consistent Added manpage formatting for new man pages, added lc_handle_type man page check-in: 8e0181d70f user: rkeene tags: 0.2.1, trunk | |
Changes
Modified Makefile.in
from [53b907f18c]
to [f7790d052b].
| ︙ | |||
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | + + | -$(INSTALL) -m 644 libconfig.$(SHOBJEXT).def $(libdir)/libconfig.$(SHOBJEXT).def -$(INSTALL) -m 644 libconfig.$(SHOBJEXT).a $(libdir)/libconfig.$(SHOBJEXT).a $(INSTALL) -m 755 libconfig.$(SHOBJEXT) $(libdir)/libconfig.$(SHOBJEXT).$(PKGVERS) $(INSTALL) -m 644 libconfig.$(AREXT) $(libdir)/libconfig.$(AREXT) $(INSTALL) -m 644 lc_register_callback.3 $(mandir)/man3/lc_register_callback.3 $(INSTALL) -m 644 lc_register_var.3 $(mandir)/man3/lc_register_var.3 $(INSTALL) -m 644 lc_process_file.3 $(mandir)/man3/lc_process_file.3 $(INSTALL) -m 644 lc_handle_type.3 $(mandir)/man3/lc_handle_type.3 $(INSTALL) -m 644 lc_geterrstr.3 $(mandir)/man3/lc_geterrstr.3 $(INSTALL) -m 644 lc_seterrstr.3 $(mandir)/man3/lc_seterrstr.3 $(INSTALL) -m 644 lc_geterrno.3 $(mandir)/man3/lc_geterrno.3 $(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) ) |
Modified configure
from [b0751438d7]
to [d360572a6d].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | #! /bin/sh # From configure.ac Revision . # Guess values for system-dependent variables and create Makefiles. |
| ︙ | |||
264 265 266 267 268 269 270 | 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 | - - + + |
# This variable seems obsolete. It should probably be removed, and
# only ac_max_sed_lines should be used.
: ${ac_max_here_lines=38}
# Identity of this package.
PACKAGE_NAME='libconfig'
PACKAGE_TARNAME='libconfig'
|
| ︙ | |||
774 775 776 777 778 779 780 | 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 | - + | # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF |
| ︙ | |||
835 836 837 838 839 840 841 | 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 | - + | --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in |
| ︙ | |||
956 957 958 959 960 961 962 | 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 | - + - + |
cd $ac_popdir
done
fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
|
| ︙ | |||
17450 17451 17452 17453 17454 17455 17456 | 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 | - + | echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX } >&5 cat >&5 <<_CSEOF |
| ︙ | |||
17510 17511 17512 17513 17514 17515 17516 | 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 | - + | $config_headers Report bugs to <bug-autoconf@gnu.org>." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ |
| ︙ |
Modified configure.ac
from [bca08ee458]
to [488a6db546].
1 | 1 2 3 4 5 6 7 8 9 | - + | AC_REVISION($Revision $) |
| ︙ |