head	1.3;
access;
symbols
	RELEASE_8_3_0:1.3
	RELEASE_9_0_0:1.3
	RELEASE_7_4_0:1.3
	RELEASE_8_2_0:1.3
	RELEASE_6_EOL:1.3
	RELEASE_8_1_0:1.3
	RELEASE_7_3_0:1.3
	RELEASE_8_0_0:1.3
	RELEASE_7_2_0:1.3
	RELEASE_7_1_0:1.3
	RELEASE_6_4_0:1.3
	RELEASE_5_EOL:1.3
	RELEASE_7_0_0:1.3
	RELEASE_6_3_0:1.3
	PRE_XORG_7:1.3
	RELEASE_4_EOL:1.3
	RELEASE_6_2_0:1.3
	RELEASE_6_1_0:1.3
	RELEASE_5_5_0:1.3
	RELEASE_6_0_0:1.3
	RELEASE_5_4_0:1.3
	RELEASE_4_11_0:1.3
	RELEASE_5_3_0:1.3
	RELEASE_4_10_0:1.3
	RELEASE_5_2_1:1.3
	RELEASE_5_2_0:1.3
	RELEASE_4_9_0:1.3
	RELEASE_5_1_0:1.2
	RELEASE_4_8_0:1.2
	RELEASE_5_0_0:1.2
	RELEASE_4_7_0:1.1
	RELEASE_4_6_2:1.1
	RELEASE_4_6_1:1.1
	RELEASE_4_6_0:1.1
	RELEASE_5_0_DP1:1.1
	RELEASE_4_5_0:1.1
	RELEASE_4_4_0:1.1
	RELEASE_4_3_0:1.1
	RELEASE_4_2_0:1.1;
locks; strict;
comment	@# @;


1.3
date	2003.07.11.19.56.12;	author nork;	state Exp;
branches;
next	1.2;

1.2
date	2002.10.22.20.41.53;	author jhb;	state Exp;
branches;
next	1.1;

1.1
date	2000.10.20.02.50.04;	author nakai;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Don't compile with -static [1].
Drop MAINTAINERship.

PR:		ports/42556 [1]
Requested by:	Mikhail Teterin <mi@@aldan.algebra.com> [1]
Approved by:	maintainer timeout (a long time)
@
text
@--- configure.in.orig	Thu Sep 14 04:39:40 2000
+++ configure.in	Sat Jul 12 04:48:16 2003
@@@@ -41,6 +41,7 @@@@
 	case "$target" in
 		*-*-solaris*)	LDFLAGS_STATIC="";;
 		*-*-hpux*)	LDFLAGS_STATIC="";;
+		*-*-freebsd*)	LDFLAGS_STATIC="";;
 		*-*-*)		LDFLAGS_STATIC="-all";;
 	esac
 elif test X"$CC" = Xcc ; then
@@@@ -367,9 +368,8 @@@@
 AC_CHECK_HEADERS(sys/mman.h sys/resource.h sys/utsname.h sys/wait.h)
 
 AC_CHECK_HEADERS(netinet/in_systm.h)
-AC_CHECK_HEADERS(machine/types.h)
 AC_CHECK_HEADERS(mntent.h sys/mnttab.h sys/systemcfg.h)
-AC_CHECK_HEADERS(sys/mount.h sys/mntctl.h sys/vmount.h)
+AC_CHECK_HEADERS(sys/mount.h sys/mntctl.h sys/param.h sys/vmount.h)
 AC_CHECK_HEADERS(bzlib.h libio.h zlib.h)
 AC_CHECK_HEADERS(err.h mcheck.h)
 
