summaryrefslogtreecommitdiff
path: root/db3/configure
blob: b6724ac282851a0c5d660e2714279380225580ec (plain)
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
#!/bin/sh
#set -x 
db_dist="../db/dist"

rm -f config.cache

# XXX hacks to get db-3.3.4 to configure properly
#ln -sf ../dist $db_dist/../db/dist
#ln -sf ../dist $db_dist

# XXX edit CFLAGS= ... out of invocation args ???
ARGS="`echo $* | sed -e 's% [^ ]*CFLAGS=[^ ]*%%' -e 's% -march=[^ ]*%%' -e 's% -mcpu=[^ ]*%%' -e 's%--cache-file=.*$%%'`"

CC="$CC" CFLAGS="$CFLAGS" $db_dist/configure $ARGS \
	--enable-shared --enable-static --enable-debug --enable-rpc \
	--with-uniquename=_rpmdb --srcdir=$db_dist

# XXX hack to get db-3.3.4 to configure properly
#rm -f $db_dist/../db/dist $db_dist/dist

mv Makefile Makefile.orig
cat Makefile.orig | sed -e 's/ -g$/ -g -O2/' -e '/^install:/c\
.PHONY: listobjs\
listobjs:\
	@echo $(OBJS) $(C_OBJS) \
\
distdir install check:\
\
db3_install: all install_setip \\' > Makefile

mv db.h db.h.orig
cat db.h.orig | sed \
	-e '/^typedef	u_int32_t	db_pgno_t;/i\
/*@-incondefs -fielduse -enummemuse -typeuse @*/' \
	-e '/^struct __key_range;/a\
/*@=incondefs@*/' \
	-e '/^#define	db_create/i\
/*@-declundef -noparams -fcnuse@*/' \
	-e '/^#define db_xa_switch/a\
/*@=declundef =noparams =fcnuse =fielduse =enummemuse =typeuse @*/' > db.h

# Generate manifest for rpmdb.
make -s listobjs > db3lobjs