Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 131841 | Differences between
and this patch

Collapse All | Expand All

(-)parted-1.6.25/configure.in.orig (+3 lines)
Lines 214-221 Link Here
214
CFLAGS="$CFLAGS -DLOCALEDIR=\"\\\"$datadir/locale\\\"\""
214
CFLAGS="$CFLAGS -DLOCALEDIR=\"\\\"$datadir/locale\\\"\""
215
215
216
dnl Check for libdl, if we are doing dynamic loading
216
dnl Check for libdl, if we are doing dynamic loading
217
DL_LIBS=""
217
if test "$enable_dynamic_loading" = yes; then
218
if test "$enable_dynamic_loading" = yes; then
218
	AC_CHECK_LIB(dl, dlopen,
219
	AC_CHECK_LIB(dl, dlopen,
220
		DL_LIBS="-ldl"
219
		PARTED_LIBS="$PARTED_LIBS -ldl"
221
		PARTED_LIBS="$PARTED_LIBS -ldl"
220
		AC_DEFINE(DYNAMIC_LOADING, 1, [Lazy linking to fs libs]),
222
		AC_DEFINE(DYNAMIC_LOADING, 1, [Lazy linking to fs libs]),
221
		AC_MSG_ERROR(
223
		AC_MSG_ERROR(
Lines 224-229 Link Here
224
		exit
226
		exit
225
	)
227
	)
226
fi
228
fi
229
AC_SUBST(DL_LIBS)
227
230
228
dnl Check for libuuid
231
dnl Check for libuuid
229
UUID_LIBS=""
232
UUID_LIBS=""
(-)parted-1.6.25/libparted/Makefile.am.orig (+1 lines)
Lines 50-55 Link Here
50
				gnu.c
50
				gnu.c
51
51
52
libparted_la_LIBADD   = @UUID_LIBS@			\
52
libparted_la_LIBADD   = @UUID_LIBS@			\
53
			@DL_LIBS@			\
53
			@OS_LIBS@			\
54
			@OS_LIBS@			\
54
			@REISER_LIBS@			\
55
			@REISER_LIBS@			\
55
			fs_amiga/libamigafs.la		\
56
			fs_amiga/libamigafs.la		\

Return to bug 131841