Overview
Comment: | Win32 fixes. libconfig 0.1.8 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 0.1.8 |
Files: | files | file ages | folders |
SHA1: |
5baa5c16a6de462d5fd583eb2e82a52a |
User & Date: | rkeene on 2004-12-18 10:46:04 |
Other Links: | manifest | tags |
Context
2004-12-18
| ||
18:55 | More cygwin fixes. libconfig 0.1.12 check-in: c1e4573958 user: rkeene tags: 0.1.12, trunk | |
10:46 | Win32 fixes. libconfig 0.1.8 check-in: 5baa5c16a6 user: rkeene tags: 0.1.8, trunk | |
10:05 | Win32 support fixed. Added a new man page (lc_cleanup) check-in: 80d18a8d82 user: rkeene tags: trunk | |
Changes
Modified .cvsignore from [3ec037ded0] to [8a5f3028e8].
︙ | |||
10 11 12 13 14 15 16 | 10 11 12 13 14 15 16 17 18 19 20 21 22 | + + + + + + | .*.swp lc_geterrstr.3 lc_register_var.3 lc_register_callback.3 lc_process.3 lc_geterrno.3 libconfig.3 libconfig.dll.a test-lc.exe lc_process_file.3 lc_cleanup.3 libconfig.dll.def libconfig.dll |
Modified .fossil-settings/ignore-glob from [f46eab9da1] to [4fc97f7101].
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 | 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 33 34 35 36 37 38 39 40 41 42 43 44 | + + + + + + + + + + + + | .*.swp .*.swp/* Makefile Makefile/* config.h config.h/* config.log config.log/* config.status config.status/* lc_cleanup.3 lc_cleanup.3/* lc_geterrno.3 lc_geterrno.3/* lc_geterrstr.3 lc_geterrstr.3/* lc_process.3 lc_process.3/* lc_process_file.3 lc_process_file.3/* lc_register_callback.3 lc_register_callback.3/* lc_register_var.3 lc_register_var.3/* libconfig.3 libconfig.3/* libconfig.a libconfig.a/* libconfig.dll libconfig.dll.a libconfig.dll.a/* libconfig.dll.def libconfig.dll.def/* libconfig.dll/* libconfig.h libconfig.h/* libconfig.so libconfig.so/* test-lc test-lc.exe test-lc.exe/* test-lc/* test.cfg test.cfg/* |
Modified Makefile.in from [6d7f8667ba] to [e7001c02f6].
︙ | |||
31 32 33 34 35 36 37 | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + - + - - + + - + + + | BINS = # The following two lines need to be kept syncronised. OBJS = libconfig.o conf_space.o conf_section.o conf_apache.o conf_colon.o conf_equal.o conf_xml.o @LIBOBJS@ SHOBJS = libconfig_shr.o conf_space_shr.o conf_section_shr.o conf_apache_shr.o conf_colon_shr.o conf_equal_shr.o conf_xml_shr.o @SHLIBOBJS@ all: $(LIBS) $(BINS) libconfig.$(SHOBJEXT): $(SHOBJS) |
︙ |
Modified build/build_win32.sh from [295d16231e] to [7d910d6991].
︙ | |||
8 9 10 11 12 13 14 | 8 9 10 11 12 13 14 15 16 | - + | DATE="`date +%Y%m%d%H%M`" CROSS=i586-mingw32msvc if [ ! -z "${CROSS}" ]; then CROSSCMD="${CROSS}-" fi export CFLAGS LDFLAGS CPPFLAGS make distclean |
Modified configure from [2142567030] to [6fc31f0c70].
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 |
︙ | |||
951 952 953 954 955 956 957 | 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 | - + - + | cd $ac_popdir done fi test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF |
︙ | |||
17206 17207 17208 17209 17210 17211 17212 | 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 | - + | echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX } >&5 cat >&5 <<_CSEOF |
︙ | |||
17266 17267 17268 17269 17270 17271 17272 | 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 | - + | $config_headers Report bugs to <bug-autoconf@gnu.org>." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ |
︙ |
Modified configure.ac from [49b46603c1] to [fcea9f4c41].
1 | 1 2 3 4 5 6 7 8 9 | - + | AC_REVISION($Revision $) |
︙ |
Modified lc_register_var.3.in from [e33efd4ec7] to [6224b99a5a].
︙ | |||
76 77 78 79 80 81 82 | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | - + - + + + + | LC_VAR_DATE Not implemented. .TP LC_VAR_BOOL_BY_EXISTANCE This type of variable takes no arguments, it is set to true (1) by its existance in a configuration file, environment variable, or on the command line. If it is not specified, the value of the data passed is not changed. The data passed should be of type "int *". .TP LC_VAR_CIDR |
︙ |
Modified libconfig.c from [a7581f8b4f] to [0b1fdcb0d0].
︙ | |||
48 49 50 51 52 53 54 | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | - - | dataval = data; *dataval = strdup(value); return(0); } static int lc_process_var_cidr(void *data, const char *value) { |
︙ | |||
278 279 280 281 282 283 284 285 286 287 288 289 290 291 | 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | + + + | break; case LC_VAR_SIZE_SIZE_T: return(lc_process_var_sizesizet(data, value)); break; case LC_VAR_IP: return(lc_process_var_ip(data, value)); break; case LC_VAR_CIDR: return(lc_process_var_cidr(data, value)); break; case LC_VAR_TIME: case LC_VAR_DATE: case LC_VAR_FILENAME: case LC_VAR_DIRECTORY: #ifdef DEBUG fprintf(stderr, "Not implemented yet!\n"); #endif |
︙ | |||
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 | 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 | + + | break; } return(chkretval); } static int lc_process_files(const char *appname, lc_conf_type_t type, const char *extraconfig) { #ifdef HAVE_GETPWUID struct passwd *pwinfo = NULL; #endif 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) { |
︙ |
Modified libconfig.spec from [2a99584cbf] to [d5be6e85a0].
︙ | |||
28 29 30 31 32 33 34 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + - + + - - - + + + | %doc README %doc AUTHORS /usr/lib/libconfig.a /usr/lib/libconfig.so /usr/lib/libconfig.so.@@VERS@@ /usr/lib/libconfig.so.0 /usr/include/libconfig.h /usr/man/man3/lc_register_callback.3 |