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

(-)configure.ac.orig (+3 lines)
Lines 197-204 Link Here
197
CFLAGS="$CFLAGS -DLOCALEDIR=\"\\\"$datadir/locale\\\"\""
197
CFLAGS="$CFLAGS -DLOCALEDIR=\"\\\"$datadir/locale\\\"\""
198
198
199
dnl Check for libdl, if we are doing dynamic loading
199
dnl Check for libdl, if we are doing dynamic loading
200
DL_LIBS=""
200
if test "$enable_dynamic_loading" = yes; then
201
if test "$enable_dynamic_loading" = yes; then
201
	AC_CHECK_LIB(dl, dlopen,
202
	AC_CHECK_LIB(dl, dlopen,
203
		DL_LIBS="-ldl"
202
		PARTED_LIBS="$PARTED_LIBS -ldl"
204
		PARTED_LIBS="$PARTED_LIBS -ldl"
203
		AC_DEFINE(DYNAMIC_LOADING, 1, [Lazy linking to fs libs]),
205
		AC_DEFINE(DYNAMIC_LOADING, 1, [Lazy linking to fs libs]),
204
		AC_MSG_ERROR(
206
		AC_MSG_ERROR(
Lines 207-212 Link Here
207
		exit
209
		exit
208
	)
210
	)
209
fi
211
fi
212
AC_SUBST(DL_LIBS)
210
213
211
dnl Check for libuuid
214
dnl Check for libuuid
212
UUID_LIBS=""
215
UUID_LIBS=""
(-)libparted/Makefile.am.orig (+1 lines)
Lines 31-36 Link Here
31
				arch/beos.c
31
				arch/beos.c
32
32
33
libparted_la_LIBADD   = @OS_LIBS@			\
33
libparted_la_LIBADD   = @OS_LIBS@			\
34
			@DL_LIBS@			\
34
			fs/libfs.la			\
35
			fs/libfs.la			\
35
			labels/liblabels.la
36
			labels/liblabels.la
36
37

Return to bug 131841