Move ptsname_r_chk to login/ subdir.
authorRoland McGrath <roland@hack.frob.com>
Mon, 6 May 2013 22:19:14 +0000 (15:19 -0700)
committerRoland McGrath <roland@hack.frob.com>
Mon, 6 May 2013 22:19:14 +0000 (15:19 -0700)
ChangeLog
debug/Makefile
debug/Versions
login/Makefile
login/Versions
login/ptsname_r_chk.c [moved from debug/ptsname_r_chk.c with 100% similarity]

index c5ec238..b82e778 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2013-05-06  Roland McGrath  <roland@hack.frob.com>
 
+       * debug/ptsname_r_chk.c: Moved to ...
+       * login/ptsname_r_chk.c: ... here.
+       * debug/Makefile (routines): Move ptsname_r_chk to ...
+       * login/Makefile (routines): ... here.
+       * debug/Versions (libc: GLIBC_2.4): Move __ptsname_r_chk to ...
+       * login/Versions (libc: GLIBC_2.4): ... here.
+
        * posix/getlogin.c: Moved to ...
        * login/getlogin.c: ... here.
        * posix/getlogin_r.c: Moved to ...
index 55017d3..682f14c 100644 (file)
@@ -22,6 +22,9 @@ subdir        := debug
 
 headers        := execinfo.h
 
+# Note that ptsname_r_chk is not here but in login/Makefile instead.
+# If that subdir is omitted from the build, its _FORTIFY_SOURCE
+# support will be too.
 routines  = backtrace backtracesyms backtracesymsfd noophooks \
            memcpy_chk memmove_chk mempcpy_chk memset_chk stpcpy_chk \
            strcat_chk strcpy_chk strncat_chk strncpy_chk stpncpy_chk \
@@ -30,7 +33,7 @@ routines  = backtrace backtracesyms backtracesymsfd noophooks \
            gets_chk chk_fail readonly-area fgets_chk fgets_u_chk \
            read_chk pread_chk pread64_chk recv_chk recvfrom_chk \
            readlink_chk readlinkat_chk getwd_chk getcwd_chk \
-           realpath_chk ptsname_r_chk fread_chk fread_u_chk \
+           realpath_chk fread_chk fread_u_chk \
            wctomb_chk wcscpy_chk wmemcpy_chk wmemmove_chk wmempcpy_chk \
            wcpcpy_chk wcsncpy_chk wcscat_chk wcsncat_chk wmemset_chk \
            wcpncpy_chk \
index c1722fa..e2b90eb 100644 (file)
@@ -23,7 +23,7 @@ libc {
     __read_chk; __pread_chk; __pread64_chk;
     __readlink_chk; __getcwd_chk; __getwd_chk;
     __recv_chk; __recvfrom_chk;
-    __realpath_chk; __ptsname_r_chk; __wctomb_chk;
+    __realpath_chk; __wctomb_chk;
     __stpncpy_chk;
     __wcscpy_chk; __wmemcpy_chk; __wmemmove_chk; __wmempcpy_chk; __wcpcpy_chk;
     __wcsncpy_chk; __wcscat_chk; __wcsncat_chk; __wmemset_chk; __wcpncpy_chk;
index 4b057ec..fa5aa71 100644 (file)
@@ -25,7 +25,8 @@ headers       := utmp.h bits/utmp.h lastlog.h pty.h
 
 routines := getlogin getlogin_r setlogin \
            getutent getutent_r getutid getutline getutid_r getutline_r \
-           utmp_file utmpname updwtmp getpt grantpt unlockpt ptsname
+           utmp_file utmpname updwtmp getpt grantpt unlockpt ptsname \
+           ptsname_r_chk
 
 CFLAGS-grantpt.c = -DLIBEXECDIR='"$(libexecdir)"'
 
index 0c9e75a..f4df718 100644 (file)
@@ -41,6 +41,9 @@ libc {
     # p*
     posix_openpt;
   }
+  GLIBC_2.4 {
+    __ptsname_r_chk;
+  }
 }
 
 libutil {
similarity index 100%
rename from debug/ptsname_r_chk.c
rename to login/ptsname_r_chk.c