Differences From Artifact [1a96ee97b6]:
- File conf_apache.c — part of check-in [2eca7c583b] at 2004-10-29 03:01:26 on branch trunk — Updated to remove PRINTERR and PRINTERR_D (Mac OS X's c preprocessor doesn't handle variadic macros) Updated strtoull.c to work. Added config.guess/config.sub (needed for determining SHLIBEXT) A few misc changes. libconfig 0.0.7 (user: rkeene, size: 8247) [annotate] [blame] [check-ins using]
To Artifact [cd77d73d2e]:
- File conf_apache.c — part of check-in [cff8496e42] at 2004-11-24 23:13:23 on branch trunk — Added an optional dependency to libopennet. If libopennet is used fopen_net is used instead of fopen. Made lc_process_file() a publicly callable function. Added a (blank!) man page for it. Made lc_cleanup() a publicly callable function, and removed calls to it from lc_process(). Added a (blank!) man page for it. (user: rkeene, size: 8250) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
98 99 100 101 102 103 104 | } if (configfile == NULL) { lc_errno = LC_ERR_INVDATA; return(-1); } | | | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | } if (configfile == NULL) { lc_errno = LC_ERR_INVDATA; return(-1); } configfp = lc_fopen(configfile, "r"); if (configfp == NULL) { lc_errno = LC_ERR_CANTOPEN; return(-1); } while (1) { |
︙ | ︙ |