Changeset 5819
- Timestamp:
- 03/14/10 12:48:19 (3 years ago)
- Location:
- luci2/libmbox
- Files:
-
- 1 modified
- 2 moved
-
Makefile (modified) (1 diff)
-
ucix.c (moved) (moved from luci2/libmbox/uci.c) (1 diff)
-
ucix.h (moved) (moved from luci2/libmbox/uci.h) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
luci2/libmbox/Makefile
r5817 r5819 7 7 all: $(BINARY) 8 8 9 libmbox.so: uci .c blob.c hash.c9 libmbox.so: ucix.c blob.c hash.c 10 10 $(CC) $(CFLAGS) -o $@ -shared -Wl,-soname,libmbox.so $^ 11 11 -
luci2/libmbox/ucix.c
r5817 r5819 1 /* 2 * ucix 3 * Copyright (C) 2010 John Crispin <blogic@openwrt.org> 4 * Copyright (C) 2010 Steven Barth <steven@midlink.org> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or 9 * (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 1 22 #include <string.h> 2 23 #include <stdlib.h> 3 24 4 #include "cbi.h" 5 #include "uci.h" 25 #include "ucix.h" 6 26 7 27 struct uci_ptr uci_ptr; -
luci2/libmbox/ucix.h
r5817 r5819 1 /* 2 * ucix 3 * Copyright (C) 2010 John Crispin <blogic@openwrt.org> 4 * Copyright (C) 2010 Steven Barth <steven@midlink.org> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or 9 * (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 19 * 20 */ 21 1 22 #ifndef _UCI_H__ 2 23 #define _UCI_H__
