diff options
author | Guillem Jover <guillem@hadrons.org> | 2011-05-25 07:36:19 +0200 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2011-05-27 22:45:26 +0200 |
commit | 17a9a8472ec3f9a40ab2fcf2e21f1fa9468e0288 (patch) | |
tree | a73ca1d6ca9831e8d03b188f94930b2e8849e7d9 /include | |
parent | 94fe901edabdfbafc602e4d194a21c5e0f372cba (diff) | |
download | libbsd-17a9a8472ec3f9a40ab2fcf2e21f1fa9468e0288.tar.gz |
Rename transparent support to overlay
This affects the pkg-config file now named libbsd-overlay.pc, and the
macro to use the overlay LIBBSD_OVERLAY.
Diffstat (limited to 'include')
-rw-r--r-- | include/bsd/err.h | 4 | ||||
-rw-r--r-- | include/bsd/getopt.h | 4 | ||||
-rw-r--r-- | include/bsd/stdio.h | 2 | ||||
-rw-r--r-- | include/bsd/stdlib.h | 4 | ||||
-rw-r--r-- | include/bsd/string.h | 4 | ||||
-rw-r--r-- | include/bsd/sys/cdefs.h | 4 | ||||
-rw-r--r-- | include/bsd/unistd.h | 4 |
7 files changed, 13 insertions, 13 deletions
diff --git a/include/bsd/err.h b/include/bsd/err.h index b622655..def4ac3 100644 --- a/include/bsd/err.h +++ b/include/bsd/err.h @@ -1,6 +1,6 @@ /* * Copyright © 2006 Robert Millan - * Copyright © 2009 Guillem Jover + * Copyright © 2009, 2011 Guillem Jover * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,7 +32,7 @@ #include <stdarg.h> -#ifdef LIBBSD_TRANSPARENT +#ifdef LIBBSD_OVERLAY #include_next <err.h> #else #include <err.h> diff --git a/include/bsd/getopt.h b/include/bsd/getopt.h index b0057cf..d2963cb 100644 --- a/include/bsd/getopt.h +++ b/include/bsd/getopt.h @@ -1,6 +1,6 @@ /* * Copyright © 2006 Robert Millan - * Copyright © 2009 Guillem Jover + * Copyright © 2009, 2011 Guillem Jover * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -30,7 +30,7 @@ #include <sys/cdefs.h> -#ifdef LIBBSD_TRANSPARENT +#ifdef LIBBSD_OVERLAY #include_next <getopt.h> #else #include <getopt.h> diff --git a/include/bsd/stdio.h b/include/bsd/stdio.h index cdf4e50..db2823e 100644 --- a/include/bsd/stdio.h +++ b/include/bsd/stdio.h @@ -30,7 +30,7 @@ #include <sys/cdefs.h> #include <sys/types.h> -#ifdef LIBBSD_TRANSPARENT +#ifdef LIBBSD_OVERLAY #include_next <stdio.h> #else #include <stdio.h> diff --git a/include/bsd/stdlib.h b/include/bsd/stdlib.h index 4a185fc..a22cbe5 100644 --- a/include/bsd/stdlib.h +++ b/include/bsd/stdlib.h @@ -33,14 +33,14 @@ #include <sys/stat.h> #include <stdint.h> -#ifdef LIBBSD_TRANSPARENT +#ifdef LIBBSD_OVERLAY #include_next <stdlib.h> #else #include <stdlib.h> #endif /* For compatibility with NetBSD, which defines humanize_number here. */ -#ifdef LIBBSD_TRANSPARENT +#ifdef LIBBSD_OVERLAY #include <libutil.h> #else #include <bsd/libutil.h> diff --git a/include/bsd/string.h b/include/bsd/string.h index f9e733f..7d23f7d 100644 --- a/include/bsd/string.h +++ b/include/bsd/string.h @@ -1,5 +1,5 @@ /* - * Copyright © 2004, 2005, 2009 Guillem Jover + * Copyright © 2004, 2005, 2009, 2011 Guillem Jover * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -30,7 +30,7 @@ #include <sys/cdefs.h> #include <sys/types.h> -#ifdef LIBBSD_TRANSPARENT +#ifdef LIBBSD_OVERLAY #include_next <string.h> #else #include <string.h> diff --git a/include/bsd/sys/cdefs.h b/include/bsd/sys/cdefs.h index 87d8a48..b1a0f8a 100644 --- a/include/bsd/sys/cdefs.h +++ b/include/bsd/sys/cdefs.h @@ -1,5 +1,5 @@ /* - * Copyright © 2004, 2005, 2006, 2009 Guillem Jover + * Copyright © 2004-2006, 2009-2011 Guillem Jover * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -27,7 +27,7 @@ #ifndef LIBBSD_CDEFS_H #define LIBBSD_CDEFS_H -#ifdef LIBBSD_TRANSPARENT +#ifdef LIBBSD_OVERLAY #include_next <sys/cdefs.h> #else #include <sys/cdefs.h> diff --git a/include/bsd/unistd.h b/include/bsd/unistd.h index ac56787..61aaff4 100644 --- a/include/bsd/unistd.h +++ b/include/bsd/unistd.h @@ -1,5 +1,5 @@ /* - * Copyright © 2008, 2009 Guillem Jover + * Copyright © 2008-2011 Guillem Jover * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -30,7 +30,7 @@ #include <sys/cdefs.h> #include <sys/stat.h> -#ifdef LIBBSD_TRANSPARENT +#ifdef LIBBSD_OVERLAY #include_next <unistd.h> #else #include <unistd.h> |