Accepting request 182427 from home:jengelh:branches:Base:System
- Fix typo in popt-libc-updates.patch that prevented it to work with glibc before 2.17. OBS-URL: https://build.opensuse.org/request/show/182427 OBS-URL: https://build.opensuse.org/package/show/Base:System/popt?expand=0&rev=42
This commit is contained in:
parent
6885906af3
commit
b6afadd83a
@ -75,7 +75,7 @@ Index: system.h
|
||||
-#if defined(HAVE___SECURE_GETENV) && !defined(__LCLINT__)
|
||||
-#define getenv(_s) __secure_getenv(_s)
|
||||
+#ifndef HAVE_SECURE_GETENV
|
||||
+# ifdef HAVE__SECURE_GETENV
|
||||
+# ifdef HAVE___SECURE_GETENV
|
||||
+# define secure_getenv __secure_getenv
|
||||
+# else
|
||||
+# error neither secure_getenv nor __secure_getenv is available
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 7 16:34:40 UTC 2013 - jengelh@inai.de
|
||||
|
||||
- Fix typo in popt-libc-updates.patch that prevented it to work
|
||||
with glibc before 2.17.
|
||||
- More robust make install call; remove redundant %clean section
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 14 15:15:49 UTC 2013 - coolo@suse.com
|
||||
|
||||
|
@ -24,6 +24,8 @@ Summary: A C library for parsing command line parameters
|
||||
License: MIT
|
||||
Group: System Environment/Libraries
|
||||
Url: http://www.rpm5.org/
|
||||
|
||||
#CVS-Clone: -d :pserver:anonymous@rpm5.org:/cvs co popt
|
||||
Source: http://rpm5.org/files/popt/popt-%{version}.tar.gz
|
||||
Source2: baselibs.conf
|
||||
BuildRequires: libtool
|
||||
@ -76,7 +78,7 @@ autoreconf -fiv
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%make_install
|
||||
make install DESTDIR="%buildroot"
|
||||
rm %{buildroot}%{_libdir}/libpopt.la
|
||||
|
||||
%if "%{_libdir}" != "%{_prefix}/lib"
|
||||
@ -86,9 +88,6 @@ mv %{buildroot}%{_prefix}/lib/pkgconfig/%{name}.pc %{buildroot}/%{_libdir}/pkgco
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%post -n libpopt0 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libpopt0 -p /sbin/ldconfig
|
||||
|
Loading…
Reference in New Issue
Block a user