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

Collapse All | Expand All

(-)Linux-PAM-0.78/libpamc/Makefile.org (-2 lines)
Lines 87-94 Link Here
87
	$(INSTALL) -m $(SHLIBMODE) $(LIBNAMED) $(FAKEROOT)$(libdir)/$(LIBNAMEDFULL)
87
	$(INSTALL) -m $(SHLIBMODE) $(LIBNAMED) $(FAKEROOT)$(libdir)/$(LIBNAMEDFULL)
88
ifndef FAKEROOT
88
ifndef FAKEROOT
89
	$(LDCONFIG)
89
	$(LDCONFIG)
90
else
91
	$(LDCONFIG) -n $(FAKEROOT)$(libdir)
92
endif
90
endif
93
  ifneq ($(DYNTYPE),"sl")
91
  ifneq ($(DYNTYPE),"sl")
94
	( cd $(FAKEROOT)$(libdir) ; rm -f $(LIBNAMED) ; ln -s $(LIBNAMEDNAME) $(LIBNAMED) )
92
	( cd $(FAKEROOT)$(libdir) ; rm -f $(LIBNAMED) ; ln -s $(LIBNAMEDNAME) $(LIBNAMED) )
(-)Linux-PAM-0.78/libpam_misc/Makefile.org (-2 lines)
Lines 89-96 Link Here
89
	$(INSTALL) -m $(SHLIBMODE) $(LIBNAMED) $(FAKEROOT)$(libdir)/$(LIBNAMEDFULL)
89
	$(INSTALL) -m $(SHLIBMODE) $(LIBNAMED) $(FAKEROOT)$(libdir)/$(LIBNAMEDFULL)
90
ifndef FAKEROOT
90
ifndef FAKEROOT
91
	$(LDCONFIG)
91
	$(LDCONFIG)
92
else
93
	$(LDCONFIG) -n $(FAKEROOT)$(libdir)
94
endif
92
endif
95
  ifneq ($(DYNTYPE),"sl")
93
  ifneq ($(DYNTYPE),"sl")
96
	( cd $(FAKEROOT)$(libdir) ; rm -f $(LIBNAMED) ; ln -s $(LIBNAMEDNAME) $(LIBNAMED) )
94
	( cd $(FAKEROOT)$(libdir) ; rm -f $(LIBNAMED) ; ln -s $(LIBNAMEDNAME) $(LIBNAMED) )
(-)Linux-PAM-0.78/libpam/Makefile.org (-2 lines)
Lines 132-139 Link Here
132
	$(INSTALL) -m $(SHLIBMODE) $(LIBPAM) $(FAKEROOT)$(libdir)/$(LIBPAMFULL)
132
	$(INSTALL) -m $(SHLIBMODE) $(LIBPAM) $(FAKEROOT)$(libdir)/$(LIBPAMFULL)
133
ifndef FAKEROOT
133
ifndef FAKEROOT
134
	$(LDCONFIG)
134
	$(LDCONFIG)
135
else
136
	$(LDCONFIG) -n $(FAKEROOT)$(libdir)
137
endif
135
endif
138
  ifneq ($(DYNTYPE),"sl")
136
  ifneq ($(DYNTYPE),"sl")
139
	( cd $(FAKEROOT)$(libdir) ; rm -f $(LIBPAM) ; \
137
	( cd $(FAKEROOT)$(libdir) ; rm -f $(LIBPAM) ; \
(-)Linux-PAM-0.78/configure.in.org (-3 / +3 lines)
Lines 308-314 Link Here
308
	-Wnested-externs -Winline -Wshadow"
308
	-Wnested-externs -Winline -Wshadow"
309
309
310
if test "$GCC" = yes; then
310
if test "$GCC" = yes; then
311
	CC=gcc				; AC_SUBST(CC)
311
	AC_SUBST(CC)
312
### May need per-OS attention
312
### May need per-OS attention
313
### Example: -D_POSIX_SOURCE: needed on Linux but harms Solaris.
313
### Example: -D_POSIX_SOURCE: needed on Linux but harms Solaris.
314
	case $OS in
314
	case $OS in
Lines 318-327 Link Here
318
		WARNINGS="$GCC_WARNINGS"
318
		WARNINGS="$GCC_WARNINGS"
319
		PIC="-fPIC"
319
		PIC="-fPIC"
320
		DYNTYPE=so
320
		DYNTYPE=so
321
		LD=gcc
321
		LD="$CC"
322
		LD_L="$CC -shared $LDFLAGS"
322
		LD_L="$CC -shared $LDFLAGS"
323
		RANLIB=:
323
		RANLIB=:
324
		STRIP=strip
324
		STRIP=${CHOST}-strip
325
		CC_STATIC="-Xlinker -export-dynamic"
325
		CC_STATIC="-Xlinker -export-dynamic"
326
		;;
326
		;;
327
	sunos)
327
	sunos)

Return to bug 146132