@@@@ -431,6 +431,9 @@@@
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
+#ifdef HAVE_SYS_PARAM_H
+#include <sys/param.h>
+#endif
 #include <sys/mount.h> ],
 	[struct statfs sfs;],
 	[AC_MSG_RESULT(in sys/mount.h)
@@@@ -744,7 +747,7 @@@@
 AC_SUBST(ROOT_GROUP)
 
 if test "x$varprefix" = "x"; then
-    varprefix=`echo $prefix | sed 's/usr/var/'`
+    varprefix=`echo /var`
     test "x$prefix" = xNONE && varprefix=`echo $ac_default_prefix | sed 's/usr/var/'`
 fi
 AC_SUBST(varprefix)
@@@@ -872,7 +875,7 @@@@
 RPMCONFIGDIR="`echo ${usrprefix}/lib/rpm`"
 AC_DEFINE_UNQUOTED(RPMCONFIGDIR, "$RPMCONFIGDIR")
 AC_SUBST(RPMCONFIGDIR)
-SYSCONFIGDIR="`echo /etc/rpm`"
+SYSCONFIGDIR="`echo ${usrprefix}/etc/rpm`"
 AC_DEFINE_UNQUOTED(SYSCONFIGDIR, "$SYSCONFIGDIR")
 AC_SUBST(SYSCONFIGDIR)
 LIBRPMRC_FILENAME="${RPMCONFIGDIR}/rpmrc"
@@@@ -911,7 +914,6 @@@@
 dnl # XXX Propagate -lucb to popt ...
 dnl export LIBS INCPATH CONFIG_SITE
 
-AC_CONFIG_SUBDIRS(popt)
 AC_OUTPUT([Doxyfile Makefile rpmrc macros platform rpmpopt scripts/brp-redhat
 	lib/Makefile build/Makefile tools/Makefile scripts/Makefile
 	tests/Makefile tests/rpmrc tests/macros tests/hello-test/Makefile
@@@@ -919,8 +921,7 @@@@
 	doc/Makefile doc/manual/Makefile
 	doc/ja/Makefile doc/pl/Makefile doc/ru/Makefile doc/sk/Makefile
 	python/Makefile perl/Makefile perl/Makefile.PL],
-	[echo timestamp > popt/stamp-h.in
-	echo timestamp > stamp-h.in])
+	[echo timestamp > stamp-h.in])
 dnl	touch Makefile.in
 dnl	sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
 
@


1.2
log
@Update patch to configure.in to remove check for <machine/types.h>.
<machine/types.h> is not a user-usable header anyways.  Including it breaks
the build on current.  On stable <sys/types.h> includes it.  This still
doesn't make rpm actually work on -current, but at least the port compiles
now.
@
text
@d1 11
a11 3
--- configure.in.orig	Wed Sep 13 15:39:40 2000
+++ configure.in	Tue Oct 15 12:58:08 2002
@@@@ -367,9 +367,8 @@@@
d22 1
a22 1
@@@@ -431,6 +430,9 @@@@
d32 1
a32 1
@@@@ -744,7 +746,7 @@@@
d41 1
a41 1
@@@@ -872,7 +874,7 @@@@
d50 1
a50 1
@@@@ -911,7 +913,6 @@@@
d58 1
a58 1
@@@@ -919,8 +920,7 @@@@
@


1.1
log
@Fix for INSTALLS_SHLIB
Add patch for configure.in

PR:		ports/22046
Submitted by:	KATO Tsuguru <tkato@@prontomail.ne.jp>
@
text
@d1 5
a5 3
--- configure.in.orig	Thu Sep 14 04:39:40 2000
+++ configure.in	Wed Oct  4 23:13:46 2000
@@@@ -369,7 +369,7 @@@@
d7 1
a7 1
 AC_CHECK_HEADERS(machine/types.h)
d14 1
a14 1
@@@@ -431,6 +431,9 @@@@
d24 1
a24 1
@@@@ -744,7 +747,7 @@@@
d33 1
a33 1
@@@@ -872,7 +875,7 @@@@
d42 1
a42 1
@@@@ -911,7 +914,6 @@@@
d50 1
a50 1
@@@@ -919,8 +921,7 @@@@
@

