Overview
Comment: | Updated manual pages. The "extraconfig" files are now processed before the /etc ones. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
304f4b8d4a608faa93d96e2bc6536390 |
User & Date: | rkeene on 2004-10-29 16:33:50 |
Other Links: | manifest | tags |
Context
2004-10-29
| ||
16:40 | Updated man pages. check-in: 2dfd527012 user: rkeene tags: trunk | |
16:33 | Updated manual pages. The "extraconfig" files are now processed before the /etc ones. check-in: 304f4b8d4a user: rkeene tags: trunk | |
16:17 | Updated man pages. check-in: 6861d15aac user: rkeene tags: trunk | |
Changes
Modified Docs/USAGE from [1da5b3b06f] to [8e2c3e2916].
| 1 2 | - + + |
|
Modified configure from [8d41d5a2ce] to [80531d32c6].
︙ | |||
16319 16320 16321 16322 16323 16324 16325 | 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 | - + | SHLIBOBJS="$SHLIBOBJS `echo $obj | sed 's/\.o$/_shr.o/g'`" done echo "$as_me:$LINENO: result: $SHOBJLDFLAGS $SHOBJFLAGS" >&5 echo "${ECHO_T}$SHOBJLDFLAGS $SHOBJFLAGS" >&6 |
︙ | |||
16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 | 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 | + | # Handling of arguments. "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; "lc_geterrno.3" ) CONFIG_FILES="$CONFIG_FILES lc_geterrno.3" ;; "lc_process.3" ) CONFIG_FILES="$CONFIG_FILES lc_process.3" ;; "lc_register_var.3" ) CONFIG_FILES="$CONFIG_FILES lc_register_var.3" ;; "lc_geterrstr.3" ) CONFIG_FILES="$CONFIG_FILES lc_geterrstr.3" ;; "lc_register_callback.3" ) CONFIG_FILES="$CONFIG_FILES lc_register_callback.3" ;; "libconfig.3" ) CONFIG_FILES="$CONFIG_FILES libconfig.3" ;; "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac done |
︙ |
Modified configure.in from [f1ad2924cf] to [10d7c6dbc1].
︙ | |||
29 30 31 32 33 34 35 | 29 30 31 32 33 34 35 36 | - + | dnl Checks for Win32 specific things. DC_DO_WIN32 dnl This must be last. DC_GET_SHOBJFLAGS |
Added libconfig.3.in version [7c04184349].
|
Modified libconfig.c from [ce1c286cb1] to [b6b91c93e6].
︙ | |||
741 742 743 744 745 746 747 | 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 | + - - - - - - - - - - - - + + + + + + + + + + + + + + - | struct passwd *pwinfo = NULL; char configfiles[3][13][512] = {{{0}}}; char *configfile = NULL; char *homedir = NULL; int configsetidx = 0, configidx = 0; int chkretval = 0, retval = 0; if (extraconfig != NULL) { |
︙ |