Author: aurel32
Date: 2011-05-04 17:54:36 +0000 (Wed, 04 May 2011)
New Revision: 4640

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/any/local-no-pagesize.diff
Log:
  * patches/any/local-no-pagesize.diff: use __sysconf() instead of 
    sysconf().




Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog        2011-05-02 18:20:00 UTC (rev 
4639)
+++ glibc-package/trunk/debian/changelog        2011-05-04 17:54:36 UTC (rev 
4640)
@@ -1,3 +1,10 @@
+eglibc (2.13-3) UNRELEASED; urgency=low
+
+  * patches/any/local-no-pagesize.diff: use __sysconf() instead of 
+    sysconf().
+
+ -- Aurelien Jarno <[email protected]>  Wed, 04 May 2011 19:53:33 +0200
+
 eglibc (2.13-2) unstable; urgency=low
 
   [ Aurelien Jarno ]

Modified: glibc-package/trunk/debian/patches/any/local-no-pagesize.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/local-no-pagesize.diff       
2011-05-02 18:20:00 UTC (rev 4639)
+++ glibc-package/trunk/debian/patches/any/local-no-pagesize.diff       
2011-05-04 17:54:36 UTC (rev 4640)
@@ -19,7 +19,7 @@
  };
  
 -#define NBPG                  PAGE_SIZE
-+#define NBPG                  (sysconf(_SC_PAGESIZE))
++#define NBPG                  (__sysconf(_SC_PAGESIZE))
  #define UPAGES                        1
  #define HOST_TEXT_START_ADDR  (u.start_code)
  #define HOST_DATA_START_ADDR  (u.start_data)
@@ -39,7 +39,7 @@
  
 -#define PAGE_SHIFT            12
 -#define PAGE_SIZE             (1UL << PAGE_SHIFT)
-+#define PAGE_SIZE             (sysconf(_SC_PAGESIZE))
++#define PAGE_SIZE             (__sysconf(_SC_PAGESIZE))
  #define PAGE_MASK             (~(PAGE_SIZE-1))
  #define NBPG                  PAGE_SIZE
  #define UPAGES                        1
@@ -59,7 +59,7 @@
  
 -#define PAGE_SHIFT            12
 -#define PAGE_SIZE             (1UL << PAGE_SHIFT)
-+#define PAGE_SIZE             (sysconf(_SC_PAGESIZE))
++#define PAGE_SIZE             (__sysconf(_SC_PAGESIZE))
  #define PAGE_MASK             (~(PAGE_SIZE-1))
  #define NBPG                  PAGE_SIZE
  #define UPAGES                        1


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to