Changeset 4051
- Timestamp:
- 02/11/08 11:50:32 (5 years ago)
- Location:
- trunk/src/target/opkg
- Files:
-
- 6 edited
-
configure.ac (modified) (1 diff)
-
libopkg/Makefile.am (modified) (1 diff)
-
src/opkg-frontend.c (modified) (1 diff)
-
tests/Makefile.am (modified) (1 diff)
-
tests/opkg_extract_test.c (modified) (1 diff)
-
tests/opkg_hash_test.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/target/opkg/configure.ac
r4050 r4051 1 1 # Process this file with autoconf to produce a configure script 2 AC_INIT(libopkg/ opkg.c)2 AC_INIT(libopkg/libopkg.c) 3 3 AM_INIT_AUTOMAKE([opkg], [0.99.163]) 4 4 AM_CONFIG_HEADER(libopkg/config.h) -
trunk/src/target/opkg/libopkg/Makefile.am
r4049 r4051 1 1 2 ALL_CFLAGS=-g -O -Wall -DHOST_CPU_STR=\"@host_cpu@\" -DBUILD_CPU=@build_cpu@ -DLIBDIR=\"@libdir@\" -DOPKGLIBDIR=\"@opkglibdir@\" -DDATADIR=\"@datadir@\" -I$(top_ builddir)2 ALL_CFLAGS=-g -O -Wall -DHOST_CPU_STR=\"@host_cpu@\" -DBUILD_CPU=@build_cpu@ -DLIBDIR=\"@libdir@\" -DOPKGLIBDIR=\"@opkglibdir@\" -DDATADIR=\"@datadir@\" -I$(top_srcdir) 3 3 4 4 libopkg_includedir=$(includedir)/libopkg -
trunk/src/target/opkg/src/opkg-frontend.c
r4029 r4051 19 19 */ 20 20 21 #include "libopkg.h"21 #include <libopkg/libopkg.h> 22 22 23 23 /* This is really small, eh? ;-) */ -
trunk/src/target/opkg/tests/Makefile.am
r4049 r4051 4 4 opkg_hash_test_LDADD = $(top_builddir)/libbb/libbb.la $(top_builddir)/libopkg/libopkg.la 5 5 opkg_hash_test_SOURCES = opkg_hash_test.c 6 opkg_hash_test_CFLAGS = $(ALL_CFLAGS) -I$(top_ builddir)6 opkg_hash_test_CFLAGS = $(ALL_CFLAGS) -I$(top_srcdir) 7 7 8 8 opkg_extract_test_LDADD = $(top_builddir)/libbb/libbb.la $(top_builddir)/libopkg/libopkg.la 9 9 opkg_extract_test_SOURCES = opkg_extract_test.c 10 opkg_extract_test_CFLAGS = $(ALL_CFLAGS) -I$(top_ builddir)10 opkg_extract_test_CFLAGS = $(ALL_CFLAGS) -I$(top_srcdir) 11 11 12 12 -
trunk/src/target/opkg/tests/opkg_extract_test.c
r4049 r4051 1 1 #include <stdio.h> 2 2 #include <stdlib.h> 3 #include "libbb/libbb.h"3 #include <libbb/libbb.h> 4 4 5 5 /* -
trunk/src/target/opkg/tests/opkg_hash_test.c
r4049 r4051 16 16 */ 17 17 18 #include "opkg.h"18 #include <libopkg/opkg.h> 19 19 20 #include "hash_table.h"21 #include "opkg_utils.h"22 #include "pkg_hash.h"20 #include <libopkg/hash_table.h> 21 #include <libopkg/opkg_utils.h> 22 #include <libopkg/pkg_hash.h> 23 23 24 24 int main(int argc, char *argv[])
Note: See TracChangeset
for help on using the changeset viewer.
