aboutsummaryrefslogtreecommitdiff
path: root/portable/dummy.c
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2008-04-24 02:02:49 +0000
committerRuss Allbery <rra@stanford.edu>2008-04-24 02:02:49 +0000
commit92ff7f21ad0b167f8d742a9d7b5f93704a57619c (patch)
tree7adae5f227b6463e07d5cd0f1dab82b7f1c6be47 /portable/dummy.c
parent34c58f9471b3df4fa8b719b3c3534940ba5cfe1b (diff)
Major coding style cleanup. Updated all shared code from my other
projects. The configure option requesting AFS kaserver support (and thus building kasetkey) is now --with-kaserver instead of --with-afs. If KRB5_CONFIG was explicitly set in the environment, don't use a different krb5-config based on --with-krb4 or --with-krb5. If krb5-config isn't executable, don't use it. This allows one to force library probing by setting KRB5_CONFIG to point to a nonexistent file. Sanity-check the results of krb5-config before proceeding and error out in configure if they don't work. Stop setting Stanford-specific compile-time defaults for the wallet server and port.
Diffstat (limited to 'portable/dummy.c')
-rw-r--r--portable/dummy.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/portable/dummy.c b/portable/dummy.c
index e5a6224..66341c3 100644
--- a/portable/dummy.c
+++ b/portable/dummy.c
@@ -1,15 +1,14 @@
-/* $Id$
-**
-** Dummy symbol to prevent an empty library.
-**
-** Written by Russ Allbery <rra@stanford.edu>
-** This work is hereby placed in the public domain by its author.
-**
-** On platforms that already have all of the functions that libportable would
-** supply, Automake builds an empty library and then calls ar with
-** nonsensical arguments. Ensure that libportable always contains at least
-** one symbol.
-*/
+/* $Id$
+ *
+ * Dummy symbol to prevent an empty library.
+ *
+ * On platforms that already have all of the functions that libportable would
+ * supply, Automake builds an empty library and then calls ar with nonsensical
+ * arguments. Ensure that libportable always contains at least one symbol.
+ *
+ * Written by Russ Allbery <rra@stanford.edu>
+ * This work is hereby placed in the public domain by its author.
+ */
/* Prototype to avoid gcc warnings. */
int portable_dummy(void);