summaryrefslogtreecommitdiff
path: root/net-mgmt/macroscope/files
diff options
context:
space:
mode:
authorBeech Rintoul <beech@FreeBSD.org>2008-07-08 07:14:22 +0000
committerBeech Rintoul <beech@FreeBSD.org>2008-07-08 07:14:22 +0000
commit60479b26cb9a068784b48c38fab5a895dc0c46f1 (patch)
treebb80b7f6266cc4f92c01895fbbb324b9af1e583b /net-mgmt/macroscope/files
parentUpdate to DEV300_m23. (diff)
- Update to 1.0.2938
PR: ports/125177 Submitted by: Guram Dukashvili <white_raven@users.berlios.de> (maintainer)
Diffstat (limited to 'net-mgmt/macroscope/files')
-rw-r--r--net-mgmt/macroscope/files/CheckTypeSize.c.in34
1 files changed, 0 insertions, 34 deletions
diff --git a/net-mgmt/macroscope/files/CheckTypeSize.c.in b/net-mgmt/macroscope/files/CheckTypeSize.c.in
deleted file mode 100644
index 8c9a0163e524..000000000000
--- a/net-mgmt/macroscope/files/CheckTypeSize.c.in
+++ /dev/null
@@ -1,34 +0,0 @@
-#cmakedefine CHECK_TYPE_SIZE_TYPE @CHECK_TYPE_SIZE_TYPE@
-#ifdef CHECK_TYPE_SIZE_TYPE
-
-@CHECK_TYPE_SIZE_PREINCLUDE@
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif /* HAVE_SYS_TYPES_H */
-
-#ifdef HAVE_STDINT_H
-# include <stdint.h>
-#endif /* HAVE_STDINT_H */
-
-#ifdef HAVE_STDDEF_H
-# include <stddef.h>
-#endif /* HAVE_STDDEF_H */
-
-@CHECK_TYPE_SIZE_PREMAIN@
-
-#ifdef __CLASSIC_C__
-int main(){
- int ac;
- char*av[];
-#else
-int main(int ac, char*av[]){
-#endif
- if(ac > 1000){return *av[0];}
- return sizeof(CHECK_TYPE_SIZE_TYPE);
-}
-
-#else /* CHECK_TYPE_SIZE_TYPE */
-
-# error "CHECK_TYPE_SIZE_TYPE has to specify the type"
-
-#endif /* CHECK_TYPE_SIZE_TYPE */