Overview
| Comment: | Fixed typo where getpwuid was checked for twice. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
cb1b3fadc8864b20a49d9baacabd59e5 |
| User & Date: | rkeene on 2004-12-20 00:49:44.000 |
| Other Links: | manifest | tags |
Context
|
2004-12-25
| ||
| 19:45 | Updated Mac OS X support (7.7.0 with gcc 3.3 now works) Added a --enable-small that disables a few options to make a smaller library. Updated win32 build to make an i386 object explicitly (this may have been the default) libconfig 0.1.15 check-in: 0febd33a2d user: rkeene tags: 0.1.15, trunk | |
|
2004-12-20
| ||
| 00:49 | Fixed typo where getpwuid was checked for twice. check-in: cb1b3fadc8 user: rkeene tags: trunk | |
| 00:48 | Updated win32 support slightly. check-in: c061ce704b user: rkeene tags: trunk | |
Changes
Modified configure
from [748c63413f]
to [6843199f78].
| ︙ | ︙ | |||
16867 16868 16869 16870 16871 16872 16873 |
SHLIBOBJS=""
for obj in $LIBOBJS; do
SHLIBOBJS="$SHLIBOBJS `echo $obj | sed 's/\.o$/_shr.o/g'`"
done
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 |
SHLIBOBJS=""
for obj in $LIBOBJS; do
SHLIBOBJS="$SHLIBOBJS `echo $obj | sed 's/\.o$/_shr.o/g'`"
done
ac_config_files="$ac_config_files Makefile lc_geterrno.3 lc_process.3 lc_register_var.3 lc_geterrstr.3 lc_register_callback.3 lc_cleanup.3 lc_process_file.3 libconfig.3"
cat >confcache <<\_ACEOF
# This file is a shell script that caches the results of configure
# tests run on this system so they can be shared between configure
# scripts and configure runs, see configure's option --config-cache.
# It is not useful on other systems. If it contains results you don't
|
| ︙ | ︙ |
Modified configure.ac
from [4331009ac9]
to [bc16092498].
| ︙ | ︙ | |||
38 39 40 41 42 43 44 | AC_REPLACE_FUNCS(strsep strtoll getuid) AC_CHECK_FUNCS(getpwuid) dnl This MUST be last. DC_SYNC_SHLIBOBJS | < < | 38 39 40 41 42 43 44 45 | AC_REPLACE_FUNCS(strsep strtoll getuid) AC_CHECK_FUNCS(getpwuid) dnl This MUST be last. DC_SYNC_SHLIBOBJS AC_OUTPUT(Makefile lc_geterrno.3 lc_process.3 lc_register_var.3 lc_geterrstr.3 lc_register_callback.3 lc_cleanup.3 lc_process_file.3 libconfig.3) |