[Glibc-bsd-commits] r2994 - trunk/glibc-ports/kfreebsd
Aurelien Jarno
aurel32 at alioth.debian.org
Sun Feb 28 22:46:14 UTC 2010
Author: aurel32
Date: 2010-02-28 22:46:13 +0000 (Sun, 28 Feb 2010)
New Revision: 2994
Modified:
trunk/glibc-ports/kfreebsd/faccessat.c
trunk/glibc-ports/kfreebsd/fchmodat.c
trunk/glibc-ports/kfreebsd/fchownat.c
trunk/glibc-ports/kfreebsd/fexecve.c
trunk/glibc-ports/kfreebsd/futimesat.c
trunk/glibc-ports/kfreebsd/fxstatat.c
trunk/glibc-ports/kfreebsd/fxstatat64.c
trunk/glibc-ports/kfreebsd/linkat.c
trunk/glibc-ports/kfreebsd/mkdirat.c
trunk/glibc-ports/kfreebsd/openat.c
trunk/glibc-ports/kfreebsd/readlinkat.c
trunk/glibc-ports/kfreebsd/renameat.c
trunk/glibc-ports/kfreebsd/symlinkat.c
trunk/glibc-ports/kfreebsd/unlinkat.c
trunk/glibc-ports/kfreebsd/xmknodat.c
Log:
revert r2978, we still need to support 7.2 kernels on the build daemons
Modified: trunk/glibc-ports/kfreebsd/faccessat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/faccessat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/faccessat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -169,3 +169,4 @@
__set_errno (EACCES);
return -1;
}
+stub_warning(faccessat)
Modified: trunk/glibc-ports/kfreebsd/fchmodat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fchmodat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/fchmodat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -136,3 +136,4 @@
return __chmod(file, mode);
#endif
}
+stub_warning(fchmodat)
Modified: trunk/glibc-ports/kfreebsd/fchownat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fchownat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/fchownat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -135,3 +135,4 @@
return __chown(file, owner, group);
#endif
}
+stub_warning(fchownat)
Modified: trunk/glibc-ports/kfreebsd/fexecve.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fexecve.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/fexecve.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -101,3 +101,4 @@
return -1;
#endif
}
+stub_warning(fexecve)
Modified: trunk/glibc-ports/kfreebsd/futimesat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/futimesat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/futimesat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -136,3 +136,4 @@
return __utimes(file, tvp);
#endif
}
+stub_warning(futimesat)
Modified: trunk/glibc-ports/kfreebsd/fxstatat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fxstatat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/fxstatat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -156,3 +156,4 @@
}
libc_hidden_def (__fxstatat)
+stub_warning(fstatat)
Modified: trunk/glibc-ports/kfreebsd/fxstatat64.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fxstatat64.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/fxstatat64.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -150,3 +150,4 @@
}
libc_hidden_def (__fxstatat64)
+stub_warning(fstatat64)
Modified: trunk/glibc-ports/kfreebsd/linkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/linkat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/linkat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -179,3 +179,4 @@
return __link (from, to);
#endif
}
+stub_warning(linkat)
Modified: trunk/glibc-ports/kfreebsd/mkdirat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/mkdirat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/mkdirat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -124,3 +124,4 @@
return __mkdir (file, mode);
#endif
}
+stub_warning(mkdirat)
Modified: trunk/glibc-ports/kfreebsd/openat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/openat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/openat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -187,3 +187,5 @@
}
strong_alias (__openat_2, __openat64_2)
+stub_warning(openat)
+stub_warning(openat64)
Modified: trunk/glibc-ports/kfreebsd/readlinkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/readlinkat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/readlinkat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -128,3 +128,4 @@
}
libc_hidden_def (readlinkat)
+stub_warning(readlinkat)
Modified: trunk/glibc-ports/kfreebsd/renameat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/renameat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/renameat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -172,3 +172,4 @@
return __rename (old, new);
#endif
}
+stub_warning(renameat)
Modified: trunk/glibc-ports/kfreebsd/symlinkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/symlinkat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/symlinkat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -124,3 +124,4 @@
return __symlink (from, to);
#endif
}
+stub_warning(symlinkat)
Modified: trunk/glibc-ports/kfreebsd/unlinkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/unlinkat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/unlinkat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -133,3 +133,4 @@
return __unlink (file);
#endif
}
+stub_warning(unlinkat)
Modified: trunk/glibc-ports/kfreebsd/xmknodat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/xmknodat.c 2010-02-26 15:43:19 UTC (rev 2993)
+++ trunk/glibc-ports/kfreebsd/xmknodat.c 2010-02-28 22:46:13 UTC (rev 2994)
@@ -143,3 +143,4 @@
}
libc_hidden_def (__xmknodat)
+stub_warning(xmknodat)
More information about the Glibc-bsd-commits
mailing list